-
Notifications
You must be signed in to change notification settings - Fork 0
/
appinspect_results.json
4705 lines (4705 loc) · 190 KB
/
appinspect_results.json
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
{
"request_id": null,
"reports": [
{
"app_author": "Cedric Le Roux (updated by Cameron Just)",
"app_description": "Decode or encode a string in Base64",
"app_hash": "2a330c610518fce011a61559324bf9a6",
"app_name": "TA-Base64",
"app_version": "2.0.1",
"metrics": {
"start_time": "2020-06-10T10:37:02.843481",
"end_time": "2020-06-10T10:37:06.168419",
"execution_time": 3.324938
},
"run_parameters": {
"included_tags": [],
"excluded_tags": [],
"appinspect_version": "2.1.0"
},
"groups": [
{
"checks": [
{
"description": "Check that the app does not use Adobe Flash files.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_packaging_standards.py",
"line": 467,
"message": "Didn't find any flash files.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_requires_adobe_flash",
"result": "not_applicable"
},
{
"description": "Check that the extracted Splunk App contains a default/app.conf\n file.",
"messages": [],
"name": "check_that_extracted_splunk_app_contains_default_app_conf_file",
"result": "success"
},
{
"description": "Check that the extracted Splunk App contains a default/app.conf file\n that contains an [id] or [launcher] stanza with a version property that\n is formatted as Major.Minor.Revision.",
"messages": [],
"name": "check_that_extracted_splunk_app_contains_default_app_conf_file_with_valid_version_number",
"result": "success"
},
{
"description": "Check that the extracted Splunk App does not contain any files\n with incorrect permissions. Files must have the owner's\n permissions include read and write (600).",
"messages": [],
"name": "check_that_extracted_splunk_app_does_not_contain_files_with_invalid_permissions",
"result": "success"
},
{
"description": "Check that the extracted Splunk App does not contain any directories\n with incorrect permissions. Directories and sub directories\n must have the owner's permissions set to r/w/x (700).",
"messages": [],
"name": "check_that_extracted_splunk_app_does_not_contain_invalid_directories",
"result": "success"
},
{
"description": "Check that the extracted Splunk App does not contain any directories or\n files that start with a ., or directories that start with __MACOSX.",
"messages": [],
"name": "check_that_extracted_splunk_app_does_not_contain_prohibited_directories_or_files",
"result": "success"
},
{
"description": "Check that the Splunk App package does not contain any non-app files.\n Files within a valid app folder or valid dependencies within a .dependencies\n folder are permitted, all other files are not.",
"messages": [],
"name": "check_that_splunk_app_package_does_not_contain_files_outside_of_app",
"result": "success"
},
{
"description": "Check that the compressed artifact extracts to a directory that does not\n start with a . character.",
"messages": [],
"name": "check_that_splunk_app_package_extracts_to_visible_directory",
"result": "success"
},
{
"description": "Check that the Splunk app provided does not contain incorrect permissions.\n Packages must have have the owner's read permission set to r (400).",
"messages": [],
"name": "check_that_splunk_app_package_has_read_permission",
"result": "success"
},
{
"description": "Check that the Splunk App package contains only valid dependencies.\n Dependencies are valid if a .dependencies directory contains only valid\n app packages inside.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_packaging_standards.py",
"line": 273,
"message": "No ../.dependencies folder found. Please check that the Splunk App package contains only valid dependencies.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_that_splunk_app_package_has_valid_static_dependencies",
"result": "not_applicable"
},
{
"description": "Check that the Splunk app provided does not start with a .\n character.",
"messages": [],
"name": "check_that_splunk_app_package_name_does_not_start_with_period",
"result": "success"
},
{
"description": "Check that the Splunk app provided a valid compressed file.",
"messages": [],
"name": "check_that_splunk_app_package_valid_compressed_file",
"result": "success"
},
{
"description": "Check that the Splunk App package with a .dependencies directory also\n contains an app folder with an app.manifest.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_packaging_standards.py",
"line": 238,
"message": "No ../.dependencies folder found. Please add a .dependencies directory that contains an app folder with an app.manifest.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_that_splunk_app_package_with_static_dependencies_has_app_manifest",
"result": "not_applicable"
},
{
"description": "Check that the Splunk App package with a .dependencies directory also\n contains exactly one valid app folder.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_packaging_standards.py",
"line": 188,
"message": "No ../.dependencies folder found. Please add a .dependencies directory with an valid app folder.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_that_splunk_app_package_with_static_dependencies_has_exactly_one_app_folder",
"result": "not_applicable"
}
],
"description": "Splunk app packaging standards\nThese checks validate that a Splunk app has been correctly packaged, and can be provided safely for package validation.",
"name": "check_packaging_standards"
},
{
"checks": [
{
"description": "Check that stanzas in authentication.conf do not use the the\n bindDNpassword property.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_authentication_configuration_file.py",
"line": 56,
"message": "authentication.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_authentication_conf_does_not_have_binddnpassword_property",
"result": "not_applicable"
},
{
"description": "Check that saml-* stanzas in authentication.conf do not turn off signedAssertion property",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_authentication_configuration_file.py",
"line": 82,
"message": "authentication.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_saml_auth_should_not_turn_off_signed_assertion",
"result": "not_applicable"
},
{
"description": "Check that all the scripted authentications defined in authentication.conf are explicitly\n set the python.version to python3.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_authentication_configuration_file.py",
"line": 164,
"message": "authentication.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_scripted_authentication_has_valid_python_version_property",
"result": "not_applicable"
}
],
"description": "Authentication.conf file standards\nEnsure that bindDNpassword is not specified. For more, see authentication.conf.",
"name": "check_authentication_configuration_file"
},
{
"checks": [
{
"description": "Check that authorize.conf does not contain any modified capabilities.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_authorize_configuration_file.py",
"line": 47,
"message": "No `default/authorize.conf`file exists.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_authorize_conf_capability_not_modified",
"result": "not_applicable"
}
],
"description": "Authorize.conf file standards\nEnsure that the authorize configuration file located in the /default folder is well formed and valid. For more, see authorize.conf.",
"name": "check_authorize_configuration_file"
},
{
"checks": [
{
"description": "Check that commands referenced in the alert.execute.cmd property of all\n alert actions are checked for compliance with Splunk Cloud security policy.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 394,
"message": "alert_actions.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_alert_actions_conf_for_alert_execute_cmd_properties",
"result": "not_applicable"
},
{
"description": "Check that app does not contain audit.conf, as it is prohibited in\n Splunk Cloud due to its ability to configure/disable cryptographic signing\n and certificates.",
"messages": [],
"name": "check_audit_conf_black_list",
"result": "success"
},
{
"description": "Check that authorize.conf does not grant excessive administrative\n permissions to the user.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 334,
"message": "authorize.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_authorize_conf_admin_all_objects_privileges",
"result": "not_applicable"
},
{
"description": "Check that authorize.conf does not contain a tokens_auth stanza",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 357,
"message": "authorize.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_authorize_conf_for_tokens_auth",
"result": "not_applicable"
},
{
"description": "Check that app does not contain bookmarks.conf as this\n feature is not available in Splunk Cloud.",
"messages": [],
"name": "check_bookmarks_conf_black_list",
"result": "success"
},
{
"description": "Check that custom search commands have an executable or script per\n stanza.",
"messages": [],
"name": "check_command_scripts_exist_for_cloud",
"result": "success"
},
{
"description": "Check that app does not contain datatypesbnf.conf, as it is prohibited\n in Splunk Cloud.",
"messages": [],
"name": "check_datatypesbnf_conf_black_list",
"result": "success"
},
{
"description": "Check that directories under default/data/ui contain only allowed files",
"messages": [],
"name": "check_default_data_ui_file_white_list",
"result": "success"
},
{
"description": "Check default/data/ui/manager for any files that\n use password/key/secret and other keywords.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 124,
"message": "The `default/data/ui/manager` directory does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_default_data_ui_manager_for_plain_text_credentials",
"result": "not_applicable"
},
{
"description": "Check that app does not contain default-mode.conf is as it is\n prohibited in Splunk Cloud due to the fact that Splunk Light Forwarders and\n Splunk Universal Forwarders are not run in Splunk Cloud.",
"messages": [],
"name": "check_default_mode_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain deployment.conf. Apps should leave\n deployment configuration up to Splunk administrators.\nAlso, deployment.conf has been removed and replaced by:\n 1) deploymentclient.conf - for configuring Deployment Clients\n 2) serverclass.conf - for Deployment Server server class configuration.",
"messages": [],
"name": "check_deployment_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain deploymentclient.conf as it configures\n the deployment server client. Apps should leave deployment configuration up\n to Splunk administrators.",
"messages": [],
"name": "check_deploymentclient_conf_black_list",
"result": "success"
},
{
"description": "Check if concerningReplicatedFileSize in distsearch.conf is larger\n than 50 MB.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 560,
"message": "distsearch.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_distsearch_conf_for_concerning_replicated_file_size",
"result": "not_applicable"
},
{
"description": "Check that the app does not implement auto-update features.",
"messages": [
{
"code": "reporter.manual_check(reporter_output, directory)",
"filename": "check_cloud_simple_app.py",
"line": 2096,
"message": "Please check the bin/ directory for app auto-update features, which is prohibited. File: bin/",
"result": "manual_check",
"message_filename": "bin/",
"message_line": null
}
],
"name": "check_for_auto_update_features",
"result": "manual_check"
},
{
"description": "Check that all executable binary files have matching source code. For any binary files, there\n should be a source code provided with the same name. Or, there should be a decalaration of what the\n binary file is all about in the app's REAMDE. Details for passing this check will be returned if you fail\n it.",
"messages": [],
"name": "check_for_binary_files_without_source_code",
"result": "success"
},
{
"description": "Check that the app exports data to 3rd party services. Splunk Cloud\n Application Security policy defines \"Exporting Splunk Data to 3rd party\n service\" as a moderate security risk and may or may not be permitted based\n on cumulative risk score.",
"messages": [
{
"code": "reporter.manual_check(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1861,
"message": "Please check whether the app is sending data to third- party services, which is not recommended.",
"result": "manual_check",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_communication_with_third_party_services",
"result": "manual_check"
},
{
"description": "Check that use of\n 'tscollect'\n in .conf filesl and dashboard xmls then fail it.",
"messages": [],
"name": "check_for_implementing_tscollect",
"result": "success"
},
{
"description": "Check that indexes.conf does not declare volumes.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 641,
"message": "indexes.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_index_volume_usage",
"result": "not_applicable"
},
{
"description": "Check [fifo] or [monitor] stanza in inputs.conf is not pointing to a path\n within cloud replicated scope defined by distsearch.conf. [fifo] or [monitor] usually\n points to a file whose size may inflates. This kind of file MUST NOT be replicated across cloud\n environments as it will increase the workload of network.",
"messages": [
{
"code": "reporter.not_applicable(\"The default/inputs.conf does not exist.\")",
"filename": "check_cloud_simple_app.py",
"line": 721,
"message": "The default/inputs.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_inputs_fifo_or_monitor_usage",
"result": "not_applicable"
},
{
"description": "Check whether the app contains java files. Java files will be inspected\n for compliance with Splunk Cloud security policy.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 2162,
"message": "No java files found in app.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_java",
"result": "not_applicable"
},
{
"description": "Check third party libraries for known vulnerabilities. Splunk Cloud\n Application Security policy defines \"Included application libraries have\n multiple vulnerabilities not covered by the components in Transit\" as a\n moderate security risk and may or may not be permitted based on\n cumulative risk score.",
"messages": [
{
"code": "reporter.manual_check(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 2125,
"message": "Please check for known vulnerabilities in third-party libraries. Use these links: https://web.nvd.nist.gov/view/vuln/search. and https://nvd.nist.gov/cvss.cfm",
"result": "manual_check",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_known_vulnerabilities_in_third_party_libraries",
"result": "manual_check"
},
{
"description": "Check for pre-filled lookup tables. Splunk\n Cloud Application Security policy defines \"Lookup Table with Customer\n Supplied Data\" as a minor risk and may or may not be permitted based on\n cumulative risk score.",
"messages": [
{
"code": "reporter.not_applicable(\"The lookups/ directory does not exist.\")",
"filename": "check_cloud_simple_app.py",
"line": 1844,
"message": "The lookups/ directory does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_lookup_tables_prefilled_with_customer_data",
"result": "not_applicable"
},
{
"description": "Check that the app does not monitor Splunk Cloud infrastructure.",
"messages": [
{
"code": "reporter.manual_check(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1822,
"message": "Please check for monitoring of Splunk Cloud infrastructure.",
"result": "manual_check",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_monitoring_of_splunk_cloud_infrastructure",
"result": "manual_check"
},
{
"description": "Check if the app contains Perl scripts. Perl scripts will be inspected\n for compliance with Splunk Cloud security policy.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 2143,
"message": "No Perl scripts found in app.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_perl",
"result": "not_applicable"
},
{
"description": "Check that the app requires access to private infrastructure. Splunk\n Cloud Application Security policy defines \"Network access required to\n customer service and or infrastructure\" as a minor risk and may or may\n not be permitted based on cumulative risk score.",
"messages": [
{
"code": "reporter.manual_check(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1875,
"message": "Please check for required access to private infrastructure.",
"result": "manual_check",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_required_access_to_private_infrastructure",
"result": "manual_check"
},
{
"description": "Check that the app does not contain reverse shells.",
"messages": [
{
"code": "reporter.manual_check(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 2073,
"message": "Please check for reverse shells.",
"result": "manual_check",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_reverse_shells",
"result": "manual_check"
},
{
"description": "Check that app does not contain health.conf as sc_admin is not able\n to see or configure health report in Cloud.",
"messages": [],
"name": "check_health_conf_black_list",
"result": "success"
},
{
"description": "Check that indexes defined in indexes.conf use relative paths starting\n with $SPLUNK_DB.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 613,
"message": "indexes.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_indexes_conf_only_uses_splunk_db_variable",
"result": "not_applicable"
},
{
"description": "Check that batch input accesses files in a permitted way.\nTo be permissible, the batch input must meet the following criteria:\n 1) The file path needs to match a file in the directory \"$SPLUNK_HOME/var/spool/splunk/\"\n 2) The file name needs to be application specific \"$SPLUNK_HOME/etc/apps/\"\n 3) The file name should not end with \"stash\" or \"stash_new\"",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 931,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_batch",
"result": "not_applicable"
},
{
"description": "Check that default/inputs.conf or local/inputs.conf does not contain a fschange\n stanza.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 832,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_fschange",
"result": "not_applicable"
},
{
"description": "Check that default/inputs.conf or local/inputs.conf does not contain a [http]\n stanza.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 859,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_http_global_usage",
"result": "not_applicable"
},
{
"description": "Check that inputs.conf does not have any remote_queue inputs.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 997,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_remote_queue_monitor",
"result": "not_applicable"
},
{
"description": "Check that default/inputs.conf or local/inputs.conf does not contain a splunktcp\n stanza.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 808,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_splunk_tcp",
"result": "not_applicable"
},
{
"description": "Check that default/inputs.conf or local/inputs.conf does not contain a splunktcptoken\n stanza.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 884,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_splunktcptoken",
"result": "not_applicable"
},
{
"description": "Check that inputs.conf does not have any SSL inputs.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 975,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_ssl",
"result": "not_applicable"
},
{
"description": "Check that default/inputs.conf or local/inputs.conf does not contain a tcp stanza.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 782,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_tcp",
"result": "not_applicable"
},
{
"description": "Check that inputs.conf does not have any UDP inputs.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 953,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_inputs_conf_for_udp",
"result": "not_applicable"
},
{
"description": "Check that app does not contain instance.cfg.conf. Apps should not\n configure server/instance specific settings.",
"messages": [],
"name": "check_instance_cfg_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain crawl.conf\n as it allows Splunk to introspect the filesystem which is not\n permitted in Splunk Cloud.",
"messages": [],
"name": "check_introspection_of_cloud_filesystem",
"result": "success"
},
{
"description": "Check that app does not contain literals.conf. Apps should not\n alter/override text strings displayed in Splunk Web.",
"messages": [],
"name": "check_literals_conf_black_list",
"result": "success"
},
{
"description": "Check that lookups/ contains only approved file types (.csv,\n .csv.default, .csv.gz, .csv.tgz, .kmz) or files formatted as valid csv.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 184,
"message": "The `lookups` directory does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_lookups_white_list",
"result": "not_applicable"
},
{
"description": "Check that app does not contain messages.conf. Apps should not\n alter/override messages/externalized strings.",
"messages": [],
"name": "check_messages_conf_black_list",
"result": "success"
},
{
"description": "Check that the metadata/ directory only contains .meta files.",
"messages": [],
"name": "check_metadata_white_list",
"result": "success"
},
{
"description": "Check that there is a script file in bin/ for each modular input\n defined in README/inputs.conf.spec.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1140,
"message": "No `inputs.conf.spec` was detected.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_modular_inputs_scripts_exist_for_cloud",
"result": "not_applicable"
},
{
"description": "Check that app does not contain pubsub.conf as it defines a custom\n client for the deployment server. Apps should leave deployment\n configuration up to Splunk administrators.",
"messages": [],
"name": "check_pubsub_conf_black_list",
"result": "success"
},
{
"description": "Check the cmd path pattern of scripted input defined in inputs.conf.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1062,
"message": "`inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_scripted_inputs_cmd_path_pattern",
"result": "not_applicable"
},
{
"description": "Check that python version is python3 for scripted inputs defined in inputs.conf.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1094,
"message": "`default/inputs.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_scripted_inputs_python_version",
"result": "not_applicable"
},
{
"description": "Check that app does not contain segmenters.conf. A misconfigured\n segmenters.conf can result in unsearchable data that could only be\n addressed by re-indexing and segmenters.conf configuration is system-wide.",
"messages": [],
"name": "check_segmenters_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain serverclass.conf as it defines\n deployment server classes for use with deployment server. Apps should\n leave deployment configuration up to Splunk administrators.",
"messages": [],
"name": "check_serverclass_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain serverclass.seed.xml.conf as it\n configures deploymentClient to seed a Splunk installation with applications\n at startup time. Apps should leave deployment configuration up to Splunk\n administrators.",
"messages": [],
"name": "check_serverclass_seed_xml_conf_black_list",
"result": "success"
},
{
"description": "Check that setup.xml does not exist in the app default folder",
"messages": [],
"name": "check_setup_xml_in_default",
"result": "success"
},
{
"description": "Check that app does not contain source-classifier.conf.conf as it\n configures system-wide settings for ignoring terms (such as sensitive\n data).",
"messages": [],
"name": "check_source_classifier_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain sourcetypes.conf as it is a\n machine-generated file that stores source type learning rules. props.conf\n should be used to define sourcetypes.",
"messages": [],
"name": "check_sourcetypes_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain splunk-launch.conf as it defines\n environment values used at startup time. System-wide environment variables\n should be left up to Splunk administrators.",
"messages": [],
"name": "check_splunk_launch_conf_black_list",
"result": "success"
},
{
"description": "Check that only role-mapping stanza is allowed in authenticaiton.conf as long as it doesn't map users to a cloud-internal role.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1331,
"message": "`default/authentication.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_stanza_of_authentication_conf",
"result": "not_applicable"
},
{
"description": "Check that the static/ directory contains only known file types.",
"messages": [],
"name": "check_static_directory_file_white_list",
"result": "success"
},
{
"description": "Check that app does not contain telemetry.conf as it controls a\n Splunk-internal feature that should not be configured by apps.",
"messages": [],
"name": "check_telemetry_conf_black_list",
"result": "success"
},
{
"description": "Check that the app contains MS Windows specific components, which will not\n function correctly in Splunk Cloud whose OS should be Linux x64.",
"messages": [],
"name": "check_that_app_contains_any_windows_specific_components",
"result": "success"
},
{
"description": "Check that the app does not contain configurations of default source type in props.conf,\n which will overwrite the configurations of default source types in system/default/props.conf\n then it will affect other apps in splunk enterprise/cloud.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1578,
"message": "No props.conf file exists.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_that_no_configurations_of_default_source_type_in_props_conf",
"result": "not_applicable"
},
{
"description": "Check that the app does not have default/passwords.conf, otherwise, warn it.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1543,
"message": "passwords.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_that_passwords_conf_not_exist",
"result": "not_applicable"
},
{
"description": "Check that transforms.conf does not contain any transforms with malicious\n command scripts specified by external_cmd=<string> attribute, or does not contain\n a scripted lookup with python2 only script.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_cloud_simple_app.py",
"line": 1254,
"message": "`default/transforms.conf` does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_transforms_conf_for_external_cmd",
"result": "not_applicable"
},
{
"description": "Check that app does not contain user-seed.conf as it is used to\n preconfigure default login and password information.",
"messages": [],
"name": "check_user_seed_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain wmi.conf is as it is prohibited in\n Splunk Cloud due to its ability to configure Splunk to ingest data via\n Windows Management Instrumentation, which should be done via forwarder.\n Forwarders are not permitted in Splunk Cloud.",
"messages": [],
"name": "check_wmi_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain workload_pools.conf in Cloud. App should\n not modify workload categories/pools. It should be only controlled by cloud\n administrators.",
"messages": [],
"name": "check_workload_pools_conf_black_list",
"result": "success"
},
{
"description": "Check that app does not contain workload_rules.conf in Cloud as it\n automatically trigger actions on running search processes.",
"messages": [],
"name": "check_workload_rules_conf_black_list",
"result": "success"
}
],
"description": "Cloud operations simple application check\nThis group serves to help validate simple applications in an effort to try and automate the validation process for cloud operations.",
"name": "check_cloud_simple_app"
},
{
"checks": [
{
"description": "check the property defined in spec file of README/savedsearches.conf.spec\n if the property is defined in spec file and does not provide a default value in\n default/savedsearches.conf, this check should fail.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_custom_visualizations.py",
"line": 776,
"message": "visualizations.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_default_values_for_modviz",
"result": "not_applicable"
},
{
"description": "Check appserver/static/visualizations/<viz_name>/formatter.html for bad nodes that\n are removed by Splunk's .../search_mrsparkle/exposed/js/util/htmlcleaner.js when rendered.",
"messages": [
{
"code": "reporter.not_applicable(reporter_output)",
"filename": "check_custom_visualizations.py",
"line": 448,
"message": "visualizations.conf does not exist.",
"result": "not_applicable",
"message_filename": null,
"message_line": null
}
],
"name": "check_for_formatter_html_bad_nodes",
"result": "not_applicable"
},
{
"description": "Check appserver/static/visualizations/<viz_name>/formatter.html for comments that\n are removed by Splunk's .../search_mrsparkle/exposed/js/util/htmlcleaner.js when rendered.",
"messages": [
{