datadog 2.17.0 → 2.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +90 -1
- data/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +63 -56
- data/ext/datadog_profiling_native_extension/collectors_stack.c +263 -76
- data/ext/datadog_profiling_native_extension/collectors_stack.h +20 -3
- data/ext/datadog_profiling_native_extension/collectors_thread_context.c +62 -12
- data/ext/datadog_profiling_native_extension/collectors_thread_context.h +1 -0
- data/ext/datadog_profiling_native_extension/extconf.rb +7 -0
- data/ext/datadog_profiling_native_extension/heap_recorder.c +239 -363
- data/ext/datadog_profiling_native_extension/heap_recorder.h +4 -6
- data/ext/datadog_profiling_native_extension/libdatadog_helpers.c +22 -0
- data/ext/datadog_profiling_native_extension/libdatadog_helpers.h +8 -5
- data/ext/datadog_profiling_native_extension/private_vm_api_access.c +38 -26
- data/ext/datadog_profiling_native_extension/private_vm_api_access.h +6 -4
- data/ext/datadog_profiling_native_extension/ruby_helpers.c +1 -13
- data/ext/datadog_profiling_native_extension/ruby_helpers.h +3 -11
- data/ext/datadog_profiling_native_extension/stack_recorder.c +154 -57
- data/ext/libdatadog_api/extconf.rb +2 -2
- data/ext/libdatadog_api/library_config.c +54 -12
- data/ext/libdatadog_api/library_config.h +6 -0
- data/ext/libdatadog_api/process_discovery.c +2 -7
- data/ext/libdatadog_extconf_helpers.rb +1 -1
- data/lib/datadog/appsec/api_security/lru_cache.rb +9 -2
- data/lib/datadog/appsec/api_security/route_extractor.rb +71 -0
- data/lib/datadog/appsec/api_security/sampler.rb +59 -0
- data/lib/datadog/appsec/api_security.rb +14 -0
- data/lib/datadog/appsec/assets/waf_rules/recommended.json +257 -85
- data/lib/datadog/appsec/assets/waf_rules/strict.json +10 -78
- data/lib/datadog/appsec/component.rb +30 -54
- data/lib/datadog/appsec/configuration/settings.rb +60 -2
- data/lib/datadog/appsec/context.rb +6 -6
- data/lib/datadog/appsec/contrib/devise/tracking_middleware.rb +1 -1
- data/lib/datadog/appsec/contrib/rack/request_middleware.rb +27 -16
- data/lib/datadog/appsec/instrumentation/gateway/argument.rb +1 -1
- data/lib/datadog/appsec/processor/rule_loader.rb +5 -6
- data/lib/datadog/appsec/remote.rb +15 -55
- data/lib/datadog/appsec/security_engine/engine.rb +194 -0
- data/lib/datadog/appsec/security_engine/runner.rb +10 -11
- data/lib/datadog/appsec.rb +4 -7
- data/lib/datadog/core/configuration/agent_settings.rb +52 -0
- data/lib/datadog/core/configuration/agent_settings_resolver.rb +1 -43
- data/lib/datadog/core/configuration/components.rb +2 -4
- data/lib/datadog/core/configuration/option.rb +9 -9
- data/lib/datadog/core/configuration/settings.rb +42 -10
- data/lib/datadog/core/configuration/stable_config.rb +1 -2
- data/lib/datadog/core/crashtracking/tag_builder.rb +4 -22
- data/lib/datadog/core/process_discovery/tracer_memfd.rb +15 -0
- data/lib/datadog/core/process_discovery.rb +5 -1
- data/lib/datadog/core/remote/configuration/repository.rb +12 -0
- data/lib/datadog/core/tag_builder.rb +56 -0
- data/lib/datadog/core/telemetry/component.rb +8 -4
- data/lib/datadog/core/telemetry/event/app_client_configuration_change.rb +1 -0
- data/lib/datadog/core/telemetry/event/app_started.rb +148 -40
- data/lib/datadog/core/telemetry/logger.rb +5 -4
- data/lib/datadog/core/telemetry/logging.rb +11 -5
- data/lib/datadog/core/transport/http/adapters/net.rb +17 -2
- data/lib/datadog/core/transport/http/builder.rb +2 -2
- data/lib/datadog/core/transport/http/env.rb +8 -0
- data/lib/datadog/core/utils.rb +7 -0
- data/lib/datadog/di/instrumenter.rb +48 -5
- data/lib/datadog/di/probe_notification_builder.rb +37 -42
- data/lib/datadog/di/probe_notifier_worker.rb +9 -1
- data/lib/datadog/di/serializer.rb +10 -2
- data/lib/datadog/di/transport/http/input.rb +10 -0
- data/lib/datadog/di/transport/input.rb +10 -2
- data/lib/datadog/di.rb +0 -6
- data/lib/datadog/kit/appsec/events/v2.rb +195 -0
- data/lib/datadog/profiling/collectors/code_provenance.rb +17 -8
- data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +6 -0
- data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +1 -0
- data/lib/datadog/profiling/collectors/info.rb +41 -0
- data/lib/datadog/profiling/collectors/thread_context.rb +16 -1
- data/lib/datadog/profiling/component.rb +8 -9
- data/lib/datadog/profiling/exporter.rb +9 -3
- data/lib/datadog/profiling/ext.rb +0 -12
- data/lib/datadog/profiling/http_transport.rb +2 -2
- data/lib/datadog/profiling/profiler.rb +2 -0
- data/lib/datadog/profiling/scheduler.rb +2 -1
- data/lib/datadog/profiling/sequence_tracker.rb +44 -0
- data/lib/datadog/profiling/stack_recorder.rb +5 -5
- data/lib/datadog/profiling/tag_builder.rb +7 -37
- data/lib/datadog/profiling/tasks/setup.rb +2 -0
- data/lib/datadog/profiling.rb +1 -0
- data/lib/datadog/single_step_instrument.rb +9 -0
- data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +15 -0
- data/lib/datadog/tracing/contrib/action_pack/action_dispatch/instrumentation.rb +19 -12
- data/lib/datadog/tracing/contrib/action_pack/ext.rb +2 -0
- data/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb +7 -1
- data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +13 -0
- data/lib/datadog/tracing/contrib/lograge/patcher.rb +4 -2
- data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +16 -6
- data/lib/datadog/tracing/contrib/rails/patcher.rb +4 -1
- data/lib/datadog/tracing/contrib/rails/runner.rb +61 -40
- data/lib/datadog/tracing/contrib/sidekiq/ext.rb +1 -0
- data/lib/datadog/tracing/contrib/sidekiq/server_tracer.rb +5 -2
- data/lib/datadog/tracing/diagnostics/environment_logger.rb +3 -1
- data/lib/datadog/tracing/span_event.rb +1 -1
- data/lib/datadog/tracing/span_operation.rb +22 -0
- data/lib/datadog/tracing/sync_writer.rb +1 -1
- data/lib/datadog/tracing/trace_operation.rb +12 -4
- data/lib/datadog/tracing/tracer.rb +6 -2
- data/lib/datadog/version.rb +1 -1
- data/lib/datadog.rb +7 -0
- metadata +14 -10
- data/lib/datadog/appsec/assets/waf_rules/processors.json +0 -321
- data/lib/datadog/appsec/assets/waf_rules/scanners.json +0 -1023
- data/lib/datadog/appsec/processor/rule_merger.rb +0 -171
- data/lib/datadog/appsec/processor.rb +0 -107
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": "2.2",
|
3
3
|
"metadata": {
|
4
|
-
"rules_version": "1.
|
4
|
+
"rules_version": "1.14.2"
|
5
5
|
},
|
6
6
|
"rules": [
|
7
7
|
{
|
@@ -4864,6 +4864,36 @@
|
|
4864
4864
|
],
|
4865
4865
|
"transformers": []
|
4866
4866
|
},
|
4867
|
+
{
|
4868
|
+
"id": "ua0-600-68x",
|
4869
|
+
"name": "xorbot",
|
4870
|
+
"tags": {
|
4871
|
+
"type": "attack_tool",
|
4872
|
+
"category": "attack_attempt",
|
4873
|
+
"cwe": "200",
|
4874
|
+
"capec": "1000/118/169",
|
4875
|
+
"tool_name": "xorbot",
|
4876
|
+
"confidence": "0",
|
4877
|
+
"module": "waf"
|
4878
|
+
},
|
4879
|
+
"conditions": [
|
4880
|
+
{
|
4881
|
+
"parameters": {
|
4882
|
+
"inputs": [
|
4883
|
+
{
|
4884
|
+
"address": "server.request.headers.no_cookies",
|
4885
|
+
"key_path": [
|
4886
|
+
"user-agent"
|
4887
|
+
]
|
4888
|
+
}
|
4889
|
+
],
|
4890
|
+
"regex": "\\bmasjesu\\b"
|
4891
|
+
},
|
4892
|
+
"operator": "match_regex"
|
4893
|
+
}
|
4894
|
+
],
|
4895
|
+
"transformers": []
|
4896
|
+
},
|
4867
4897
|
{
|
4868
4898
|
"id": "dog-913-001",
|
4869
4899
|
"name": "BurpCollaborator OOB domain",
|
@@ -5422,6 +5452,82 @@
|
|
5422
5452
|
],
|
5423
5453
|
"transformers": []
|
5424
5454
|
},
|
5455
|
+
{
|
5456
|
+
"id": "dog-913-013",
|
5457
|
+
"name": "Public PoC for CVE-2025-24813",
|
5458
|
+
"tags": {
|
5459
|
+
"type": "attack_tool",
|
5460
|
+
"category": "attack_attempt",
|
5461
|
+
"cwe": "200",
|
5462
|
+
"capec": "1000/118/169",
|
5463
|
+
"confidence": "1",
|
5464
|
+
"module": "waf"
|
5465
|
+
},
|
5466
|
+
"conditions": [
|
5467
|
+
{
|
5468
|
+
"parameters": {
|
5469
|
+
"inputs": [
|
5470
|
+
{
|
5471
|
+
"address": "server.request.uri.raw"
|
5472
|
+
}
|
5473
|
+
],
|
5474
|
+
"regex": "/iSee857/session",
|
5475
|
+
"options": {
|
5476
|
+
"case_sensitive": false,
|
5477
|
+
"min_length": 16
|
5478
|
+
}
|
5479
|
+
},
|
5480
|
+
"operator": "match_regex"
|
5481
|
+
}
|
5482
|
+
],
|
5483
|
+
"transformers": []
|
5484
|
+
},
|
5485
|
+
{
|
5486
|
+
"id": "dog-913-014",
|
5487
|
+
"name": "Exploit attempt for Next.js Middleware Exploit (CVE-2025-29927)",
|
5488
|
+
"tags": {
|
5489
|
+
"type": "security_scanner",
|
5490
|
+
"category": "attack_attempt",
|
5491
|
+
"cwe": "200",
|
5492
|
+
"capec": "1000/118/169",
|
5493
|
+
"confidence": "0",
|
5494
|
+
"module": "waf"
|
5495
|
+
},
|
5496
|
+
"conditions": [
|
5497
|
+
{
|
5498
|
+
"parameters": {
|
5499
|
+
"inputs": [
|
5500
|
+
{
|
5501
|
+
"address": "server.request.headers.no_cookies",
|
5502
|
+
"key_path": [
|
5503
|
+
"x-middleware-subrequest"
|
5504
|
+
]
|
5505
|
+
}
|
5506
|
+
],
|
5507
|
+
"regex": ".*",
|
5508
|
+
"options": {
|
5509
|
+
"min_length": 1
|
5510
|
+
}
|
5511
|
+
},
|
5512
|
+
"operator": "match_regex"
|
5513
|
+
},
|
5514
|
+
{
|
5515
|
+
"parameters": {
|
5516
|
+
"inputs": [
|
5517
|
+
{
|
5518
|
+
"address": "server.request.headers.no_cookies",
|
5519
|
+
"key_path": [
|
5520
|
+
"x-middleware-subrequest"
|
5521
|
+
]
|
5522
|
+
}
|
5523
|
+
],
|
5524
|
+
"regex": "[0-9a-fA-F]{40}|\\[\\w+\\]"
|
5525
|
+
},
|
5526
|
+
"operator": "!match_regex"
|
5527
|
+
}
|
5528
|
+
],
|
5529
|
+
"transformers": []
|
5530
|
+
},
|
5425
5531
|
{
|
5426
5532
|
"id": "dog-920-001",
|
5427
5533
|
"name": "JWT authentication bypass",
|
@@ -6314,7 +6420,7 @@
|
|
6314
6420
|
"address": "server.request.uri.raw"
|
6315
6421
|
}
|
6316
6422
|
],
|
6317
|
-
"regex": "(
|
6423
|
+
"regex": "(?:^|/)(?:swagger|api[-/]?docs?|openapi)\\b",
|
6318
6424
|
"options": {
|
6319
6425
|
"case_sensitive": false
|
6320
6426
|
}
|
@@ -6331,7 +6437,7 @@
|
|
6331
6437
|
"category": "vulnerability_trigger",
|
6332
6438
|
"cwe": "22",
|
6333
6439
|
"capec": "1000/255/153/126",
|
6334
|
-
"confidence": "
|
6440
|
+
"confidence": "1",
|
6335
6441
|
"module": "rasp"
|
6336
6442
|
},
|
6337
6443
|
"conditions": [
|
@@ -6379,7 +6485,7 @@
|
|
6379
6485
|
"category": "vulnerability_trigger",
|
6380
6486
|
"cwe": "77",
|
6381
6487
|
"capec": "1000/152/248/88",
|
6382
|
-
"confidence": "
|
6488
|
+
"confidence": "1",
|
6383
6489
|
"module": "rasp"
|
6384
6490
|
},
|
6385
6491
|
"conditions": [
|
@@ -6427,7 +6533,7 @@
|
|
6427
6533
|
"category": "vulnerability_trigger",
|
6428
6534
|
"cwe": "77",
|
6429
6535
|
"capec": "1000/152/248/88",
|
6430
|
-
"confidence": "
|
6536
|
+
"confidence": "1",
|
6431
6537
|
"module": "rasp"
|
6432
6538
|
},
|
6433
6539
|
"conditions": [
|
@@ -6479,6 +6585,20 @@
|
|
6479
6585
|
"module": "rasp"
|
6480
6586
|
},
|
6481
6587
|
"conditions": [
|
6588
|
+
{
|
6589
|
+
"parameters": {
|
6590
|
+
"inputs": [
|
6591
|
+
{
|
6592
|
+
"address": "server.io.net.url"
|
6593
|
+
}
|
6594
|
+
],
|
6595
|
+
"regex": "^(jar:)?https?:\\/\\/\\W*([0-9oq]{1,5}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}|[0-9]{1,10}|(\\[)?[:0-9a-f\\.x]{2,}(\\])?|metadata\\.google\\.internal|(?:[a-z0-9:@\\.\\-]*\\.)?(?:burpcollaborator\\.net|localtest\\.me|mail\\.ebc\\.apple\\.com|bugbounty\\.dod\\.network|.*\\.[nx]ip\\.io|oastify\\.com|oast\\.(?:pro|live|site|online|fun|me)|sslip\\.io|requestbin\\.com|requestbin\\.net|hookbin\\.com|webhook\\.site|canarytokens\\.com|interact\\.sh|ngrok\\.io|bugbounty\\.click|prbly\\.win|qualysperiscope\\.com|vii\\.one|act1on3\\.ru|ifconfig\\.pro|dnslog\\.\\w+))(:[0-9]{1,5})?(\\/[^:@]*)?$",
|
6596
|
+
"options": {
|
6597
|
+
"case_sensitive": false
|
6598
|
+
}
|
6599
|
+
},
|
6600
|
+
"operator": "match_regex"
|
6601
|
+
},
|
6482
6602
|
{
|
6483
6603
|
"parameters": {
|
6484
6604
|
"resource": [
|
@@ -6523,7 +6643,7 @@
|
|
6523
6643
|
"category": "vulnerability_trigger",
|
6524
6644
|
"cwe": "89",
|
6525
6645
|
"capec": "1000/152/248/66",
|
6526
|
-
"confidence": "
|
6646
|
+
"confidence": "1",
|
6527
6647
|
"module": "rasp"
|
6528
6648
|
},
|
6529
6649
|
"conditions": [
|
@@ -6957,7 +7077,7 @@
|
|
6957
7077
|
"address": "graphql.server.resolver"
|
6958
7078
|
}
|
6959
7079
|
],
|
6960
|
-
"regex": "(http|https):\\/\\/(?:.*\\.)?(?:burpcollaborator\\.net|localtest\\.me|mail\\.ebc\\.apple\\.com|bugbounty\\.dod\\.network|.*\\.[nx]ip\\.io|oastify\\.com|oast\\.(?:pro|live|site|online|fun|me)|sslip\\.io|requestbin\\.com|requestbin\\.net|hookbin\\.com|webhook\\.site|canarytokens\\.com|interact\\.sh|ngrok\\.io|bugbounty\\.click|prbly\\.win|qualysperiscope\\.com|vii\\.one|act1on3\\.ru)"
|
7080
|
+
"regex": "(http|https):\\/\\/(?:.*\\.)?(?:burpcollaborator\\.net|localtest\\.me|mail\\.ebc\\.apple\\.com|bugbounty\\.dod\\.network|.*\\.[nx]ip\\.io|oastify\\.com|oast\\.(?:pro|live|site|online|fun|me)|sslip\\.io|requestbin\\.com|requestbin\\.net|hookbin\\.com|webhook\\.site|canarytokens\\.com|interact\\.sh|ngrok\\.io|bugbounty\\.click|prbly\\.win|qualysperiscope\\.com|vii\\.one|act1on3\\.ru|dnslog\\.\\w+)"
|
6961
7081
|
},
|
6962
7082
|
"operator": "match_regex"
|
6963
7083
|
}
|
@@ -7765,7 +7885,7 @@
|
|
7765
7885
|
]
|
7766
7886
|
}
|
7767
7887
|
],
|
7768
|
-
"regex": "nmap (nse|scripting engine)"
|
7888
|
+
"regex": "nmap (nse|scripting engine|icap-client/)"
|
7769
7889
|
},
|
7770
7890
|
"operator": "match_regex"
|
7771
7891
|
}
|
@@ -8537,6 +8657,126 @@
|
|
8537
8657
|
],
|
8538
8658
|
"transformers": []
|
8539
8659
|
},
|
8660
|
+
{
|
8661
|
+
"id": "ua0-600-64x",
|
8662
|
+
"name": "ddg_win",
|
8663
|
+
"tags": {
|
8664
|
+
"type": "attack_tool",
|
8665
|
+
"category": "attack_attempt",
|
8666
|
+
"cwe": "200",
|
8667
|
+
"capec": "1000/118/169",
|
8668
|
+
"tool_name": "ddg_win",
|
8669
|
+
"confidence": "1",
|
8670
|
+
"module": "waf"
|
8671
|
+
},
|
8672
|
+
"conditions": [
|
8673
|
+
{
|
8674
|
+
"parameters": {
|
8675
|
+
"inputs": [
|
8676
|
+
{
|
8677
|
+
"address": "server.request.headers.no_cookies",
|
8678
|
+
"key_path": [
|
8679
|
+
"user-agent"
|
8680
|
+
]
|
8681
|
+
}
|
8682
|
+
],
|
8683
|
+
"regex": "\\bddg_win\\b"
|
8684
|
+
},
|
8685
|
+
"operator": "match_regex"
|
8686
|
+
}
|
8687
|
+
],
|
8688
|
+
"transformers": []
|
8689
|
+
},
|
8690
|
+
{
|
8691
|
+
"id": "ua0-600-65x",
|
8692
|
+
"name": "ISS",
|
8693
|
+
"tags": {
|
8694
|
+
"type": "commercial_scanner",
|
8695
|
+
"category": "attack_attempt",
|
8696
|
+
"cwe": "200",
|
8697
|
+
"capec": "1000/118/169",
|
8698
|
+
"tool_name": "iss",
|
8699
|
+
"confidence": "0",
|
8700
|
+
"module": "waf"
|
8701
|
+
},
|
8702
|
+
"conditions": [
|
8703
|
+
{
|
8704
|
+
"parameters": {
|
8705
|
+
"inputs": [
|
8706
|
+
{
|
8707
|
+
"address": "server.request.headers.no_cookies",
|
8708
|
+
"key_path": [
|
8709
|
+
"user-agent"
|
8710
|
+
]
|
8711
|
+
}
|
8712
|
+
],
|
8713
|
+
"regex": "\\bisscyberriskcrawler/\\d\\.\\d"
|
8714
|
+
},
|
8715
|
+
"operator": "match_regex"
|
8716
|
+
}
|
8717
|
+
],
|
8718
|
+
"transformers": []
|
8719
|
+
},
|
8720
|
+
{
|
8721
|
+
"id": "ua0-600-66x",
|
8722
|
+
"name": "BountyBot",
|
8723
|
+
"tags": {
|
8724
|
+
"type": "attack_tool",
|
8725
|
+
"category": "attack_attempt",
|
8726
|
+
"cwe": "200",
|
8727
|
+
"capec": "1000/118/169",
|
8728
|
+
"tool_name": "bountybot",
|
8729
|
+
"confidence": "1",
|
8730
|
+
"module": "waf"
|
8731
|
+
},
|
8732
|
+
"conditions": [
|
8733
|
+
{
|
8734
|
+
"parameters": {
|
8735
|
+
"inputs": [
|
8736
|
+
{
|
8737
|
+
"address": "server.request.headers.no_cookies",
|
8738
|
+
"key_path": [
|
8739
|
+
"user-agent"
|
8740
|
+
]
|
8741
|
+
}
|
8742
|
+
],
|
8743
|
+
"regex": "\\bbountybot\\b"
|
8744
|
+
},
|
8745
|
+
"operator": "match_regex"
|
8746
|
+
}
|
8747
|
+
],
|
8748
|
+
"transformers": []
|
8749
|
+
},
|
8750
|
+
{
|
8751
|
+
"id": "ua0-600-67x",
|
8752
|
+
"name": "ZumBot",
|
8753
|
+
"tags": {
|
8754
|
+
"type": "attack_tool",
|
8755
|
+
"category": "attack_attempt",
|
8756
|
+
"cwe": "200",
|
8757
|
+
"capec": "1000/118/169",
|
8758
|
+
"tool_name": "zumbot",
|
8759
|
+
"confidence": "1",
|
8760
|
+
"module": "waf"
|
8761
|
+
},
|
8762
|
+
"conditions": [
|
8763
|
+
{
|
8764
|
+
"parameters": {
|
8765
|
+
"inputs": [
|
8766
|
+
{
|
8767
|
+
"address": "server.request.headers.no_cookies",
|
8768
|
+
"key_path": [
|
8769
|
+
"user-agent"
|
8770
|
+
]
|
8771
|
+
}
|
8772
|
+
],
|
8773
|
+
"regex": "\\bzumbot\\b"
|
8774
|
+
},
|
8775
|
+
"operator": "match_regex"
|
8776
|
+
}
|
8777
|
+
],
|
8778
|
+
"transformers": []
|
8779
|
+
},
|
8540
8780
|
{
|
8541
8781
|
"id": "ua0-600-6xx",
|
8542
8782
|
"name": "Stealthy scanner",
|
@@ -8634,24 +8874,7 @@
|
|
8634
8874
|
{
|
8635
8875
|
"id": "http-endpoint-fingerprint",
|
8636
8876
|
"generator": "http_endpoint_fingerprint",
|
8637
|
-
"conditions": [
|
8638
|
-
{
|
8639
|
-
"operator": "exists",
|
8640
|
-
"parameters": {
|
8641
|
-
"inputs": [
|
8642
|
-
{
|
8643
|
-
"address": "waf.context.event"
|
8644
|
-
},
|
8645
|
-
{
|
8646
|
-
"address": "server.business_logic.users.login.failure"
|
8647
|
-
},
|
8648
|
-
{
|
8649
|
-
"address": "server.business_logic.users.login.success"
|
8650
|
-
}
|
8651
|
-
]
|
8652
|
-
}
|
8653
|
-
}
|
8654
|
-
],
|
8877
|
+
"conditions": [],
|
8655
8878
|
"parameters": {
|
8656
8879
|
"mappings": [
|
8657
8880
|
{
|
@@ -8679,7 +8902,7 @@
|
|
8679
8902
|
}
|
8680
8903
|
]
|
8681
8904
|
},
|
8682
|
-
"evaluate":
|
8905
|
+
"evaluate": true,
|
8683
8906
|
"output": true
|
8684
8907
|
},
|
8685
8908
|
{
|
@@ -8835,24 +9058,7 @@
|
|
8835
9058
|
{
|
8836
9059
|
"id": "http-header-fingerprint",
|
8837
9060
|
"generator": "http_header_fingerprint",
|
8838
|
-
"conditions": [
|
8839
|
-
{
|
8840
|
-
"operator": "exists",
|
8841
|
-
"parameters": {
|
8842
|
-
"inputs": [
|
8843
|
-
{
|
8844
|
-
"address": "waf.context.event"
|
8845
|
-
},
|
8846
|
-
{
|
8847
|
-
"address": "server.business_logic.users.login.failure"
|
8848
|
-
},
|
8849
|
-
{
|
8850
|
-
"address": "server.business_logic.users.login.success"
|
8851
|
-
}
|
8852
|
-
]
|
8853
|
-
}
|
8854
|
-
}
|
8855
|
-
],
|
9061
|
+
"conditions": [],
|
8856
9062
|
"parameters": {
|
8857
9063
|
"mappings": [
|
8858
9064
|
{
|
@@ -8865,30 +9071,13 @@
|
|
8865
9071
|
}
|
8866
9072
|
]
|
8867
9073
|
},
|
8868
|
-
"evaluate":
|
9074
|
+
"evaluate": true,
|
8869
9075
|
"output": true
|
8870
9076
|
},
|
8871
9077
|
{
|
8872
9078
|
"id": "http-network-fingerprint",
|
8873
9079
|
"generator": "http_network_fingerprint",
|
8874
|
-
"conditions": [
|
8875
|
-
{
|
8876
|
-
"operator": "exists",
|
8877
|
-
"parameters": {
|
8878
|
-
"inputs": [
|
8879
|
-
{
|
8880
|
-
"address": "waf.context.event"
|
8881
|
-
},
|
8882
|
-
{
|
8883
|
-
"address": "server.business_logic.users.login.failure"
|
8884
|
-
},
|
8885
|
-
{
|
8886
|
-
"address": "server.business_logic.users.login.success"
|
8887
|
-
}
|
8888
|
-
]
|
8889
|
-
}
|
8890
|
-
}
|
8891
|
-
],
|
9080
|
+
"conditions": [],
|
8892
9081
|
"parameters": {
|
8893
9082
|
"mappings": [
|
8894
9083
|
{
|
@@ -8901,30 +9090,13 @@
|
|
8901
9090
|
}
|
8902
9091
|
]
|
8903
9092
|
},
|
8904
|
-
"evaluate":
|
9093
|
+
"evaluate": true,
|
8905
9094
|
"output": true
|
8906
9095
|
},
|
8907
9096
|
{
|
8908
9097
|
"id": "session-fingerprint",
|
8909
9098
|
"generator": "session_fingerprint",
|
8910
|
-
"conditions": [
|
8911
|
-
{
|
8912
|
-
"operator": "exists",
|
8913
|
-
"parameters": {
|
8914
|
-
"inputs": [
|
8915
|
-
{
|
8916
|
-
"address": "waf.context.event"
|
8917
|
-
},
|
8918
|
-
{
|
8919
|
-
"address": "server.business_logic.users.login.failure"
|
8920
|
-
},
|
8921
|
-
{
|
8922
|
-
"address": "server.business_logic.users.login.success"
|
8923
|
-
}
|
8924
|
-
]
|
8925
|
-
}
|
8926
|
-
}
|
8927
|
-
],
|
9099
|
+
"conditions": [],
|
8928
9100
|
"parameters": {
|
8929
9101
|
"mappings": [
|
8930
9102
|
{
|
@@ -8947,7 +9119,7 @@
|
|
8947
9119
|
}
|
8948
9120
|
]
|
8949
9121
|
},
|
8950
|
-
"evaluate":
|
9122
|
+
"evaluate": true,
|
8951
9123
|
"output": true
|
8952
9124
|
}
|
8953
9125
|
],
|
@@ -9974,4 +10146,4 @@
|
|
9974
10146
|
}
|
9975
10147
|
}
|
9976
10148
|
]
|
9977
|
-
}
|
10149
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": "2.2",
|
3
3
|
"metadata": {
|
4
|
-
"rules_version": "1.
|
4
|
+
"rules_version": "1.14.2"
|
5
5
|
},
|
6
6
|
"rules": [
|
7
7
|
{
|
@@ -1750,24 +1750,7 @@
|
|
1750
1750
|
{
|
1751
1751
|
"id": "http-endpoint-fingerprint",
|
1752
1752
|
"generator": "http_endpoint_fingerprint",
|
1753
|
-
"conditions": [
|
1754
|
-
{
|
1755
|
-
"operator": "exists",
|
1756
|
-
"parameters": {
|
1757
|
-
"inputs": [
|
1758
|
-
{
|
1759
|
-
"address": "waf.context.event"
|
1760
|
-
},
|
1761
|
-
{
|
1762
|
-
"address": "server.business_logic.users.login.failure"
|
1763
|
-
},
|
1764
|
-
{
|
1765
|
-
"address": "server.business_logic.users.login.success"
|
1766
|
-
}
|
1767
|
-
]
|
1768
|
-
}
|
1769
|
-
}
|
1770
|
-
],
|
1753
|
+
"conditions": [],
|
1771
1754
|
"parameters": {
|
1772
1755
|
"mappings": [
|
1773
1756
|
{
|
@@ -1795,7 +1778,7 @@
|
|
1795
1778
|
}
|
1796
1779
|
]
|
1797
1780
|
},
|
1798
|
-
"evaluate":
|
1781
|
+
"evaluate": true,
|
1799
1782
|
"output": true
|
1800
1783
|
},
|
1801
1784
|
{
|
@@ -1951,24 +1934,7 @@
|
|
1951
1934
|
{
|
1952
1935
|
"id": "http-header-fingerprint",
|
1953
1936
|
"generator": "http_header_fingerprint",
|
1954
|
-
"conditions": [
|
1955
|
-
{
|
1956
|
-
"operator": "exists",
|
1957
|
-
"parameters": {
|
1958
|
-
"inputs": [
|
1959
|
-
{
|
1960
|
-
"address": "waf.context.event"
|
1961
|
-
},
|
1962
|
-
{
|
1963
|
-
"address": "server.business_logic.users.login.failure"
|
1964
|
-
},
|
1965
|
-
{
|
1966
|
-
"address": "server.business_logic.users.login.success"
|
1967
|
-
}
|
1968
|
-
]
|
1969
|
-
}
|
1970
|
-
}
|
1971
|
-
],
|
1937
|
+
"conditions": [],
|
1972
1938
|
"parameters": {
|
1973
1939
|
"mappings": [
|
1974
1940
|
{
|
@@ -1981,30 +1947,13 @@
|
|
1981
1947
|
}
|
1982
1948
|
]
|
1983
1949
|
},
|
1984
|
-
"evaluate":
|
1950
|
+
"evaluate": true,
|
1985
1951
|
"output": true
|
1986
1952
|
},
|
1987
1953
|
{
|
1988
1954
|
"id": "http-network-fingerprint",
|
1989
1955
|
"generator": "http_network_fingerprint",
|
1990
|
-
"conditions": [
|
1991
|
-
{
|
1992
|
-
"operator": "exists",
|
1993
|
-
"parameters": {
|
1994
|
-
"inputs": [
|
1995
|
-
{
|
1996
|
-
"address": "waf.context.event"
|
1997
|
-
},
|
1998
|
-
{
|
1999
|
-
"address": "server.business_logic.users.login.failure"
|
2000
|
-
},
|
2001
|
-
{
|
2002
|
-
"address": "server.business_logic.users.login.success"
|
2003
|
-
}
|
2004
|
-
]
|
2005
|
-
}
|
2006
|
-
}
|
2007
|
-
],
|
1956
|
+
"conditions": [],
|
2008
1957
|
"parameters": {
|
2009
1958
|
"mappings": [
|
2010
1959
|
{
|
@@ -2017,30 +1966,13 @@
|
|
2017
1966
|
}
|
2018
1967
|
]
|
2019
1968
|
},
|
2020
|
-
"evaluate":
|
1969
|
+
"evaluate": true,
|
2021
1970
|
"output": true
|
2022
1971
|
},
|
2023
1972
|
{
|
2024
1973
|
"id": "session-fingerprint",
|
2025
1974
|
"generator": "session_fingerprint",
|
2026
|
-
"conditions": [
|
2027
|
-
{
|
2028
|
-
"operator": "exists",
|
2029
|
-
"parameters": {
|
2030
|
-
"inputs": [
|
2031
|
-
{
|
2032
|
-
"address": "waf.context.event"
|
2033
|
-
},
|
2034
|
-
{
|
2035
|
-
"address": "server.business_logic.users.login.failure"
|
2036
|
-
},
|
2037
|
-
{
|
2038
|
-
"address": "server.business_logic.users.login.success"
|
2039
|
-
}
|
2040
|
-
]
|
2041
|
-
}
|
2042
|
-
}
|
2043
|
-
],
|
1975
|
+
"conditions": [],
|
2044
1976
|
"parameters": {
|
2045
1977
|
"mappings": [
|
2046
1978
|
{
|
@@ -2063,7 +1995,7 @@
|
|
2063
1995
|
}
|
2064
1996
|
]
|
2065
1997
|
},
|
2066
|
-
"evaluate":
|
1998
|
+
"evaluate": true,
|
2067
1999
|
"output": true
|
2068
2000
|
}
|
2069
2001
|
],
|
@@ -3090,4 +3022,4 @@
|
|
3090
3022
|
}
|
3091
3023
|
}
|
3092
3024
|
]
|
3093
|
-
}
|
3025
|
+
}
|