-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsettings.html
1812 lines (1737 loc) · 58.5 KB
/
settings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: Settings
shared:
- debug
- web
- security
- auth-oidc
- usersdb
- user-role-mappings
sections:
- db
- pcapstorage
- capture-command
- capture
- dedup
- viewer
- advanced
- capture-debug
- user-setting-defaults
readerswriters:
- reader-afpacket
- reader-daq
- reader-pfring
- reader-poi
- reader-snf
- reader-tzsp
- reader-scheme
- reader-scheme-s3
- reader-scheme-sqs
- writer-simple
- writer-s3
plugins:
- chad
- kafka
- lua
- ja4plus
- netflow
- scrubspi
- suricata
- tagger
- tcphealthcheck
- wise
specialsections:
- custom-fields
- custom-fields-remap
- custom-views
- headers-email
- headers-http-request
- headers-http-response
- override-ips
- packet-drop-ips
- remote-clusters
- multi-viewer-settings
- vlan-vni-collapse
- wise-types
cont3xt:
- general
- db
- caching
- integration-common
- arkime
- clickhouse
- csv
- databricks
- elasticsearch
- json
- redis
parliament:
- general
wiseService:
- general
- caching
- source-common
- alien-vault
- emerging-threats
- opendns-umbrella
- threatq
- threatstream
- splunk
- databricks
- elasticsearch
- elasticsearchfile
- file
- redis
- redisfile
- reversedns
- url
- value-actions
- field-actions
---
<!DOCTYPE html>
<html lang="en" style="height:100%;">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137788272-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-137788272-1');
</script>
<title>Arkime Settings</title>
<!-- Required meta tags always come first -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description" content="Arkime settings" />
<!-- facebook open graph tags -->
<meta property="og:url" content="http://arkime.com/settings" />
<meta property="og:description" content="Arkime settings" />
<meta property="og:image" content="http://arkime.com/assets/[email protected]" />
<!-- twitter card tags additive with the og: tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" value="arkime.com" />
<meta name="twitter:description" value="Frequently asked Arkime questions" />
<meta name="twitter:image" content="http://arkime.com/assets/[email protected]" />
<meta name="twitter:url" value="http://arkime.com/settings" />
<!-- fontawesome http://fontawesome.io/ -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS https://getbootstrap.com/ -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- custom index page styles -->
<link rel="stylesheet" type="text/css" href="index.css">
<!-- page functions -->
<script src="index.js"></script>
</head>
<body id="viewport"
class="full-height-body settings">
<!-- navbar -->
{%- include navbar.html -%}
<!-- toc nav -->
<div class="left-nav d-none d-sm-block">
<div class="nav nav-pills nav-pills-nested pb-3">
<a href="#ini-settings"
class="nav-link main-nav-link"
title="General">
Settings
</a>
{% for sectionId in page.shared %}
{% assign section = site.data.shared[sectionId] %}
<a class="nav-link nested"
href="#{{sectionId}}"
title="{{section.name}}">
{{section.name}}
</a>
{% endfor %}
<a href="#capture-viewer"
class="nav-link main-nav-link"
title="General">
Capture/Viewer
</a>
{% for sectionId in page.sections %}
{% assign section = site.data.settings[sectionId] %}
<a class="nav-link nested"
href="#{{sectionId}}"
title="{{section.name}}">
{{section.name}}
</a>
{% endfor %}
<div class="toc-nested">
<a href="#ReadersWriters"
class="nav-link"
title="Readers/Writers">
Readers/Writers
</a>
{% for sectionId in page.readerswriters %}
{% assign section = site.data.settings[sectionId] %}
<a class="nav-link nested"
href="#{{sectionId}}"
title="{{section.name}}">
{{section.name}}
</a>
{% endfor %}
<a href="#SpecialSections"
class="nav-link"
title="Special Sections">
Special Sections
</a>
{% for sectionId in page.specialsections %}
{% assign section = site.data.settings[sectionId] %}
<a class="nav-link nested"
href="#{{sectionId}}"
title="{{section.name}}">
{{section.name}}
</a>
{% endfor %}
<a class="nav-link nested"
href="#right-click"
title="valueactions">
value actions
</a>
<a class="nav-link nested"
href="#field-actions"
title="fieldactions">
field actions
</a>
<a class="nav-link nested"
href="#pcap-at-rest-encryption"
title="PCAP at Rest Encryptions">
PCAP at Rest Encryption
</a>
<a href="#Plugins"
class="nav-link"
title="Plugins">
Plugins
</a>
{% for pluginId in page.plugins %}
{% assign plugin = site.data.settings[pluginId] %}
<a class="nav-link nested"
href="#{{pluginId}}"
title="{{plugin.name}}">
{{plugin.name}}
</a>
{% endfor %}
<a href="#high-performance-settings"
class="nav-link"
title="High Performance Settings">
High Performance Settings
</a>
<a href="#lab-settings"
class="nav-link"
title="Lab Settings">
Lab Settings
</a>
</div>
<a href="#cont3xt"
class="nav-link main-nav-link"
title="Cont3xt">
Cont3xt
</a>
{% for cont3xtId in page.cont3xt %}
{% assign cont3xt = site.data.cont3xt[cont3xtId] %}
<a class="nav-link nested"
href="#cont3xt-{{cont3xtId}}"
title="{{cont3xt.name}}">
{{cont3xt.name}}
</a>
{% endfor %}
<a href="#parliament"
class="nav-link main-nav-link"
title="Parliament">
Parliament
</a>
{% for parliamentId in page.parliament %}
{% assign parliament = site.data.parliament[parliamentId] %}
<a class="nav-link nested"
href="#parliament-{{parliamentId}}"
title="{{parliament.name}}">
{{parliament.name}}
</a>
{% endfor %}
<a href="#wiseService"
class="nav-link main-nav-link"
title="WISE Service">
WISE Service
</a>
{% for wiseServiceId in page.wiseService %}
{% assign wiseService = site.data.wise[wiseServiceId] %}
<a class="nav-link nested"
href="#wise-{{wiseServiceId}}"
title="{{wiseService.name}}">
{{wiseService.name}}
</a>
{% endfor %}
</div>
</div> <!-- /toc nav -->
<!-- toc expand/collapse -->
<div class="collapse-btn d-none d-sm-block"
onclick="toggleToc()">
<span class="fa fa-angle-double-left">
</span>
</div> <!-- /toc expand/collapse -->
<!-- settings container -->
<div class="full-height-container">
<!-- settings content -->
<div class="pl-3 pr-3">
<!-- ini settings -->
<h1 id="ini-settings" class="mt-1 section-header">
Settings
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h1>
<p>
The Arkime system utilizes configuration files using INI format by default.
With the release of Arkime 5, support was introduced for configuration files in JSON and YAML formats using <code>json</code> or <code>yaml</code> extensions, respectively.
When utilizing JSON or YAML, arrays can be specified either natively or using separators like INI.
The configuration file location can be specified using the <code>-c</code> command-line option.
</p>
<p>
All of the Arkime application support overriding configuration files by setting via a command line option using either <code>-o variable=value</code> or <code>-o section.variable=value</code>, so for example <code>-o elasticsearch=https://localhost:9200</code>.
Starting in Arkime 5.4 environment variables can be used to override configuration settings, these are processed after the <code>-o</code> command line options but before the config file.
Environment variables are specified in the format <code>ARKIME__variable=value</code> (for default section) or <code>ARKIME_SECTION__variable=value</code>, so for example <code>ARKIME__elasticsearch=https://localhost:9200</code>.
</p>
<!-- /ini settings -->
<!-- Sections-->
{% for sectionId in page.shared %}
{% assign section = site.data.shared[sectionId] %}
{% if section.oldId %}
<span id="{{section.oldId}}"></span>
{% endif %}
<h3 id="{{sectionId}}" class="subsection">
{{section.name}}
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h3>
{{section.before}}
{% if section.settings %}
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Setting
</th>
<th>
Default
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
{% assign sorted = section.settings | sort: "key" %}
{% for item in sorted %}
<td id="{{ item.key }}">
<span id="{{ item.key | downcase}}">{{item.key}}</span>
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
{{ item.value }}
</td>
<td>
{{ item.text }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{{section.after}}
{% endfor %}
<!-- /Sections -->
<!-- capture viewer -->
<h1 id="capture-viewer" class="section-header">
Capture/Viewer
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h1>
<p>
The default confguration file for capture and viewer is <code>/opt/arkime/etc/config.ini</code>.
When searching for a setting, capture and viewer employ a tiered system for configuration variables.
This tiered system enables a single configuration file to be used across multiple servers.
The order of sections within the configuration file is not significant; however, the specific section in which a variable resides can be crucial.
A frequent issue encountered is the misplacement of a variable in an incorrect section.
</p>
<p class="mb-0">
Order of config variables for capture and viewer:
</p>
<ol>
<li>
[optional] The section titled with the node name is given priority and used first.
Arkime will always tag sessions with node: <node name>.
</li>
<li>
[Optional] If a node section possesses a nodeClass variable, the section titled
with the nodeClass name is utilized next. Sessions will be tagged with
node:<node class name>, which is beneficial for monitoring different
network classes.
</li>
<li>
The section titled "default" is considered last.
</li>
</ol>
<!-- /ini settings -->
<!-- Sections-->
{% for sectionId in page.sections %}
{% assign section = site.data.settings[sectionId] %}
{% if section.oldId %}
<span id="{{section.oldId}}"></span>
{% endif %}
<h3 id="{{sectionId}}" class="subsection">
{{section.name}}
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h3>
{{section.before}}
{% if section.settings %}
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Setting
</th>
<th>
Default
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
{% assign sorted = section.settings | sort: "key" %}
{% for item in sorted %}
{% assign display_value = item.display | default: item.key %}
<td id="{{ item.key }}">
<span id="{{ item.key | downcase}}">{{display_value}}</span>
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
{{ item.value }}
</td>
<td>
{{ item.text }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{{section.after}}
{% endfor %}
<!-- /Sections -->
<!-- Readers/Writers-->
<h2 id="ReadersWriters" class="subsection-header">
Readers/Writers
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h2>
<p>
Capture supports several different methods for reading and writing packets during a live capture.
These are selected by setting the <a href="#pcapReadMethod"<pcapReadMethod></a> and <a href="#pcapWriteMethod"<pcapWriteMethod></a> config settings..
We suggest using <code>pcapReadMethod=tpacketv3</code> and the default <code>pcapWriteMethod=simple</code> for best performance.
</p>
<p>
For offline pcap processing see the command line options of capture and <a href="/faq#how-do-i-import-existing-pcaps">FAQ - How do I import existing PCAPs?</a>.
</p>
{% for sectionId in page.readerswriters %}
{% assign section = site.data.settings[sectionId] %}
<h3 id="{{sectionId}}" id="subsection">
{{section.name}}
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h3>
{{section.before}}
{% if section.settings %}
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Setting
</th>
<th>
Default
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
{% assign sorted = section.settings | sort: "key" %}
{% for item in sorted %}
<td id="{{ item.key }}">
<span id="{{ item.key | downcase}}">{{item.key}}</span>
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
{{ item.value }}
</td>
<td>
{{ item.text }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{{section.after}}
{% endfor %}
<!-- /Sections -->
<h2 id="SpecialSections" class="subsection-header">
Special Sections
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h2>
<p>
Besides the normal <code>[default]</code> and <code>[node]</code> sections, Capture/Viewer support several special configuration file sections.
These sections are used to configure custom fields, views, and other more complex features.
Be careful to not place normal config items in these special sections.
</p>
{% for sectionId in page.specialsections %}
{% assign section = site.data.settings[sectionId] %}
<h3 id="{{sectionId}}" class="subsection">
Special Sections - {{section.name}}
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h3>
{{section.before}}
{% if section.settings %}
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Setting
</th>
<th>
Default
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
{% assign sorted = section.settings | sort: "key" %}
{% for item in sorted %}
<td id="{{ item.key }}">
<span id="{{ item.key | downcase}}">{{item.key}}</span>
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
{{ item.value }}
</td>
<td>
{{ item.text }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{{section.after}}
{% endfor %}
<!-- /Sections -->
<!-- right-click -->
<h2 id="right-click" class="subsection-header">
Value Actions (previously right-click)
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</h2>
<p>
It is possible to configure right click actions on any SPI data fields.
Right click actions can be added based on either the field name or the category of the data.
They can be added either in the configuration file or by enabled WISE data sources.
</p>
<p class="mb-0">
Configuration File Sample:
</p>
<pre><code>[value-actions]
VTIP=url:https://www.virustotal.com/en/ip-address/%TEXT%/information/;name:Virus Total IP;category:ip
VTHOST=url:https://www.virustotal.com/en/domain/%HOST%/information/;name:Virus Total Host;category:host
VTURL=url:https://www.virustotal.com/latest-scan/%URL%;name:Virus Total URL;category:url
KBN=url:https://localhost:5601/app/discover#/?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'%ISOSTART%',to:'%ISOSTOP%'))&_a=(columns:!(_source),index:'filebeat-*',interval:auto,query:(language:kuery,query:'network.community_id: "%URIEncodedText%"'));name:Discover communityId;fields:communityId</code></pre>
<p class="mb-0">
Each line in the valueactions section contains possible actions:
</p>
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Piece
</th>
<th>
Notes
</th>
</tr>
</thead>
<tbody>
<tr>
<td id="right-click-key">
[key]=
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The key must be unique and is also used as the right click menu
name if the name field is missing
</td>
</tr>
<tr>
<td id="right-click-actionType">
actionType
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
Needs a url. Supported actionTypes:
<ul class="mb-0">
<li>fetch: Information will be fetched and displayed in the rightclick menu for 5 seconds</li>
<li>empty: Nothing is done on value action click</li>
</ul>
</td>
</tr>
<tr>
<td id="right-click-all">
all
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
(Since 4.3.2) Using all:true shows this item on all values.
</td>
</tr>
<tr>
<td id="right-click-func">
func
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A javascript function body (feeds into new Function()) that returns a right click action formatted as an object.
This is the recommended way if you need to omit the url from an action and can be used
to place plain text in the menu.
Value is not calculated so one of the keys in the returned action object must be "value" if you want to show name:value pair in the menu (but not req).
Formatting substitutions will also be ignored.
</td>
</tr>
<tr>
<td id="right-click-url">
url
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The url to open if selected. There are some basic URL
substitutions defined below.
</td>
</tr>
<tr>
<td id="right-click-name">
name
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The menu text to display
</td>
</tr>
<tr>
<td id="right-click-category">
category
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
If the field that is right clicked on has this category then
display this menu item. All right click entries must have either
a category or fields variable defined.
</td>
</tr>
<tr>
<td id="right-click-fields">
fields
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A comma separated list of field names. If the field that is right
clicked on has one the field expressions in the list then display
this menu item. All right click entries must have either a
category or fields variable defined.
</td>
</tr>
<tr>
<td id="right-click-regex">
regex
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A regex to use on the right clicked text to extract a piece for
the URL. The first matching group is substituted for %REGEX% in
the url. If the regex doesn't match at all then the menu isn't
displayed.
</td>
</tr>
<tr>
<td id="right-click-users">
users
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A comma separated list of user names that can see the right click
item. If not set then all users can see the right click item.
</td>
</tr>
<tr>
<td id="right-click-notUsers">
notUsers
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
(Since 3.0) A comma separated list of user names that can NOT see the right click item.
This setting is applied before the users setting above.
</td>
</tr>
</tbody>
</table>
<p class="mb-0">
The possible URL Substitutions are:
</p>
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
URL Substitutions
</th>
<th>
Notes
</th>
</tr>
</thead>
<tbody>
<tr>
<td id="url-sub-text">
%TEXT%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The text clicked on in raw form
</td>
</tr>
<tr>
<td id="url-sub-uriencodedtext">
%URIEncodedText%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The text clicked on, URI encoded
</td>
</tr>
<tr>
<td id="url-sub-uctext">
%UCTEXT%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The text clicked on, upper-cased
</td>
</tr>
<tr>
<td id="url-sub-url">
%URL%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A URL extracted from the text clicked on
</td>
</tr>
<tr>
<td id="url-sub-host">
%HOST%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A hostname extracted from the text clicked on. Sometimes the same as %TEXT%, sometimes a subset.
</td>
</tr>
<tr>
<td id="url-sub-regex">
%REGEX%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The first regex group match
</td>
</tr>
<tr>
<td id="url-sub-expression">
%EXPRESSION%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The search expression, URI encoded
</td>
</tr>
<tr>
<td id="url-sub-date">
%DATE%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The search date/time range, eg., <code>startTime=1567447943&stopTime=1569607943</code> (UNIX seconds) for a custom date range or <code>date=336</code> (hours) for times relative to now
</td>
</tr>
<tr>
<td id="url-sub-isostart">
%ISOSTART%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The beginning of the search date/time range, ISO_8601 formatted
</td>
</tr>
<tr>
<td id="url-sub-isostop">
%ISOSTOP%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The end of the search date/time range, ISO_8601 formatted
</td>
</tr>
<tr>
<td id="url-sub-field">
%FIELD%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The field name as it would be referenced in a Arkime search expression
</td>
</tr>
<tr>
<td id="url-sub-dbfield">
%DBFIELD%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The field name as referenced in the underlying OpenSearch/Elasticsearch database
</td>
</tr>
<tr>
<td id="url-sub-node">
%NODE%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The name of the capture node
</td>
</tr>
<tr>
<td id="url-sub-sessionid">
%ID%
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
The session ID
</td>
</tr>
</tbody>
</table>
<p class="mb-0">
The categories that Arkime uses are:
</p>
<table class="table table-sm table-striped table-primary">
<thead>
<tr>
<th>
Category
</th>
<th>
Notes
</th>
</tr>
</thead>
<tbody>
<tr>
<td id="categories-ans">
asn
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
An ASN field
</td>
</tr>
<tr>
<td id="categories-country">
country
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A three letter country code
</td>
</tr>
<tr>
<td id="categories-host">
host
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
A domain or host name
</td>
</tr>
<tr>
<td id="categories-ip">
ip
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this, 'settings')">
</span>
</td>
<td>
An ip address
</td>
</tr>
<tr>
<td id="categories-md5">
md5