-
Notifications
You must be signed in to change notification settings - Fork 12
/
CyberMetric-500-v1.json
5006 lines (5004 loc) · 214 KB
/
CyberMetric-500-v1.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
{
"questions": [
{
"question": "Which of the following is a desirable property of a biometric system?",
"answers": {
"A": "Permanent",
"B": "Transferability",
"C": "Uniformity",
"D": "Forgiveness"
},
"solution": "A"
},
{
"question": "In TCP/IP networking, which protocol is used to hold network addresses and routing information in a packet?",
"answers": {
"A": "HTTP",
"B": "IP",
"C": "Routing Information Protocol (RIP)",
"D": "TCP"
},
"solution": "B"
},
{
"question": "In the context of unexpected negative outcomes in personal privacy policies, what responsibility lies with both the provider and the consumer regarding the retention time of private information?",
"answers": {
"A": "Both the provider and the consumer are responsible for setting the appropriate retention time",
"B": "Neither the provider nor the consumer has a responsibility for setting the appropriate retention time",
"C": "Only the consumer is responsible for setting an appropriate retention time",
"D": "Only the provider is responsible for ensuring the appropriate retention time"
},
"solution": "A"
},
{
"question": "What type of attack involves an attacker behaving as a store-and-forward or proxy mechanism between two communicating systems?",
"answers": {
"A": "Buffer overflow attack",
"B": "Man-in-the-Middle attack",
"C": "DDoS attack",
"D": "Sniffer attack"
},
"solution": "B"
},
{
"question": "What is the fundamental purpose of logging and monitoring in an organization's security measures?",
"answers": {
"A": "To store backups of critical data",
"B": "To track, record, and review activity to detect and respond to security incidents",
"C": "To manage and enforce user access controls",
"D": "To create a record of all employee activities"
},
"solution": "B"
},
{
"question": "What is the benefit of structured walk-throughs in disaster recovery testing?",
"answers": {
"A": "Observe live actions in a controlled environment",
"B": "Conduct a full shut-down and restoration at the primary site",
"C": "Test operational response to disaster scenarios",
"D": "Interrupt real operations at the primary site"
},
"solution": "C"
},
{
"question": "Which security process metric would most assist in determining an appropriate backup frequency for a database server?",
"answers": {
"A": "RTO",
"B": "MTBF",
"C": "RPO",
"D": "MTD"
},
"solution": "C"
},
{
"question": "What constitutional amendment outlines the burden placed on investigators to have a valid search warrant before conducting certain searches?",
"answers": {
"A": "Third Amendment",
"B": "First Amendment",
"C": "Second Amendment",
"D": "Fourth Amendment"
},
"solution": "D"
},
{
"question": "Which tool is frequently used to directly access websites without a browser and is often utilized for testing and identifying potential API vulnerabilities?",
"answers": {
"A": "SSH",
"B": "cURL",
"C": "FTP",
"D": "Telnet"
},
"solution": "B"
},
{
"question": "What is the distinguishing characteristic of symmetric-key cryptography?",
"answers": {
"A": "It tends to be CPU intensive",
"B": "It uses the same key for encryption and decryption",
"C": "It provides integrity protection to data",
"D": "It uses different but related keys for encryption and decryption"
},
"solution": "B"
},
{
"question": "What is the result of 5521211 modulo 1337?",
"answers": {
"A": "11111",
"B": "33",
"C": "602",
"D": "738"
},
"solution": "D"
},
{
"question": "Which of the following is an example of a strong password?",
"answers": {
"A": "Password123456",
"B": "ME_Fgh4_al445!A",
"C": "Qwerty!",
"D": "123456"
},
"solution": "B"
},
{
"question": "Which model consists of the Application Layer, Host-to-Host Layer, Internet Layer, and Network Access Layer?",
"answers": {
"A": "OSI model",
"B": "WAN model",
"C": "LAN model",
"D": "TCP/IP model"
},
"solution": "D"
},
{
"question": "What is the primary purpose of 'inference engine' in the context of expert systems?",
"answers": {
"A": "To infer new facts and solve problems using rules and facts in the knowledge base",
"B": "To encrypt messages passed across the Internet",
"C": "To enable recognition of an entity by a system",
"D": "To control access to resources in a system"
},
"solution": "A"
},
{
"question": "What is the primary objective of conducting code reviews for bespoke and custom software applications within the Payment Card Industry Data Security Standard guidelines?",
"answers": {
"A": "To expedite the deplxoyment of bespoke and custom software into production",
"B": "To exploit potential coding vulnerabilities in production software",
"C": "To ensure bespoke and custom software meets performance benchmarks under heavy load",
"D": "To ensure that bespoke and custom software cannot be exploited via coding vulnerabilities"
},
"solution": "D"
},
{
"question": "Which principle of cybersecurity focuses on ensuring that data is accurate and trustworthy?",
"answers": {
"A": "Resilience",
"B": "Availability",
"C": "Authenticity",
"D": "Integrity"
},
"solution": "D"
},
{
"question": "An IDS installed on the network perimeter sees a spike in traffic during off-duty hours and begins logging and alerting. Which type of IDS is in place?",
"answers": {
"A": "Packet filtering",
"B": "Anomaly based",
"C": "Signature based",
"D": "Stateful"
},
"solution": "B"
},
{
"question": "What is the main benefit of WebAssembly?",
"answers": {
"A": "Executes at native speed on client machines",
"B": "Runs both client-side in web browsers and server-side as part of web applications",
"C": "Enforces the same origin policy",
"D": "Supports a wide variety of I/O mechanisms"
},
"solution": "A"
},
{
"question": "Which term describes a program that is used to detect, prevent, and remove malware?",
"answers": {
"A": "Firewall",
"B": "Antivirus",
"C": "Proxy server",
"D": "Router"
},
"solution": "B"
},
{
"question": "Which of the following refers to a situation where an employee intentionally or unintentionally causes a data breach?",
"answers": {
"A": "Spyware",
"B": "Insider threat",
"C": "Phishing",
"D": "Denial of Service"
},
"solution": "B"
},
{
"question": "What does SSID stand for in the context of wireless networking security?",
"answers": {
"A": "Service Set Identifier",
"B": "System Service Identifier",
"C": "System Secure Identifier",
"D": "Secure Signal Identifier"
},
"solution": "A"
},
{
"question": "What is the purpose of release management?",
"answers": {
"A": "Coordinating other service management and support functions",
"B": "Facilitate the execution of vulnerability assessments within the internal network",
"C": "Developing formal procedures for managing the release of new patches",
"D": "Automating the distribution of tested and licensed software / hardware, optimizing IT infrastructure to meet business needs"
},
"solution": "D"
},
{
"question": "What is the formula to determine the number of connections in a full mesh network?",
"answers": {
"A": "n^2",
"B": "n(n - 1)/2",
"C": "n + 1",
"D": "n(n + 1)/2"
},
"solution": "B"
},
{
"question": "What does information assurance primarily focus on within the realm of information security?",
"answers": {
"A": "Ethics",
"B": "Measurement",
"C": "Quality",
"D": "Confidentiality"
},
"solution": "B"
},
{
"question": "What is the primary goal of a stream cipher in encryption?",
"answers": {
"A": "To encrypt one bit at a time as it is being transmitted",
"B": "To encrypt entire message blocks at once",
"C": "To encrypt data transmission over networks",
"D": "To encrypt data at rest"
},
"solution": "A"
},
{
"question": "What is the significance of regular software updates in cybersecurity?",
"answers": {
"A": "They make the system more vulnerable",
"B": "They decrease the risk of cyber attacks",
"C": "They reduce the need for antivirus software",
"D": "They speed up computer performance"
},
"solution": "B"
},
{
"question": "Who is responsible for implementing the planning, budgeting, and performance of the organization's information security components?",
"answers": {
"A": "Administrator",
"B": "CISO",
"C": "MGR",
"D": "CEO"
},
"solution": "B"
},
{
"question": "How many rounds are there in the DES cipher?",
"answers": {
"A": "12",
"B": "16",
"C": "24",
"D": "8"
},
"solution": "B"
},
{
"question": "Which of the following is not part of the C.I.A. Triad in information security?",
"answers": {
"A": "Confidentiality",
"B": "Security",
"C": "Integrity",
"D": "Availability"
},
"solution": "B"
},
{
"question": "What is the most pervasive means of protecting sensitive data both at rest and in transit in a cloud environment?",
"answers": {
"A": "Authentication and Identity Management",
"B": "Data Encryption and Key Management",
"C": "Tokenization",
"D": "Multitenancy"
},
"solution": "B"
},
{
"question": "What is the primary purpose of conducting a risk analysis in cybersecurity?",
"answers": {
"A": "To assess the risk level for the organization",
"B": "To formulate the most important IT security procedures for the organization",
"C": "To create a risk assessment statement",
"D": "To determine the level of exposure to identified threats and identify possible safeguards or controls"
},
"solution": "D"
},
{
"question": "What is the main security policy that governs bookkeeping applications in banking systems?",
"answers": {
"A": "Bell-LaPadula security policy",
"B": "Clark-Wilson security policy",
"C": "Chinese Wall security policy",
"D": "Biba integrity model"
},
"solution": "B"
},
{
"question": "What makes digital watermarking a limited form of steganography, only appropriate for protecting and proving ownership?",
"answers": {
"A": "It securely encrypts the file",
"B": "It compresses the file into a smaller size",
"C": "It introduces errors into the file",
"D": "It modifies the file without obstructing its use"
},
"solution": "D"
},
{
"question": "What is the recommended method for deriving a shared secret following elliptic curve key agreement?",
"answers": {
"A": "Dual elliptic curve deterministic random bit generator",
"B": "Diffie-Hellman key exchange",
"C": "Schulte's modified hash-based key derivation function",
"D": "Key derivation through extraction-then-expansion"
},
"solution": "D"
},
{
"question": "Which type of attack involves crafting URL strings to execute malicious commands to access back-end database data?",
"answers": {
"A": "Buffer Overflow",
"B": "SQL injection",
"C": "Cross-Site Scripting",
"D": "Input Manipulation"
},
"solution": "B"
},
{
"question": "Which statement is true regarding the Federal Sentencing Guidelines in relation to computer crime?",
"answers": {
"A": "Establishing guidelines for investigating computer crimes",
"B": "Creating regulations for the admissibility of evidence in court",
"C": "Regulating the export of encryption products",
"D": "Imposing liability on senior corporate officers for non-compliance with the law"
},
"solution": "D"
},
{
"question": "In the context of encrypting data for secure communication, which encryption algorithm is typically preferred for its speed and efficiency?",
"answers": {
"A": "RSA-2048",
"B": "AES-256",
"C": "Both of them",
"D": "None of them"
},
"solution": "B"
},
{
"question": "Which federal government agency has responsibility for ensuring the security of government computer systems that are not used to process sensitive and/or classified information?",
"answers": {
"A": "National Security Agency",
"B": "National Institute of Standards and Technology",
"C": "Federal Bureau of Investigation",
"D": "Secret Service"
},
"solution": "B"
},
{
"question": "Which of the following best describes an unexpected negative outcome in the context of personal privacy policies?",
"answers": {
"A": "An unwanted outcome that is planned by the provider or the consumer to achieve a specific advantage",
"B": "An unexpected outcome that leads to a loss for the provider, consumer, or both, such as loss of private information, money, time, or job",
"C": "An outcome resulting from a well-formed policy match, leading to mutual benefit",
"D": "An outcome that is anticipated by both the provider and the consumer, leading to mutual gain"
},
"solution": "B"
},
{
"question": "What is the purpose of using a debugger in malware analysis?",
"answers": {
"A": "To examine the behavior and functions of the malware",
"B": "To bypass security controls on the system",
"C": "To remove malware from an infected system",
"D": "To share malware samples with other analysts"
},
"solution": "A"
},
{
"question": "What is the purpose of the Low Orbit Ion Cannon in the context of cybersecurity?",
"answers": {
"A": "Launching attacks on spacecraft",
"B": "Denial of service attacks",
"C": "Buffer overflows",
"D": "SQL injection attacks"
},
"solution": "B"
},
{
"question": "Which wireless attack occurs when a hacker operates a false access point that automatically clones the identity of an access point based on a client device's request to connect?",
"answers": {
"A": "Rogue Access Points",
"B": "War driving",
"C": "RFID attack",
"D": "Evil Twin"
},
"solution": "D"
},
{
"question": "Which protocol binds logical (IP) addresses to physical addresses in a TCP/IP network?",
"answers": {
"A": "ARP",
"B": "ACK",
"C": "AES",
"D": "AIS"
},
"solution": "A"
},
{
"question": "What is the primary purpose of a firewall?",
"answers": {
"A": "To filter and block traffic between separate subnets",
"B": "To protect data after it passes out of or into the private network",
"C": "To prevent unauthorized disclosure of information by users",
"D": "To block unauthorized traffic within a subnet"
},
"solution": "A"
},
{
"question": "Which type of access control list (ACL) is typically used to specify the criteria for filtering packets by source and destination IP addresses, as well as the type of application used?",
"answers": {
"A": "Protocol ACL",
"B": "IP ACL",
"C": "Firewall ACL",
"D": "MAC address ACL"
},
"solution": "B"
},
{
"question": "How is the process of columnar transposition cryptanalysis by cribbing used to test the possible width N?",
"answers": {
"A": "By analyzing the length of the ciphertext",
"B": "By searching for a complete set of subcribs",
"C": "By sorting the positions of the plaintext",
"D": "By encrypting the plaintext multiple times"
},
"solution": "C"
},
{
"question": "What is the responsibility of an intrusion detection system (IDS)?",
"answers": {
"A": "Performing regular vulnerability scans",
"B": "Monitoring and analyzing network traffic",
"C": "Encrypting sensitive data",
"D": "Identifying and blocking unauthorized access"
},
"solution": "B"
},
{
"question": "What is the primary role of the Network Layer in the TCP/IP stack?",
"answers": {
"A": "Adding data flow between applications on different hosts",
"B": "Collaborating with the Physical Layer to place packets onto the transmission medium",
"C": "Sending the completed packet onto the transmission medium",
"D": "Handling packet addressing and routing through the network"
},
"solution": "D"
},
{
"question": "What is the purpose of implementing monitoring systems?",
"answers": {
"A": "Monitoring the configuration and configuration change of devices",
"B": "Ensuring availability and functionality of systems",
"C": "Recording access to information by means of system and security logging",
"D": "Protection from compromising radiation"
},
"solution": "B"
},
{
"question": "Which essential element of an audit report is not considered to be a basic concept of the audit?",
"answers": {
"A": "Recommendations of the auditor",
"B": "Results of the audit",
"C": "Scope of the audit",
"D": "Purpose of the audit"
},
"solution": "A"
},
{
"question": "What is the primary advantage of using UDP over TCP?",
"answers": {
"A": "Reliability",
"B": "Speed of data transfer",
"C": "Error recovery",
"D": "Data integrity"
},
"solution": "B"
},
{
"question": "What is the role of a VPN (Virtual Private Network) in cybersecurity?",
"answers": {
"A": "To boost network performance by bypassing firewalls and filters",
"B": "To establish secure and encrypted connections over a public network, such as the internet",
"C": "To provide access to confidential data without authentication",
"D": "To create a secluded network for non-sensitive data"
},
"solution": "B"
},
{
"question": "If you saw the following command line, what would you be capturing? tcpdump -i eth2 host 192.168.10.5",
"answers": {
"A": "Traffic just from 192.168.10.5",
"B": "Traffic to and from 192.168.10.5",
"C": "All traffic other than from 192.168.86.5",
"D": "Traffic just to 192.168.10.5"
},
"solution": "B"
},
{
"question": "What is vishing?",
"answers": {
"A": "A form of malware that spreads through voice calls",
"B": "A form of phishing attack using voice calls",
"C": "A social media influence campaign",
"D": "A type of attack targeting physical security"
},
"solution": "B"
},
{
"question": "What is the primary reason for capturing network packets?",
"answers": {
"A": "To encrypt network communication",
"B": "To identify network interfaces",
"C": "To resolve MAC addresses",
"D": "To acquire network traffic addressed to systems other than your own"
},
"solution": "D"
},
{
"question": "What common tool can be used for launching an ARP poisoning attack?",
"answers": {
"A": "Cain & Abel",
"B": "Nmap",
"C": "Scooter",
"D": "Tcpdump"
},
"solution": "A"
},
{
"question": "What does the RC4 stream cipher use to produce pseudo-random bits for encryption and decryption?",
"answers": {
"A": "A fixed key",
"B": "The least significant bit of the plaintext",
"C": "A public key",
"D": "A random permutation of integers"
},
"solution": "D"
},
{
"question": "What is the purpose of adding a frame check sequence (FCS) or checksum to a message before encryption?",
"answers": {
"A": "To provide random access memory for message processing",
"B": "To ensure authenticity and integrity of the message",
"C": "To decrypt the message for secure storage",
"D": "To ignore the message content before encrypting it"
},
"solution": "B"
},
{
"question": "Which stage of the risk assessment process involves identifying threats, vulnerabilities, likelihood, and impact?",
"answers": {
"A": "Conduct",
"B": "Maintenance",
"C": "Pre-assessment",
"D": "Characterisation"
},
"solution": "A"
},
{
"question": "What type of information can typically be found in public filings and reports of public companies through the Electronic Data Gathering, Analysis, and Retrieval (EDGAR) system?",
"answers": {
"A": "Organizational network configuration information",
"B": "Details about employee backgrounds and personal lives",
"C": "Legal agreements and contracts with clients",
"D": "Financial statements, business operations, executive compensation"
},
"solution": "D"
},
{
"question": "Which of the following is NOT a form of computer/network surveillance?",
"answers": {
"A": "Keyboard monitoring",
"B": "Use of Closed-Circuit Television (CCTV)",
"C": "Use of network sniffers",
"D": "Review of audit logs"
},
"solution": "B"
},
{
"question": "Which of the following is a characteristic of a worm?",
"answers": {
"A": "Requires user interaction to spread",
"B": "Self-replicates and spreads independently",
"C": "Aargets specific individuals or organizations",
"D": "A worm is an item that runs silently"
},
"solution": "B"
},
{
"question": "Which technique aims to identify changes in normal routines by examining patterns of a user's activity?",
"answers": {
"A": "Vulnerability Assessment",
"B": "Behavior-based IDS",
"C": "Data Mining",
"D": "User Profile Analysis"
},
"solution": "B"
},
{
"question": "In binary representation, what is the result of the bitwise XOR operation between 110101 and 101010",
"answers": {
"A": "011111",
"B": "100111",
"C": "0",
"D": "111111"
},
"solution": "A"
},
{
"question": "Which type of authorization focuses on very specific functions that individually define specific tasks?",
"answers": {
"A": "Fine Grain Authorization",
"B": "Coarse Grain Authorization",
"C": "Least Privileges",
"D": "Separation of Duties"
},
"solution": "A"
},
{
"question": "Which of the following is an example of an inappropriate activity in the context of cybersecurity?",
"answers": {
"A": "Using strong encryption to protect sensitive data",
"B": "Following company policies for secure data handling",
"C": "Downloading and distributing copyrighted material using company resources",
"D": "Storing sensitive company information securely"
},
"solution": "C"
},
{
"question": "What does the CIA triad stand for in the context of cybersecurity?",
"answers": {
"A": "Confidentiality, Identity, Availability",
"B": "Control, Inference, Authorization",
"C": "Confidentiality, Integrity, Availability",
"D": "Confidentiality, Integrity, Accessibility"
},
"solution": "C"
},
{
"question": "A key schedule is:",
"answers": {
"A": "A method of generating keys by the use of random numbers",
"B": "Using distributed computing resources to conduct a brute force attack on a symmetric algorithm",
"C": "A list of cryptographic keys to be used at specified dates and times",
"D": "A set of subkeys derived from a secret key"
},
"solution": "D"
},
{
"question": "Which type of forensic principle ensures that evidence is clear, easy to understand, and believable by a jury?",
"answers": {
"A": "Completeness",
"B": "Reliability",
"C": "Believability",
"D": "Admissibility"
},
"solution": "C"
},
{
"question": "Why is it important to contain and preserve evidence in incident response in cybersecurity?",
"answers": {
"A": "To notify management and legal authorities",
"B": "To eradicate the problem quickly",
"C": "To prevent evidence contamination and loss",
"D": "To apply the need-to-know security principle"
},
"solution": "C"
},
{
"question": "Which of the following is a common form of social engineering attack?",
"answers": {
"A": "Antivirus",
"B": "Phishing",
"C": "Firewall",
"D": "Encryption"
},
"solution": "B"
},
{
"question": "What is the term for the concept that requires an object to be cleared of all data remnants after it has been used?",
"answers": {
"A": "Object reuse",
"B": "Polymorphism",
"C": "Layering",
"D": "Multi use"
},
"solution": "A"
},
{
"question": "Which type of firewall analyzes the status of traffic?",
"answers": {
"A": "Circuit level",
"B": "Packet filtering",
"C": "Stateful inspection",
"D": "NIDS"
},
"solution": "C"
},
{
"question": "Which type of computer crime involves the intercepting of RF signals generated by computers or terminals?",
"answers": {
"A": "Network intrusions",
"B": "Emanation eavesdropping",
"C": "Theft of passwords",
"D": "Denial of Service attacks"
},
"solution": "B"
},
{
"question": "Which nmap command is used to perform a TCP SYN scan, also known as a half-open scan, to determine which ports are open on a target system?",
"answers": {
"A": "nmap -sP",
"B": "nmap -sT",
"C": "nmap -SYN",
"D": "nmap -sS"
},
"solution": "D"
},
{
"question": "In cryptography, what is the purpose of using a key-derivation function (KDF)?",
"answers": {
"A": "Generate public keys",
"B": "Authenticate digital signatures",
"C": "Encrypt data using a password",
"D": "KDF are algorithms used to transform a secret into crucial parameters like keys and Initialization Vectors (IVs)"
},
"solution": "D"
},
{
"question": "What type of attack involves sending messages to force endpoints to reauthenticate to the access point, essentially logging out the endpoints?",
"answers": {
"A": "Wi-Fi scanning attack",
"B": "Key reinstallation attack",
"C": "Evil twin attack",
"D": "Deauthentication attack"
},
"solution": "D"
},
{
"question": "The principle of 'secure by default' is inherently aligned with which cybersecurity principle?",
"answers": {
"A": "Least Privilege",
"B": "Security by design",
"C": "Constrained Delegation",
"D": "Defense in Depth"
},
"solution": "B"
},
{
"question": "What is the primary goal of the Transport Layer Security (TLS) protocol?",
"answers": {
"A": "Privacy and authentication between two communicating applications",
"B": "Privacy and data integrity between two communicating applications",
"C": "Authentication and data integrity between two communicating applications",
"D": "Privacy, authentication, and data integrity between two communicating applications"
},
"solution": "D"
},
{
"question": "What is the primary factor that can save a company when it comes to the failure of equipment and servers?",
"answers": {
"A": "Change management",
"B": "Vulnerability scanning",
"C": "Data archiving",
"D": "Multifactor authentication"
},
"solution": "C"
},
{
"question": "Which of the following is a common social engineering technique used to deceive individuals into providing sensitive information?",
"answers": {
"A": "Denial of Service attack",
"B": "Data breach",
"C": "Malware infection",
"D": "Phishing"
},
"solution": "D"
},
{
"question": "Which block cipher is known as the Data Encryption Standard?",
"answers": {
"A": "DES",
"B": "RC4",
"C": "Feistel Cipher",
"D": "A5/1"
},
"solution": "A"
},
{
"question": "Which of the following actions can help a user minimize exposure to security weaknesses associated with broadband access methods?",
"answers": {
"A": "Disabling or hiding processes that advertise services or automatically respond to inquiries",
"B": "Purchasing higher bandwidth from the service provider",
"C": "Regularly updating the Wi-Fi access point password",
"D": "Utilizing exclusively licensed wireless systems"
},
"solution": "A"
},
{
"question": "What is a crucial role of the internal auditors in the context of cybersecurity?",
"answers": {
"A": "Developing security policies and guidelines for the organization",
"B": "Providing an independent review of controls and compliance",
"C": "Responding to and recovering from disruptive incidents",
"D": "Performing penetration tests and vulnerability analyses"
},
"solution": "B"
},
{
"question": "Users on a network authenticate using a hardware token and a four-digit PIN. Which authentication method does this describe?",
"answers": {
"A": "Multifactor authentication",
"B": "Two-factor authentication",
"C": "Token authentication",
"D": "Three-factor authentication"
},
"solution": "B"
},
{
"question": "In 2016, which operating system occupied 90 percent of the desktop market and was among the largest attack surfaces?",
"answers": {
"A": "Windows",
"B": "iOS",
"C": "Mac OS",
"D": "Linux"
},
"solution": "A"
},
{
"question": "Which layer 4 transport protocol addresses in the IP header field by using a numeric value?",
"answers": {
"A": "TCP",
"B": "IMAP",
"C": "ICMP",
"D": "SSH"
},
"solution": "A"
},
{
"question": "What performance issue can SSL introduce when used in a web server?",
"answers": {
"A": "Increased network bandwidth",
"B": "Reduced CPU and memory usage",
"C": "Enhanced latency in HTTP service time",
"D": "Faster encryption speed"
},
"solution": "C"
},
{
"question": "What is the major concern with a single sign-on (SSO) implementation that allows one login session for all authorized resources?",
"answers": {
"A": "Increased system performance",
"B": "Reduced network traffic",
"C": "Retroactive security measures",
"D": "Potential session stealing"
},
"solution": "D"
},
{
"question": "Which of the following is an example of sensitive authentication data (SAD) used in payment card transactions?",
"answers": {
"A": "Three-digit or four-digit card verification code",
"B": "Expiration date of the payment card",
"C": "Transaction amount and currency",
"D": "Cardholder's name and address"
},
"solution": "A"
},
{
"question": "What is the term used to describe data during its transmission?",
"answers": {
"A": "Static integrity",
"B": "Dynamic / 'data in motion'",
"C": "Static confidentiality",
"D": "None of the above"
},
"solution": "B"
},
{
"question": "In an LDAP injection attack, how does the attacker manipulate the LDAP query to bypass authentication?",
"answers": {
"A": "By inserting additional scripting into web forms to modify the LDAP query",
"B": "By intercepting the communication between the client and server and altering the LDAP query in transit",
"C": "By adding characters such as &)(&) after the username to end the query and then provide any password",
"D": "By using tools such as StackGuard to manipulate the LDAP query"
},
"solution": "C"
},
{
"question": "What is a widespread security flaw in web applications that attackers often exploit, specifically concerning the backend database?",
"answers": {
"A": "SQL injection",
"B": "Denial-of-service attacks",
"C": "Cross-site scripting (XSS)",
"D": "Buffer overflows"
},
"solution": "A"
},
{
"question": "What type of malware is designed to allow a remote user to completely control a system, regardless of local security controls or policies?",
"answers": {
"A": "RAT (Remote-access Trojan/tool)",
"B": "Data diddler",
"C": "Worm",
"D": "Virus"
},
"solution": "A"
},
{
"question": "What is the primary authentication method for validating each device in a machine certificate and EAP-TLS based architecture?",
"answers": {
"A": "Certificate-based digital signatures",
"B": "Raw public key digital signatures",
"C": "PSKs",
"D": "EAP"
},
"solution": "A"
},
{
"question": "What is the purpose of a public-key infrastructure (PKI) in the context of cybersecurity?",
"answers": {
"A": "To enable secure communication without the need for digital certificates and public keys",
"B": "To provide a fast and efficient encryption method for large-scale data transmission",
"C": "To ensure the secrecy of communication by using a single key for encryption and decryption",
"D": "To authenticate and verify the validity of public keys and manage digital certificates"
},
"solution": "D"
},
{
"question": "What is the primary purpose of biometric authentication?",
"answers": {
"A": "To verify email addresses",
"B": "To remember user credentials",
"C": "To identify individuals based on unique biological traits",
"D": "To generate secure passwords"
},
"solution": "C"
},
{
"question": "What are the three essential functions performed by a complete access control system within the security system?",
"answers": {
"A": "Monitoring, management, and response",
"B": "Limiting access, creating an alarm, and providing a record of all accesses",
"C": "Determining the security requirements, planning the security layout, and identifying potential security risks",
"D": "Identifying authorized persons, and determining the requirements for authorized entrants, and examining the geography of the facility"
},
"solution": "B"
},
{
"question": "A pentester is configuring a Windows laptop for a test. In setting up Wireshark, what driver and library are required to allow the NIC to work in promiscuous mode?",
"answers": {
"A": "promsw",
"B": "winprom",
"C": "libpcap",
"D": "winpcap"
},
"solution": "D"
},
{
"question": "How does the use of capa aid in malware analysis?",
"answers": {
"A": "It provides a secure platform for executing malware samples",
"B": "It develops new countermeasures to mitigate malware threats",
"C": "It categorizes and identifies malware behaviors based on established frameworks",
"D": "It automatically generates malware for testing purposes"
},