forked from google/building-secure-and-reliable-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-metadata.awk
3442 lines (3442 loc) · 231 KB
/
html-metadata.awk
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
# This file was auto-generated by tools/html-metadata-generator.awk.
# It is meant to be @include'd by AWK scripts in tools/.
BEGIN {
metadata["_how_to_contact_us"]["filename"] = "pr01.html";
metadata["_how_to_contact_us"]["type"] = "sect1";
metadata["_how_to_contact_us"]["text"] = "How to Contact Us";
metadata["_how_to_contact_us"]["toc"] = "How to Contact Us";
metadata["_how_to_contact_us"]["order"] = "10";
metadata["_how_to_contact_us"]["id"] = "_how_to_contact_us";
metadata["_safari_books_online"]["filename"] = "pr01.html";
metadata["_safari_books_online"]["type"] = "sect1";
metadata["_safari_books_online"]["text"] = "O'Reilly Online Learning";
metadata["_safari_books_online"]["toc"] = "O'Reilly Online Learning";
metadata["_safari_books_online"]["order"] = "9";
metadata["_safari_books_online"]["id"] = "_safari_books_online";
metadata["a_basic_cisoliduscd_system"]["filename"] = "images/bsrs_1404.png";
metadata["a_basic_cisoliduscd_system"]["type"] = "figure";
metadata["a_basic_cisoliduscd_system"]["text"] = "Figure 14-4";
metadata["a_basic_cisoliduscd_system"]["toc"] = "";
metadata["a_basic_cisoliduscd_system"]["order"] = "377";
metadata["a_basic_cisoliduscd_system"]["id"] = "a_basic_cisoliduscd_system";
metadata["a_centralized_service_to_revoke_certifi"]["filename"] = "ch09.html";
metadata["a_centralized_service_to_revoke_certifi"]["type"] = "sect3";
metadata["a_centralized_service_to_revoke_certifi"]["text"] = "A centralized service to revoke certificates";
metadata["a_centralized_service_to_revoke_certifi"]["toc"] = "A centralized service to revoke certificates";
metadata["a_centralized_service_to_revoke_certifi"]["order"] = "254";
metadata["a_centralized_service_to_revoke_certifi"]["id"] = "a_centralized_service_to_revoke_certifi";
metadata["a_control_flow_in_a_potential_framework"]["filename"] = "images/bsrs_1201.png";
metadata["a_control_flow_in_a_potential_framework"]["type"] = "figure";
metadata["a_control_flow_in_a_potential_framework"]["text"] = "Figure 12-1";
metadata["a_control_flow_in_a_potential_framework"]["toc"] = "";
metadata["a_control_flow_in_a_potential_framework"]["order"] = "307";
metadata["a_control_flow_in_a_potential_framework"]["id"] = "a_control_flow_in_a_potential_framework";
metadata["a_ddos_attack_on_a_news_site_protected"]["filename"] = "images/bsrs_1001.png";
metadata["a_ddos_attack_on_a_news_site_protected"]["type"] = "figure";
metadata["a_ddos_attack_on_a_news_site_protected"]["text"] = "Figure 10-1";
metadata["a_ddos_attack_on_a_news_site_protected"]["toc"] = "";
metadata["a_ddos_attack_on_a_news_site_protected"]["order"] = "278";
metadata["a_ddos_attack_on_a_news_site_protected"]["id"] = "a_ddos_attack_on_a_news_site_protected";
metadata["a_disaster_risk_assessment_matrix"]["filename"] = "appa.html";
metadata["a_disaster_risk_assessment_matrix"]["type"] = "appendix";
metadata["a_disaster_risk_assessment_matrix"]["text"] = "A Disaster Risk Assessment Matrix";
metadata["a_disaster_risk_assessment_matrix"]["toc"] = "Appendix. A Disaster Risk Assessment Matrix";
metadata["a_disaster_risk_assessment_matrix"]["order"] = "571";
metadata["a_disaster_risk_assessment_matrix"]["id"] = "a_disaster_risk_assessment_matrix";
metadata["a_dos_mitigation_system"]["filename"] = "ch10.html";
metadata["a_dos_mitigation_system"]["type"] = "sect2";
metadata["a_dos_mitigation_system"]["text"] = "A DoS Mitigation System";
metadata["a_dos_mitigation_system"]["toc"] = "A DoS Mitigation System";
metadata["a_dos_mitigation_system"]["order"] = "283";
metadata["a_dos_mitigation_system"]["id"] = "a_dos_mitigation_system";
metadata["a_foothold_for_humans"]["filename"] = "ch08.html";
metadata["a_foothold_for_humans"]["type"] = "sect3";
metadata["a_foothold_for_humans"]["text"] = "A foothold for humans";
metadata["a_foothold_for_humans"]["toc"] = "A foothold for humans";
metadata["a_foothold_for_humans"]["order"] = "206";
metadata["a_foothold_for_humans"]["id"] = "a_foothold_for_humans";
metadata["a_high_level_view_of_a_typical_software"]["filename"] = "images/bsrs_1401.png";
metadata["a_high_level_view_of_a_typical_software"]["type"] = "figure";
metadata["a_high_level_view_of_a_typical_software"]["text"] = "Figure 14-1";
metadata["a_high_level_view_of_a_typical_software"]["toc"] = "";
metadata["a_high_level_view_of_a_typical_software"]["order"] = "359";
metadata["a_high_level_view_of_a_typical_software"]["id"] = "a_high_level_view_of_a_typical_software";
metadata["a_line_printer"]["filename"] = "images/bsrs_1501.png";
metadata["a_line_printer"]["type"] = "figure";
metadata["a_line_printer"]["text"] = "Figure 15-1";
metadata["a_line_printer"]["toc"] = "";
metadata["a_line_printer"]["order"] = "420";
metadata["a_line_printer"]["id"] = "a_line_printer";
metadata["a_note_about_culture"]["filename"] = "pr01.html";
metadata["a_note_about_culture"]["type"] = "sect1";
metadata["a_note_about_culture"]["text"] = "A Note About Culture";
metadata["a_note_about_culture"]["toc"] = "A Note About Culture";
metadata["a_note_about_culture"]["order"] = "6";
metadata["a_note_about_culture"]["id"] = "a_note_about_culture";
metadata["a_policy_framework_for_authentication_a"]["filename"] = "ch05.html";
metadata["a_policy_framework_for_authentication_a"]["type"] = "sect1";
metadata["a_policy_framework_for_authentication_a"]["text"] = "Authorization Decisions";
metadata["a_policy_framework_for_authentication_a"]["toc"] = "Authorization Decisions";
metadata["a_policy_framework_for_authentication_a"]["order"] = "110";
metadata["a_policy_framework_for_authentication_a"]["id"] = "a_policy_framework_for_authentication_a";
metadata["a_security_training_game"]["filename"] = "images/bsrs_2101.png";
metadata["a_security_training_game"]["type"] = "figure";
metadata["a_security_training_game"]["text"] = "Figure 21-1";
metadata["a_security_training_game"]["toc"] = "";
metadata["a_security_training_game"]["order"] = "552";
metadata["a_security_training_game"]["id"] = "a_security_training_game";
metadata["a_sequence_of_three_releases_and_their"]["filename"] = "images/bsrs_0902.png";
metadata["a_sequence_of_three_releases_and_their"]["type"] = "figure";
metadata["a_sequence_of_three_releases_and_their"]["text"] = "Figure 9-2";
metadata["a_sequence_of_three_releases_and_their"]["toc"] = "";
metadata["a_sequence_of_three_releases_and_their"]["order"] = "250";
metadata["a_sequence_of_three_releases_and_their"]["id"] = "a_sequence_of_three_releases_and_their";
metadata["a_simplified_view_of_google_app_engine"]["filename"] = "images/bsrs_0801.png";
metadata["a_simplified_view_of_google_app_engine"]["type"] = "figure";
metadata["a_simplified_view_of_google_app_engine"]["text"] = "Figure 8-1";
metadata["a_simplified_view_of_google_app_engine"]["toc"] = "";
metadata["a_simplified_view_of_google_app_engine"]["order"] = "189";
metadata["a_simplified_view_of_google_app_engine"]["id"] = "a_simplified_view_of_google_app_engine";
metadata["a_typical_software_supply_chainem_dasha"]["filename"] = "images/bsrs_1403.png";
metadata["a_typical_software_supply_chainem_dasha"]["type"] = "figure";
metadata["a_typical_software_supply_chainem_dasha"]["text"] = "Figure 14-3";
metadata["a_typical_software_supply_chainem_dasha"]["toc"] = "";
metadata["a_typical_software_supply_chainem_dasha"]["order"] = "368";
metadata["a_typical_software_supply_chainem_dasha"]["id"] = "a_typical_software_supply_chainem_dasha";
metadata["about_the_editors"]["filename"] = "author_bio.html";
metadata["about_the_editors"]["type"] = "colophon";
metadata["about_the_editors"]["text"] = "About the Editors";
metadata["about_the_editors"]["toc"] = "About the Editors";
metadata["about_the_editors"]["order"] = "573";
metadata["about_the_editors"]["id"] = "about_the_editors";
metadata["abstract_interpretation"]["filename"] = "ch13.html";
metadata["abstract_interpretation"]["type"] = "sect2";
metadata["abstract_interpretation"]["text"] = "Abstract Interpretation";
metadata["abstract_interpretation"]["toc"] = "Abstract Interpretation";
metadata["abstract_interpretation"]["order"] = "353";
metadata["abstract_interpretation"]["id"] = "abstract_interpretation";
metadata["access_control"]["filename"] = "ch06.html";
metadata["access_control"]["type"] = "sect3";
metadata["access_control"]["text"] = "Access control";
metadata["access_control"]["toc"] = "Access control";
metadata["access_control"]["order"] = "145";
metadata["access_control"]["id"] = "access_control";
metadata["access_controls"]["filename"] = "ch09.html";
metadata["access_controls"]["type"] = "sect2";
metadata["access_controls"]["text"] = "Access Controls";
metadata["access_controls"]["toc"] = "Access Controls";
metadata["access_controls"]["order"] = "267";
metadata["access_controls"]["id"] = "access_controls";
metadata["accidental_errors"]["filename"] = "ch09.html";
metadata["accidental_errors"]["type"] = "sect2";
metadata["accidental_errors"]["text"] = "Accidental Errors";
metadata["accidental_errors"]["toc"] = "Accidental Errors";
metadata["accidental_errors"]["order"] = "240";
metadata["accidental_errors"]["id"] = "accidental_errors";
metadata["acknowledgments"]["filename"] = "pr01.html";
metadata["acknowledgments"]["type"] = "sect1";
metadata["acknowledgments"]["text"] = "Acknowledgments";
metadata["acknowledgments"]["toc"] = "Acknowledgments";
metadata["acknowledgments"]["order"] = "11";
metadata["acknowledgments"]["id"] = "acknowledgments";
metadata["activists"]["filename"] = "ch02.html";
metadata["activists"]["type"] = "sect2";
metadata["activists"]["text"] = "Activists";
metadata["activists"]["toc"] = "Activists";
metadata["activists"]["order"] = "42";
metadata["activists"]["id"] = "activists";
metadata["advanced_controls"]["filename"] = "ch05.html";
metadata["advanced_controls"]["type"] = "sect1";
metadata["advanced_controls"]["text"] = "Advanced Controls";
metadata["advanced_controls"]["toc"] = "Advanced Controls";
metadata["advanced_controls"]["order"] = "114";
metadata["advanced_controls"]["id"] = "advanced_controls";
metadata["advanced_mitigation_strategies"]["filename"] = "ch14.html";
metadata["advanced_mitigation_strategies"]["type"] = "sect1";
metadata["advanced_mitigation_strategies"]["text"] = "Advanced Mitigation Strategies";
metadata["advanced_mitigation_strategies"]["toc"] = "Advanced Mitigation Strategies";
metadata["advanced_mitigation_strategies"]["order"] = "369";
metadata["advanced_mitigation_strategies"]["id"] = "advanced_mitigation_strategies";
metadata["after_the_recovery"]["filename"] = "ch18.html";
metadata["after_the_recovery"]["type"] = "sect1";
metadata["after_the_recovery"]["text"] = "After the Recovery";
metadata["after_the_recovery"]["toc"] = "After the Recovery";
metadata["after_the_recovery"]["order"] = "518";
metadata["after_the_recovery"]["id"] = "after_the_recovery";
metadata["align_project_goals_and_participant_inc"]["filename"] = "ch21.html";
metadata["align_project_goals_and_participant_inc"]["type"] = "sect2";
metadata["align_project_goals_and_participant_inc"]["text"] = "Align Project Goals and Participant Incentives";
metadata["align_project_goals_and_participant_inc"]["toc"] = "Align Project Goals and Participant Incentives";
metadata["align_project_goals_and_participant_inc"]["order"] = "558";
metadata["align_project_goals_and_participant_inc"]["id"] = "align_project_goals_and_participant_inc";
metadata["aligning_emergent_property_requirements"]["filename"] = "ch04.html";
metadata["aligning_emergent_property_requirements"]["type"] = "sect2";
metadata["aligning_emergent_property_requirements"]["text"] = "Aligning Emergent-Property Requirements";
metadata["aligning_emergent_property_requirements"]["toc"] = "Aligning Emergent-Property Requirements";
metadata["aligning_emergent_property_requirements"]["order"] = "83";
metadata["aligning_emergent_property_requirements"]["id"] = "aligning_emergent_property_requirements";
metadata["aligning_physical_and_logical_architect"]["filename"] = "ch08.html";
metadata["aligning_physical_and_logical_architect"]["type"] = "sect3";
metadata["aligning_physical_and_logical_architect"]["text"] = "Aligning physical and logical architecture";
metadata["aligning_physical_and_logical_architect"]["toc"] = "Aligning physical and logical architecture";
metadata["aligning_physical_and_logical_architect"]["order"] = "210";
metadata["aligning_physical_and_logical_architect"]["id"] = "aligning_physical_and_logical_architect";
metadata["alternative_architecture_using_a_proxy"]["filename"] = "images/bsrs_1408.png";
metadata["alternative_architecture_using_a_proxy"]["type"] = "figure";
metadata["alternative_architecture_using_a_proxy"]["text"] = "Figure 14-8";
metadata["alternative_architecture_using_a_proxy"]["toc"] = "";
metadata["alternative_architecture_using_a_proxy"]["order"] = "384";
metadata["alternative_architecture_using_a_proxy"]["id"] = "alternative_architecture_using_a_proxy";
metadata["an_app_security_improvement_alert"]["filename"] = "images/bsrs_1304.png";
metadata["an_app_security_improvement_alert"]["type"] = "figure";
metadata["an_app_security_improvement_alert"]["text"] = "Figure 13-4";
metadata["an_app_security_improvement_alert"]["toc"] = "";
metadata["an_app_security_improvement_alert"]["order"] = "354";
metadata["an_app_security_improvement_alert"]["id"] = "an_app_security_improvement_alert";
metadata["an_episode_of_testing_on_the_toilet"]["filename"] = "images/bsrs_2102.png";
metadata["an_episode_of_testing_on_the_toilet"]["type"] = "figure";
metadata["an_episode_of_testing_on_the_toilet"]["text"] = "Figure 21-2";
metadata["an_episode_of_testing_on_the_toilet"]["toc"] = "";
metadata["an_episode_of_testing_on_the_toilet"]["order"] = "553";
metadata["an_episode_of_testing_on_the_toilet"]["id"] = "an_episode_of_testing_on_the_toilet";
metadata["an_example_fuzzer"]["filename"] = "ch13.html";
metadata["an_example_fuzzer"]["type"] = "sect2";
metadata["an_example_fuzzer"]["text"] = "An Example Fuzzer";
metadata["an_example_fuzzer"]["toc"] = "An Example Fuzzer";
metadata["an_example_fuzzer"]["order"] = "344";
metadata["an_example_fuzzer"]["id"] = "an_example_fuzzer";
metadata["an_quotation_markidealquotation_mark_ci"]["filename"] = "images/bsrs_1406.png";
metadata["an_quotation_markidealquotation_mark_ci"]["type"] = "figure";
metadata["an_quotation_markidealquotation_mark_ci"]["text"] = "Figure 14-6";
metadata["an_quotation_markidealquotation_mark_ci"]["toc"] = "";
metadata["an_quotation_markidealquotation_mark_ci"]["order"] = "381";
metadata["an_quotation_markidealquotation_mark_ci"]["id"] = "an_quotation_markidealquotation_mark_ci";
metadata["analyzing_invariants"]["filename"] = "ch06.html";
metadata["analyzing_invariants"]["type"] = "sect2";
metadata["analyzing_invariants"]["text"] = "Analyzing Invariants";
metadata["analyzing_invariants"]["toc"] = "Analyzing Invariants";
metadata["analyzing_invariants"]["order"] = "130";
metadata["analyzing_invariants"]["id"] = "analyzing_invariants";
metadata["application_logs"]["filename"] = "ch15.html";
metadata["application_logs"]["type"] = "sect3";
metadata["application_logs"]["text"] = "Application logs";
metadata["application_logs"]["toc"] = "Application logs";
metadata["application_logs"]["order"] = "425";
metadata["application_logs"]["id"] = "application_logs";
metadata["architecture_decisions_to_make_changes"]["filename"] = "ch07.html";
metadata["architecture_decisions_to_make_changes"]["type"] = "sect1";
metadata["architecture_decisions_to_make_changes"]["text"] = "Architecture Decisions to Make Changes Easier";
metadata["architecture_decisions_to_make_changes"]["toc"] = "Architecture Decisions to Make Changes Easier";
metadata["architecture_decisions_to_make_changes"]["order"] = "163";
metadata["architecture_decisions_to_make_changes"]["id"] = "architecture_decisions_to_make_changes";
metadata["assessment"]["filename"] = "ch01.html";
metadata["assessment"]["type"] = "sect2";
metadata["assessment"]["text"] = "Assessment";
metadata["assessment"]["toc"] = "Assessment";
metadata["assessment"]["order"] = "23";
metadata["assessment"]["id"] = "assessment";
metadata["ast_pattern_match_and_replacement_sugge"]["filename"] = "images/bsrs_1301.png";
metadata["ast_pattern_match_and_replacement_sugge"]["type"] = "figure";
metadata["ast_pattern_match_and_replacement_sugge"]["text"] = "Figure 13-1";
metadata["ast_pattern_match_and_replacement_sugge"]["toc"] = "";
metadata["ast_pattern_match_and_replacement_sugge"]["order"] = "349";
metadata["ast_pattern_match_and_replacement_sugge"]["id"] = "ast_pattern_match_and_replacement_sugge";
metadata["attacker_methods"]["filename"] = "ch02.html";
metadata["attacker_methods"]["type"] = "sect1";
metadata["attacker_methods"]["text"] = "Attacker Methods";
metadata["attacker_methods"]["toc"] = "Attacker Methods";
metadata["attacker_methods"]["order"] = "54";
metadata["attacker_methods"]["id"] = "attacker_methods";
metadata["attacker_motivations"]["filename"] = "ch02.html";
metadata["attacker_motivations"]["type"] = "sect1";
metadata["attacker_motivations"]["text"] = "Attacker Motivations";
metadata["attacker_motivations"]["toc"] = "Attacker Motivations";
metadata["attacker_motivations"]["order"] = "33";
metadata["attacker_motivations"]["id"] = "attacker_motivations";
metadata["attacker_profiles"]["filename"] = "ch02.html";
metadata["attacker_profiles"]["type"] = "sect1";
metadata["attacker_profiles"]["text"] = "Attacker Profiles";
metadata["attacker_profiles"]["toc"] = "Attacker Profiles";
metadata["attacker_profiles"]["order"] = "34";
metadata["attacker_profiles"]["id"] = "attacker_profiles";
metadata["attackerapostrophes_strategy"]["filename"] = "ch10.html";
metadata["attackerapostrophes_strategy"]["type"] = "sect2";
metadata["attackerapostrophes_strategy"]["text"] = "Attacker’s Strategy";
metadata["attackerapostrophes_strategy"]["toc"] = "Attacker’s Strategy";
metadata["attackerapostrophes_strategy"]["order"] = "274";
metadata["attackerapostrophes_strategy"]["id"] = "attackerapostrophes_strategy";
metadata["auditing"]["filename"] = "ch05.html";
metadata["auditing"]["type"] = "sect2";
metadata["auditing"]["text"] = "Auditing";
metadata["auditing"]["toc"] = "Auditing";
metadata["auditing"]["order"] = "95";
metadata["auditing"]["id"] = "auditing";
metadata["auditing_automated_systems"]["filename"] = "ch16.html";
metadata["auditing_automated_systems"]["type"] = "sect2";
metadata["auditing_automated_systems"]["text"] = "Auditing Automated Systems";
metadata["auditing_automated_systems"]["toc"] = "Auditing Automated Systems";
metadata["auditing_automated_systems"]["order"] = "452";
metadata["auditing_automated_systems"]["id"] = "auditing_automated_systems";
metadata["authentication_and_transport_security"]["filename"] = "ch06.html";
metadata["authentication_and_transport_security"]["type"] = "sect3";
metadata["authentication_and_transport_security"]["text"] = "Authentication and transport security";
metadata["authentication_and_transport_security"]["toc"] = "Authentication and transport security";
metadata["authentication_and_transport_security"]["order"] = "144";
metadata["authentication_and_transport_security"]["id"] = "authentication_and_transport_security";
metadata["automate_responsibly"]["filename"] = "ch08.html";
metadata["automate_responsibly"]["type"] = "sect2";
metadata["automate_responsibly"]["text"] = "Automate Responsibly";
metadata["automate_responsibly"]["toc"] = "Automate Responsibly";
metadata["automate_responsibly"]["order"] = "204";
metadata["automate_responsibly"]["id"] = "automate_responsibly";
metadata["automated_code_inspection_tools"]["filename"] = "ch13.html";
metadata["automated_code_inspection_tools"]["type"] = "sect2";
metadata["automated_code_inspection_tools"]["text"] = "Automated Code Inspection Tools";
metadata["automated_code_inspection_tools"]["toc"] = "Automated Code Inspection Tools";
metadata["automated_code_inspection_tools"]["order"] = "348";
metadata["automated_code_inspection_tools"]["id"] = "automated_code_inspection_tools";
metadata["automated_response"]["filename"] = "ch08.html";
metadata["automated_response"]["type"] = "sect3";
metadata["automated_response"]["text"] = "Automated response";
metadata["automated_response"]["toc"] = "Automated response";
metadata["automated_response"]["order"] = "203";
metadata["automated_response"]["id"] = "automated_response";
metadata["automation_and_artificial_intelligence"]["filename"] = "ch02.html";
metadata["automation_and_artificial_intelligence"]["type"] = "sect2";
metadata["automation_and_artificial_intelligence"]["text"] = "Automation and Artificial Intelligence";
metadata["automation_and_artificial_intelligence"]["toc"] = "Automation and Artificial Intelligence";
metadata["automation_and_artificial_intelligence"]["order"] = "46";
metadata["automation_and_artificial_intelligence"]["id"] = "automation_and_artificial_intelligence";
metadata["availability"]["filename"] = "ch01.html";
metadata["availability"]["type"] = "sect2";
metadata["availability"]["text"] = "Availability";
metadata["availability"]["toc"] = "Availability";
metadata["availability"]["order"] = "19";
metadata["availability"]["id"] = "availability";
metadata["avoid_multilevel_nesting"]["filename"] = "ch12.html";
metadata["avoid_multilevel_nesting"]["type"] = "sect2";
metadata["avoid_multilevel_nesting"]["text"] = "Avoid Multilevel Nesting";
metadata["avoid_multilevel_nesting"]["toc"] = "Avoid Multilevel Nesting";
metadata["avoid_multilevel_nesting"]["order"] = "319";
metadata["avoid_multilevel_nesting"]["id"] = "avoid_multilevel_nesting";
metadata["avoiding_potential_pitfalls"]["filename"] = "ch05.html";
metadata["avoiding_potential_pitfalls"]["type"] = "sect2";
metadata["avoiding_potential_pitfalls"]["text"] = "Avoiding Potential Pitfalls";
metadata["avoiding_potential_pitfalls"]["toc"] = "Avoiding Potential Pitfalls";
metadata["avoiding_potential_pitfalls"]["order"] = "113";
metadata["avoiding_potential_pitfalls"]["id"] = "avoiding_potential_pitfalls";
metadata["avoiding_risky_exceptions"]["filename"] = "ch09.html";
metadata["avoiding_risky_exceptions"]["type"] = "sect3";
metadata["avoiding_risky_exceptions"]["text"] = "Avoiding risky exceptions";
metadata["avoiding_risky_exceptions"]["toc"] = "Avoiding risky exceptions";
metadata["avoiding_risky_exceptions"]["order"] = "259";
metadata["avoiding_risky_exceptions"]["id"] = "avoiding_risky_exceptions";
metadata["background_and_team_evolution"]["filename"] = "ch19.html";
metadata["background_and_team_evolution"]["type"] = "sect1";
metadata["background_and_team_evolution"]["text"] = "Background and Team Evolution";
metadata["background_and_team_evolution"]["toc"] = "Background and Team Evolution";
metadata["background_and_team_evolution"]["order"] = "529";
metadata["background_and_team_evolution"]["id"] = "background_and_team_evolution";
metadata["background_on_publicly_trusted_certific"]["filename"] = "ch11.html";
metadata["background_on_publicly_trusted_certific"]["type"] = "sect1";
metadata["background_on_publicly_trusted_certific"]["text"] = "Background on Publicly Trusted Certificate Authorities";
metadata["background_on_publicly_trusted_certific"]["toc"] = "Background on Publicly Trusted Certificate Authorities";
metadata["background_on_publicly_trusted_certific"]["order"] = "292";
metadata["background_on_publicly_trusted_certific"]["id"] = "background_on_publicly_trusted_certific";
metadata["balancing_requirements"]["filename"] = "ch04.html";
metadata["balancing_requirements"]["type"] = "sect1";
metadata["balancing_requirements"]["text"] = "Balancing Requirements";
metadata["balancing_requirements"]["toc"] = "Balancing Requirements";
metadata["balancing_requirements"]["order"] = "73";
metadata["balancing_requirements"]["id"] = "balancing_requirements";
metadata["be_mindful_of_correlation_versus_causat"]["filename"] = "ch15.html";
metadata["be_mindful_of_correlation_versus_causat"]["type"] = "sect3";
metadata["be_mindful_of_correlation_versus_causat"]["text"] = "Be mindful of correlation versus causation";
metadata["be_mindful_of_correlation_versus_causat"]["toc"] = "Be mindful of correlation versus causation";
metadata["be_mindful_of_correlation_versus_causat"]["order"] = "405";
metadata["be_mindful_of_correlation_versus_causat"]["id"] = "be_mindful_of_correlation_versus_causat";
metadata["be_transparent_and_engage_the_community"]["filename"] = "ch19.html";
metadata["be_transparent_and_engage_the_community"]["type"] = "sect1";
metadata["be_transparent_and_engage_the_community"]["text"] = "Be Transparent and Engage the Community";
metadata["be_transparent_and_engage_the_community"]["toc"] = "Be Transparent and Engage the Community";
metadata["be_transparent_and_engage_the_community"]["order"] = "534";
metadata["be_transparent_and_engage_the_community"]["id"] = "be_transparent_and_engage_the_community";
metadata["beginning_the_incident"]["filename"] = "ch17.html";
metadata["beginning_the_incident"]["type"] = "sect2";
metadata["beginning_the_incident"]["text"] = "Beginning the Incident";
metadata["beginning_the_incident"]["toc"] = "Beginning the Incident";
metadata["beginning_the_incident"]["order"] = "493";
metadata["beginning_the_incident"]["id"] = "beginning_the_incident";
metadata["beginning_your_response"]["filename"] = "ch17.html";
metadata["beginning_your_response"]["type"] = "sect2";
metadata["beginning_your_response"]["text"] = "Beginning Your Response";
metadata["beginning_your_response"]["toc"] = "Beginning Your Response";
metadata["beginning_your_response"]["order"] = "472";
metadata["beginning_your_response"]["id"] = "beginning_your_response";
metadata["benefits"]["filename"] = "ch04.html";
metadata["benefits"]["type"] = "sect4";
metadata["benefits"]["text"] = "Benefits";
metadata["benefits"]["toc"] = "Benefits";
metadata["benefits"]["order"] = "77";
metadata["benefits"]["id"] = "benefits";
metadata["benefits_of_using_frameworks"]["filename"] = "ch12.html";
metadata["benefits_of_using_frameworks"]["type"] = "sect2";
metadata["benefits_of_using_frameworks"]["text"] = "Benefits of Using Frameworks";
metadata["benefits_of_using_frameworks"]["toc"] = "Benefits of Using Frameworks";
metadata["benefits_of_using_frameworks"]["order"] = "305";
metadata["benefits_of_using_frameworks"]["id"] = "benefits_of_using_frameworks";
metadata["best_practice"]["filename"] = "ch14.html";
metadata["best_practice"]["type"] = "sect1";
metadata["best_practice"]["text"] = "Best Practices";
metadata["best_practice"]["toc"] = "Best Practices";
metadata["best_practice"]["order"] = "362";
metadata["best_practice"]["id"] = "best_practice";
metadata["best_practices"]["filename"] = "ch05.html";
metadata["best_practices"]["type"] = "sect1";
metadata["best_practices"]["text"] = "Best Practices";
metadata["best_practices"]["toc"] = "Best Practices";
metadata["best_practices"]["order"] = "92";
metadata["best_practices"]["id"] = "best_practices";
metadata["binary_provenance"]["filename"] = "ch14.html";
metadata["binary_provenance"]["type"] = "sect2";
metadata["binary_provenance"]["text"] = "Binary Provenance";
metadata["binary_provenance"]["toc"] = "Binary Provenance";
metadata["binary_provenance"]["order"] = "370";
metadata["binary_provenance"]["id"] = "binary_provenance";
metadata["breakglass"]["filename"] = "ch05.html";
metadata["breakglass"]["type"] = "sect2";
metadata["breakglass"]["text"] = "Breakglass";
metadata["breakglass"]["toc"] = "Breakglass";
metadata["breakglass"]["order"] = "94";
metadata["breakglass"]["id"] = "breakglass";
metadata["breaking_down_complexity"]["filename"] = "ch06.html";
metadata["breaking_down_complexity"]["type"] = "sect2";
metadata["breaking_down_complexity"]["text"] = "Breaking Down Complexity";
metadata["breaking_down_complexity"]["toc"] = "Breaking Down Complexity";
metadata["breaking_down_complexity"]["order"] = "134";
metadata["breaking_down_complexity"]["id"] = "breaking_down_complexity";
metadata["budget_for_logging"]["filename"] = "ch15.html";
metadata["budget_for_logging"]["type"] = "sect2";
metadata["budget_for_logging"]["text"] = "Budget for Logging";
metadata["budget_for_logging"]["toc"] = "Budget for Logging";
metadata["budget_for_logging"]["order"] = "428";
metadata["budget_for_logging"]["id"] = "budget_for_logging";
metadata["build_a_case_for_change"]["filename"] = "ch21.html";
metadata["build_a_case_for_change"]["type"] = "sect2";
metadata["build_a_case_for_change"]["text"] = "Build a Case for Change";
metadata["build_a_case_for_change"]["toc"] = "Build a Case for Change";
metadata["build_a_case_for_change"]["order"] = "566";
metadata["build_a_case_for_change"]["id"] = "build_a_case_for_change";
metadata["build_empathy"]["filename"] = "ch21.html";
metadata["build_empathy"]["type"] = "sect2";
metadata["build_empathy"]["text"] = "Build Empathy";
metadata["build_empathy"]["toc"] = "Build Empathy";
metadata["build_empathy"]["order"] = "563";
metadata["build_empathy"]["id"] = "build_empathy";
metadata["business_justifications"]["filename"] = "ch05.html";
metadata["business_justifications"]["type"] = "sect2";
metadata["business_justifications"]["text"] = "Business Justifications";
metadata["business_justifications"]["toc"] = "Business Justifications";
metadata["business_justifications"]["order"] = "117";
metadata["business_justifications"]["id"] = "business_justifications";
metadata["case_study_designingcomma_implementi"]["filename"] = "ch11.html";
metadata["case_study_designingcomma_implementi"]["type"] = "chapter";
metadata["case_study_designingcomma_implementi"]["text"] = "Chapter 11";
metadata["case_study_designingcomma_implementi"]["toc"] = "11. Case Study: Designing, Implementing, and Maintaining a Publicly Trusted CA";
metadata["case_study_designingcomma_implementi"]["order"] = "291";
metadata["case_study_designingcomma_implementi"]["id"] = "case_study_designingcomma_implementi";
metadata["case_study_safe_proxies"]["filename"] = "ch03.html";
metadata["case_study_safe_proxies"]["type"] = "chapter";
metadata["case_study_safe_proxies"]["text"] = "Chapter 3";
metadata["case_study_safe_proxies"]["toc"] = "3. Case Study: Safe Proxies";
metadata["case_study_safe_proxies"]["order"] = "61";
metadata["case_study_safe_proxies"]["id"] = "case_study_safe_proxies";
metadata["centralized_responsibility_for_security"]["filename"] = "ch06.html";
metadata["centralized_responsibility_for_security"]["type"] = "sect2";
metadata["centralized_responsibility_for_security"]["text"] = "Centralized Responsibility for Security and Reliability Requirements";
metadata["centralized_responsibility_for_security"]["toc"] = "Centralized Responsibility for Security and Reliability Requirements";
metadata["centralized_responsibility_for_security"]["order"] = "135";
metadata["centralized_responsibility_for_security"]["id"] = "centralized_responsibility_for_security";
metadata["certifications_and_academia"]["filename"] = "ch20.html";
metadata["certifications_and_academia"]["type"] = "sect2";
metadata["certifications_and_academia"]["text"] = "Certifications and Academia";
metadata["certifications_and_academia"]["toc"] = "Certifications and Academia";
metadata["certifications_and_academia"]["order"] = "540";
metadata["certifications_and_academia"]["id"] = "certifications_and_academia";
metadata["ch12fn4"]["filename"] = "ch12.html";
metadata["ch12fn4"]["type"] = "indexterm";
metadata["ch12fn4"]["text"] = "FIXME";
metadata["ch12fn4"]["toc"] = "";
metadata["ch12fn4"]["order"] = "312";
metadata["ch12fn4"]["id"] = "ch12fn4";
metadata["ch15.html4"]["filename"] = "ch15.html";
metadata["ch15.html4"]["type"] = "indexterm";
metadata["ch15.html4"]["text"] = "FIXME";
metadata["ch15.html4"]["toc"] = "";
metadata["ch15.html4"]["order"] = "398";
metadata["ch15.html4"]["id"] = "ch15.html4";
metadata["changing_culture_through_good_practice"]["filename"] = "ch21.html";
metadata["changing_culture_through_good_practice"]["type"] = "sect1";
metadata["changing_culture_through_good_practice"]["text"] = "Changing Culture Through Good Practice";
metadata["changing_culture_through_good_practice"]["toc"] = "Changing Culture Through Good Practice";
metadata["changing_culture_through_good_practice"]["order"] = "557";
metadata["changing_culture_through_good_practice"]["id"] = "changing_culture_through_good_practice";
metadata["checklist_for_recovery_compromised_clou"]["filename"] = "images/bsrs_1802.png";
metadata["checklist_for_recovery_compromised_clou"]["type"] = "figure";
metadata["checklist_for_recovery_compromised_clou"]["text"] = "Figure 18-2";
metadata["checklist_for_recovery_compromised_clou"]["toc"] = "";
metadata["checklist_for_recovery_compromised_clou"]["order"] = "522";
metadata["checklist_for_recovery_compromised_clou"]["id"] = "checklist_for_recovery_compromised_clou";
metadata["checklist_for_recovery_large_scale_phis"]["filename"] = "images/bsrs_1803.png";
metadata["checklist_for_recovery_large_scale_phis"]["type"] = "figure";
metadata["checklist_for_recovery_large_scale_phis"]["text"] = "Figure 18-3";
metadata["checklist_for_recovery_large_scale_phis"]["toc"] = "";
metadata["checklist_for_recovery_large_scale_phis"]["order"] = "524";
metadata["checklist_for_recovery_large_scale_phis"]["id"] = "checklist_for_recovery_large_scale_phis";
metadata["checklist_template"]["filename"] = "images/bsrs_1801.png";
metadata["checklist_template"]["type"] = "figure";
metadata["checklist_template"]["text"] = "Figure 18-1";
metadata["checklist_template"]["toc"] = "";
metadata["checklist_template"]["order"] = "511";
metadata["checklist_template"]["id"] = "checklist_template";
metadata["choose_the_right_tools"]["filename"] = "ch12.html";
metadata["choose_the_right_tools"]["type"] = "sect2";
metadata["choose_the_right_tools"]["text"] = "Choose the Right Tools";
metadata["choose_the_right_tools"]["toc"] = "Choose the Right Tools";
metadata["choose_the_right_tools"]["order"] = "325";
metadata["choose_the_right_tools"]["id"] = "choose_the_right_tools";
metadata["choosing_an_auditor"]["filename"] = "ch05.html";
metadata["choosing_an_auditor"]["type"] = "sect3";
metadata["choosing_an_auditor"]["text"] = "Choosing an auditor";
metadata["choosing_an_auditor"]["toc"] = "Choosing an auditor";
metadata["choosing_an_auditor"]["order"] = "97";
metadata["choosing_an_auditor"]["id"] = "choosing_an_auditor";
metadata["classifying_access_based_on_risk"]["filename"] = "ch05.html";
metadata["classifying_access_based_on_risk"]["type"] = "sect1";
metadata["classifying_access_based_on_risk"]["text"] = "Classifying Access Based on Risk";
metadata["classifying_access_based_on_risk"]["toc"] = "Classifying Access Based on Risk";
metadata["classifying_access_based_on_risk"]["order"] = "91";
metadata["classifying_access_based_on_risk"]["id"] = "classifying_access_based_on_risk";
metadata["clean_up_code"]["filename"] = "ch15.html";
metadata["clean_up_code"]["type"] = "sect3";
metadata["clean_up_code"]["text"] = "Clean up code";
metadata["clean_up_code"]["toc"] = "Clean up code";
metadata["clean_up_code"]["order"] = "412";
metadata["clean_up_code"]["id"] = "clean_up_code";
metadata["client_retry_behavior"]["filename"] = "ch10.html";
metadata["client_retry_behavior"]["type"] = "sect2";
metadata["client_retry_behavior"]["text"] = "Client Retry Behavior";
metadata["client_retry_behavior"]["toc"] = "Client Retry Behavior";
metadata["client_retry_behavior"]["order"] = "288";
metadata["client_retry_behavior"]["id"] = "client_retry_behavior";
metadata["closure"]["filename"] = "ch17.html";
metadata["closure"]["type"] = "sect2";
metadata["closure"]["text"] = "Closure";
metadata["closure"]["toc"] = "Closure";
metadata["closure"]["order"] = "497";
metadata["closure"]["id"] = "closure";
metadata["cloud_logs"]["filename"] = "ch15.html";
metadata["cloud_logs"]["type"] = "sect3";
metadata["cloud_logs"]["text"] = "Cloud logs";
metadata["cloud_logs"]["toc"] = "Cloud logs";
metadata["cloud_logs"]["order"] = "426";
metadata["cloud_logs"]["id"] = "cloud_logs";
metadata["collaborative_debugging_a_way_to_teach"]["filename"] = "ch15.html";
metadata["collaborative_debugging_a_way_to_teach"]["type"] = "sect2";
metadata["collaborative_debugging_a_way_to_teach"]["text"] = "Collaborative Debugging: A Way to Teach";
metadata["collaborative_debugging_a_way_to_teach"]["toc"] = "Collaborative Debugging: A Way to Teach";
metadata["collaborative_debugging_a_way_to_teach"]["order"] = "416";
metadata["collaborative_debugging_a_way_to_teach"]["id"] = "collaborative_debugging_a_way_to_teach";
metadata["collect_appropriate_and_useful_logs"]["filename"] = "ch15.html";
metadata["collect_appropriate_and_useful_logs"]["type"] = "sect1";
metadata["collect_appropriate_and_useful_logs"]["text"] = "Collect Appropriate and Useful Logs";
metadata["collect_appropriate_and_useful_logs"]["toc"] = "Collect Appropriate and Useful Logs";
metadata["collect_appropriate_and_useful_logs"]["order"] = "418";
metadata["collect_appropriate_and_useful_logs"]["id"] = "collect_appropriate_and_useful_logs";
metadata["collecting_good_audit_logs"]["filename"] = "ch05.html";
metadata["collecting_good_audit_logs"]["type"] = "sect3";
metadata["collecting_good_audit_logs"]["text"] = "Collecting good audit logs";
metadata["collecting_good_audit_logs"]["toc"] = "Collecting good audit logs";
metadata["collecting_good_audit_logs"]["order"] = "96";
metadata["collecting_good_audit_logs"]["id"] = "collecting_good_audit_logs";
metadata["common_pitfalls"]["filename"] = "ch08.html";
metadata["common_pitfalls"]["type"] = "sect3";
metadata["common_pitfalls"]["text"] = "Common pitfalls";
metadata["common_pitfalls"]["toc"] = "Common pitfalls";
metadata["common_pitfalls"]["order"] = "226";
metadata["common_pitfalls"]["id"] = "common_pitfalls";
metadata["common_security_vulnerabilities"]["filename"] = "ch12.html";
metadata["common_security_vulnerabilities"]["type"] = "sect1";
metadata["common_security_vulnerabilities"]["text"] = "Common Security Vulnerabilities";
metadata["common_security_vulnerabilities"]["toc"] = "Common Security Vulnerabilities";
metadata["common_security_vulnerabilities"]["order"] = "309";
metadata["common_security_vulnerabilities"]["id"] = "common_security_vulnerabilities";
metadata["communication"]["filename"] = "ch17.html";
metadata["communication"]["type"] = "sect1";
metadata["communication"]["text"] = "Communications";
metadata["communication"]["toc"] = "Communications";
metadata["communication"]["order"] = "484";
metadata["communication"]["id"] = "communication";
metadata["communications"]["filename"] = "ch09.html";
metadata["communications"]["type"] = "sect2";
metadata["communications"]["text"] = "Communications";
metadata["communications"]["toc"] = "Communications";
metadata["communications"]["order"] = "268";
metadata["communications"]["id"] = "communications";
metadata["communications_and_operational_security"]["filename"] = "ch17.html";
metadata["communications_and_operational_security"]["type"] = "sect2";
metadata["communications_and_operational_security"]["text"] = "Communications and Operational Security";
metadata["communications_and_operational_security"]["toc"] = "Communications and Operational Security";
metadata["communications_and_operational_security"]["order"] = "492";
metadata["communications_and_operational_security"]["id"] = "communications_and_operational_security";
metadata["complete_outage_and_a_possible_cascadin"]["filename"] = "images/bsrs_0803.png";
metadata["complete_outage_and_a_possible_cascadin"]["type"] = "figure";
metadata["complete_outage_and_a_possible_cascadin"]["text"] = "Figure 8-3";
metadata["complete_outage_and_a_possible_cascadin"]["toc"] = "";
metadata["complete_outage_and_a_possible_cascadin"]["order"] = "199";
metadata["complete_outage_and_a_possible_cascadin"]["id"] = "complete_outage_and_a_possible_cascadin";
metadata["complexity_versus_understandabilit"]["filename"] = "ch06.html";
metadata["complexity_versus_understandabilit"]["type"] = "sect2";
metadata["complexity_versus_understandabilit"]["text"] = "Complexity Versus Understandability";
metadata["complexity_versus_understandabilit"]["toc"] = "Complexity Versus Understandability";
metadata["complexity_versus_understandabilit"]["order"] = "133";
metadata["complexity_versus_understandabilit"]["id"] = "complexity_versus_understandabilit";
metadata["complexity_versus_understandability"]["filename"] = "ch11.html";
metadata["complexity_versus_understandability"]["type"] = "sect2";
metadata["complexity_versus_understandability"]["text"] = "Complexity Versus Understandability";
metadata["complexity_versus_understandability"]["toc"] = "Complexity Versus Understandability";
metadata["complexity_versus_understandability"]["order"] = "297";
metadata["complexity_versus_understandability"]["id"] = "complexity_versus_understandability";
metadata["complications_when_plans_change"]["filename"] = "ch07.html";
metadata["complications_when_plans_change"]["type"] = "sect1";
metadata["complications_when_plans_change"]["text"] = "Complications: When Plans Change";
metadata["complications_when_plans_change"]["toc"] = "Complications: When Plans Change";
metadata["complications_when_plans_change"]["order"] = "177";
metadata["complications_when_plans_change"]["id"] = "complications_when_plans_change";
metadata["component_types"]["filename"] = "ch08.html";
metadata["component_types"]["type"] = "sect2";
metadata["component_types"]["text"] = "Component Types";
metadata["component_types"]["toc"] = "Component Types";
metadata["component_types"]["order"] = "220";
metadata["component_types"]["id"] = "component_types";
metadata["compromise"]["filename"] = "ch08.html";
metadata["compromise"]["type"] = "sect3";
metadata["compromise"]["text"] = "Compromise";
metadata["compromise"]["toc"] = "Compromise";
metadata["compromise"]["order"] = "187";
metadata["compromise"]["id"] = "compromise";
metadata["compromised_cloud_instances"]["filename"] = "ch18.html";
metadata["compromised_cloud_instances"]["type"] = "sect2";
metadata["compromised_cloud_instances"]["text"] = "Compromised Cloud Instances";
metadata["compromised_cloud_instances"]["toc"] = "Compromised Cloud Instances";
metadata["compromised_cloud_instances"]["order"] = "521";
metadata["compromised_cloud_instances"]["id"] = "compromised_cloud_instances";
metadata["compromises_versus_bugs"]["filename"] = "ch17.html";
metadata["compromises_versus_bugs"]["type"] = "sect2";
metadata["compromises_versus_bugs"]["text"] = "Compromises Versus Bugs";
metadata["compromises_versus_bugs"]["toc"] = "Compromises Versus Bugs";
metadata["compromises_versus_bugs"]["order"] = "469";
metadata["compromises_versus_bugs"]["id"] = "compromises_versus_bugs";
metadata["computing_resources"]["filename"] = "ch08.html";
metadata["computing_resources"]["type"] = "sect3";
metadata["computing_resources"]["text"] = "Computing resources";
metadata["computing_resources"]["toc"] = "Computing resources";
metadata["computing_resources"]["order"] = "195";
metadata["computing_resources"]["id"] = "computing_resources";
metadata["concepts_and_terminolog"]["filename"] = "ch05.html";
metadata["concepts_and_terminolog"]["type"] = "sect1";
metadata["concepts_and_terminolog"]["text"] = "Concepts and Terminology";
metadata["concepts_and_terminolog"]["toc"] = "Concepts and Terminology";
metadata["concepts_and_terminolog"]["order"] = "87";
metadata["concepts_and_terminolog"]["id"] = "concepts_and_terminolog";
metadata["concepts_and_terminology"]["filename"] = "ch14.html";
metadata["concepts_and_terminology"]["type"] = "sect1";
metadata["concepts_and_terminology"]["text"] = "Concepts and Terminology";
metadata["concepts_and_terminology"]["toc"] = "Concepts and Terminology";
metadata["concepts_and_terminology"]["order"] = "358";
metadata["concepts_and_terminology"]["id"] = "concepts_and_terminology";
metadata["conclusion"]["filename"] = "ch01.html";
metadata["conclusion"]["type"] = "sect1";
metadata["conclusion"]["text"] = "Conclusion";
metadata["conclusion"]["toc"] = "Conclusion";
metadata["conclusion"]["order"] = "31";
metadata["conclusion"]["id"] = "conclusion";
metadata["conclusion-id00002"]["filename"] = "ch02.html";
metadata["conclusion-id00002"]["type"] = "sect1";
metadata["conclusion-id00002"]["text"] = "Conclusion";
metadata["conclusion-id00002"]["toc"] = "Conclusion";
metadata["conclusion-id00002"]["order"] = "59";
metadata["conclusion-id00002"]["id"] = "conclusion-id00002";
metadata["conclusion-id00003"]["filename"] = "ch04.html";
metadata["conclusion-id00003"]["type"] = "sect1";
metadata["conclusion-id00003"]["text"] = "Conclusion";
metadata["conclusion-id00003"]["toc"] = "Conclusion";
metadata["conclusion-id00003"]["order"] = "85";
metadata["conclusion-id00003"]["id"] = "conclusion-id00003";
metadata["conclusion-id00004"]["filename"] = "ch05.html";
metadata["conclusion-id00004"]["type"] = "sect1";
metadata["conclusion-id00004"]["text"] = "Conclusion";
metadata["conclusion-id00004"]["toc"] = "Conclusion";
metadata["conclusion-id00004"]["order"] = "126";
metadata["conclusion-id00004"]["id"] = "conclusion-id00004";
metadata["conclusion-id00005"]["filename"] = "ch06.html";
metadata["conclusion-id00005"]["type"] = "sect1";
metadata["conclusion-id00005"]["text"] = "Conclusion";
metadata["conclusion-id00005"]["toc"] = "Conclusion";
metadata["conclusion-id00005"]["order"] = "159";
metadata["conclusion-id00005"]["id"] = "conclusion-id00005";
metadata["conclusion-id00006"]["filename"] = "ch07.html";
metadata["conclusion-id00006"]["type"] = "sect1";
metadata["conclusion-id00006"]["text"] = "Conclusion";
metadata["conclusion-id00006"]["toc"] = "Conclusion";
metadata["conclusion-id00006"]["order"] = "179";
metadata["conclusion-id00006"]["id"] = "conclusion-id00006";
metadata["conclusion-id00007"]["filename"] = "ch08.html";
metadata["conclusion-id00007"]["type"] = "sect1";
metadata["conclusion-id00007"]["text"] = "Conclusion";
metadata["conclusion-id00007"]["toc"] = "Conclusion";
metadata["conclusion-id00007"]["order"] = "236";
metadata["conclusion-id00007"]["id"] = "conclusion-id00007";
metadata["conclusion-id00008"]["filename"] = "ch09.html";
metadata["conclusion-id00008"]["type"] = "sect1";
metadata["conclusion-id00008"]["text"] = "Conclusion";
metadata["conclusion-id00008"]["toc"] = "Conclusion";
metadata["conclusion-id00008"]["order"] = "271";
metadata["conclusion-id00008"]["id"] = "conclusion-id00008";
metadata["conclusion-id00009"]["filename"] = "ch10.html";
metadata["conclusion-id00009"]["type"] = "sect1";
metadata["conclusion-id00009"]["text"] = "Conclusion";
metadata["conclusion-id00009"]["toc"] = "Conclusion";
metadata["conclusion-id00009"]["order"] = "289";
metadata["conclusion-id00009"]["id"] = "conclusion-id00009";
metadata["conclusion-id00010"]["filename"] = "ch11.html";
metadata["conclusion-id00010"]["type"] = "sect1";
metadata["conclusion-id00010"]["text"] = "Conclusion";
metadata["conclusion-id00010"]["toc"] = "Conclusion";
metadata["conclusion-id00010"]["order"] = "302";
metadata["conclusion-id00010"]["id"] = "conclusion-id00010";
metadata["conclusion-id00011"]["filename"] = "ch12.html";
metadata["conclusion-id00011"]["type"] = "sect1";
metadata["conclusion-id00011"]["text"] = "Conclusion";
metadata["conclusion-id00011"]["toc"] = "Conclusion";
metadata["conclusion-id00011"]["order"] = "332";
metadata["conclusion-id00011"]["id"] = "conclusion-id00011";
metadata["conclusion-id00012"]["filename"] = "ch13.html";
metadata["conclusion-id00012"]["type"] = "sect1";
metadata["conclusion-id00012"]["text"] = "Conclusion";
metadata["conclusion-id00012"]["toc"] = "Conclusion";
metadata["conclusion-id00012"]["order"] = "356";
metadata["conclusion-id00012"]["id"] = "conclusion-id00012";
metadata["conclusion-id00013"]["filename"] = "ch14.html";
metadata["conclusion-id00013"]["type"] = "sect1";
metadata["conclusion-id00013"]["text"] = "Conclusion";
metadata["conclusion-id00013"]["toc"] = "Conclusion";
metadata["conclusion-id00013"]["order"] = "393";
metadata["conclusion-id00013"]["id"] = "conclusion-id00013";
metadata["conclusion-id00014"]["filename"] = "ch15.html";
metadata["conclusion-id00014"]["type"] = "sect1";
metadata["conclusion-id00014"]["text"] = "Conclusion";
metadata["conclusion-id00014"]["toc"] = "Conclusion";
metadata["conclusion-id00014"]["order"] = "432";
metadata["conclusion-id00014"]["id"] = "conclusion-id00014";
metadata["conclusion-id00015"]["filename"] = "ch16.html";
metadata["conclusion-id00015"]["type"] = "sect1";
metadata["conclusion-id00015"]["text"] = "Conclusion";
metadata["conclusion-id00015"]["toc"] = "Conclusion";
metadata["conclusion-id00015"]["order"] = "465";
metadata["conclusion-id00015"]["id"] = "conclusion-id00015";
metadata["conclusion-id00016"]["filename"] = "ch17.html";
metadata["conclusion-id00016"]["type"] = "sect1";
metadata["conclusion-id00016"]["text"] = "Conclusion";
metadata["conclusion-id00016"]["toc"] = "Conclusion";
metadata["conclusion-id00016"]["order"] = "498";
metadata["conclusion-id00016"]["id"] = "conclusion-id00016";
metadata["conclusion-id00017"]["filename"] = "ch18.html";
metadata["conclusion-id00017"]["type"] = "sect1";
metadata["conclusion-id00017"]["text"] = "Conclusion";
metadata["conclusion-id00017"]["toc"] = "Conclusion";
metadata["conclusion-id00017"]["order"] = "526";
metadata["conclusion-id00017"]["id"] = "conclusion-id00017";
metadata["conclusion-id00018"]["filename"] = "ch19.html";
metadata["conclusion-id00018"]["type"] = "sect1";
metadata["conclusion-id00018"]["text"] = "Conclusion";
metadata["conclusion-id00018"]["toc"] = "Conclusion";
metadata["conclusion-id00018"]["order"] = "535";
metadata["conclusion-id00018"]["id"] = "conclusion-id00018";
metadata["conclusion-id00019"]["filename"] = "ch20.html";
metadata["conclusion-id00019"]["type"] = "sect1";
metadata["conclusion-id00019"]["text"] = "Conclusion";
metadata["conclusion-id00019"]["toc"] = "Conclusion";
metadata["conclusion-id00019"]["order"] = "546";
metadata["conclusion-id00019"]["id"] = "conclusion-id00019";
metadata["conclusion-id00020"]["filename"] = "ch21.html";
metadata["conclusion-id00020"]["type"] = "sect1";
metadata["conclusion-id00020"]["text"] = "Conclusion";
metadata["conclusion-id00020"]["toc"] = "Conclusion";
metadata["conclusion-id00020"]["order"] = "569";
metadata["conclusion-id00020"]["id"] = "conclusion-id00020";
metadata["conclusion-id00021"]["filename"] = "ch22.html";
metadata["conclusion-id00021"]["type"] = "afterword";
metadata["conclusion-id00021"]["text"] = "Conclusion";
metadata["conclusion-id00021"]["toc"] = "Conclusion";
metadata["conclusion-id00021"]["order"] = "570";
metadata["conclusion-id00021"]["id"] = "conclusion-id00021";
metadata["conclusion-id00080"]["filename"] = "ch03.html";
metadata["conclusion-id00080"]["type"] = "sect1";
metadata["conclusion-id00080"]["text"] = "Conclusion";
metadata["conclusion-id00080"]["toc"] = "Conclusion";
metadata["conclusion-id00080"]["order"] = "66";
metadata["conclusion-id00080"]["id"] = "conclusion-id00080";
metadata["conducting_nonintrusive_tabletops"]["filename"] = "ch16.html";
metadata["conducting_nonintrusive_tabletops"]["type"] = "sect2";
metadata["conducting_nonintrusive_tabletops"]["text"] = "Conducting Nonintrusive Tabletops";
metadata["conducting_nonintrusive_tabletops"]["toc"] = "Conducting Nonintrusive Tabletops";
metadata["conducting_nonintrusive_tabletops"]["order"] = "453";
metadata["conducting_nonintrusive_tabletops"]["id"] = "conducting_nonintrusive_tabletops";
metadata["confidentiality"]["filename"] = "ch01.html";
metadata["confidentiality"]["type"] = "sect2";
metadata["confidentiality"]["text"] = "Confidentiality";
metadata["confidentiality"]["toc"] = "Confidentiality";
metadata["confidentiality"]["order"] = "17";
metadata["confidentiality"]["id"] = "confidentiality";
metadata["confidentialitycomma_integritycomma_ava"]["filename"] = "ch01.html";
metadata["confidentialitycomma_integritycomma_ava"]["type"] = "sect1";
metadata["confidentialitycomma_integritycomma_ava"]["text"] = "Confidentiality, Integrity, Availability";
metadata["confidentialitycomma_integritycomma_ava"]["toc"] = "Confidentiality, Integrity, Availability";
metadata["confidentialitycomma_integritycomma_ava"]["order"] = "16";
metadata["confidentialitycomma_integritycomma_ava"]["id"] = "confidentialitycomma_integritycomma_ava";
metadata["configuring_systems"]["filename"] = "ch16.html";
metadata["configuring_systems"]["type"] = "sect2";
metadata["configuring_systems"]["text"] = "Configuring Systems";
metadata["configuring_systems"]["toc"] = "Configuring Systems";
metadata["configuring_systems"]["order"] = "448";
metadata["configuring_systems"]["id"] = "configuring_systems";
metadata["considering_api_usability"]["filename"] = "ch06.html";
metadata["considering_api_usability"]["type"] = "sect2";
metadata["considering_api_usability"]["text"] = "Considering API Usability";
metadata["considering_api_usability"]["toc"] = "Considering API Usability";
metadata["considering_api_usability"]["order"] = "157";
metadata["considering_api_usability"]["id"] = "considering_api_usability";
metadata["continuous_fuzzing"]["filename"] = "ch13.html";
metadata["continuous_fuzzing"]["type"] = "sect2";
metadata["continuous_fuzzing"]["text"] = "Continuous Fuzzing";
metadata["continuous_fuzzing"]["toc"] = "Continuous Fuzzing";
metadata["continuous_fuzzing"]["order"] = "345";
metadata["continuous_fuzzing"]["id"] = "continuous_fuzzing";
metadata["continuous_validation"]["filename"] = "ch08.html";
metadata["continuous_validation"]["type"] = "sect1";
metadata["continuous_validation"]["text"] = "Continuous Validation";
metadata["continuous_validation"]["toc"] = "Continuous Validation";
metadata["continuous_validation"]["order"] = "227";
metadata["continuous_validation"]["id"] = "continuous_validation";
metadata["controlling_degradation"]["filename"] = "ch08.html";
metadata["controlling_degradation"]["type"] = "sect1";
metadata["controlling_degradation"]["text"] = "Controlling Degradation";
metadata["controlling_degradation"]["toc"] = "Controlling Degradation";
metadata["controlling_degradation"]["order"] = "193";
metadata["controlling_degradation"]["id"] = "controlling_degradation";
metadata["controlling_redundancies"]["filename"] = "ch08.html";
metadata["controlling_redundancies"]["type"] = "sect2";
metadata["controlling_redundancies"]["text"] = "Controlling Redundancies";
metadata["controlling_redundancies"]["toc"] = "Controlling Redundancies";
metadata["controlling_redundancies"]["order"] = "224";
metadata["controlling_redundancies"]["id"] = "controlling_redundancies";
metadata["controlling_the_blast_radius"]["filename"] = "ch08.html";
metadata["controlling_the_blast_radius"]["type"] = "sect1";
metadata["controlling_the_blast_radius"]["text"] = "Controlling the Blast Radius";
metadata["controlling_the_blast_radius"]["toc"] = "Controlling the Blast Radius";
metadata["controlling_the_blast_radius"]["order"] = "207";
metadata["controlling_the_blast_radius"]["id"] = "controlling_the_blast_radius";
metadata["conventions_used_in_this_book"]["filename"] = "pr01.html";
metadata["conventions_used_in_this_book"]["type"] = "sect1";
metadata["conventions_used_in_this_book"]["text"] = "Conventions Used in This Book";
metadata["conventions_used_in_this_book"]["toc"] = "Conventions Used in This Book";
metadata["conventions_used_in_this_book"]["order"] = "8";
metadata["conventions_used_in_this_book"]["id"] = "conventions_used_in_this_book";
metadata["convincing_leadership"]["filename"] = "ch21.html";
metadata["convincing_leadership"]["type"] = "sect1";
metadata["convincing_leadership"]["text"] = "Convincing Leadership";
metadata["convincing_leadership"]["toc"] = "Convincing Leadership";
metadata["convincing_leadership"]["order"] = "564";
metadata["convincing_leadership"]["id"] = "convincing_leadership";
metadata["costs_and_nontechnical_risks"]["filename"] = "ch04.html";
metadata["costs_and_nontechnical_risks"]["type"] = "sect4";
metadata["costs_and_nontechnical_risks"]["text"] = "Costs and nontechnical risks";
metadata["costs_and_nontechnical_risks"]["toc"] = "Costs and nontechnical risks";
metadata["costs_and_nontechnical_risks"]["order"] = "78";
metadata["costs_and_nontechnical_risks"]["id"] = "costs_and_nontechnical_risks";
metadata["cplusplus_valgrind_or_google_sanitizers"]["filename"] = "ch12.html";
metadata["cplusplus_valgrind_or_google_sanitizers"]["type"] = "sect3";
metadata["cplusplus_valgrind_or_google_sanitizers"]["text"] = "C++: Valgrind or Google Sanitizers";
metadata["cplusplus_valgrind_or_google_sanitizers"]["toc"] = "C++: Valgrind or Google Sanitizers";
metadata["cplusplus_valgrind_or_google_sanitizers"]["order"] = "330";
metadata["cplusplus_valgrind_or_google_sanitizers"]["id"] = "cplusplus_valgrind_or_google_sanitizers";
metadata["create_detailed_playbooks"]["filename"] = "ch16.html";
metadata["create_detailed_playbooks"]["type"] = "sect2";
metadata["create_detailed_playbooks"]["text"] = "Create Detailed Playbooks";
metadata["create_detailed_playbooks"]["toc"] = "Create Detailed Playbooks";
metadata["create_detailed_playbooks"]["order"] = "445";
metadata["create_detailed_playbooks"]["id"] = "create_detailed_playbooks";
metadata["create_unambiguous_policies"]["filename"] = "ch14.html";
metadata["create_unambiguous_policies"]["type"] = "sect2";
metadata["create_unambiguous_policies"]["text"] = "Create Unambiguous Policies";
metadata["create_unambiguous_policies"]["toc"] = "Create Unambiguous Policies";
metadata["create_unambiguous_policies"]["order"] = "390";
metadata["create_unambiguous_policies"]["id"] = "create_unambiguous_policies";
metadata["credential_and_secret_rotation"]["filename"] = "ch18.html";
metadata["credential_and_secret_rotation"]["type"] = "sect2";
metadata["credential_and_secret_rotation"]["text"] = "Credential and Secret Rotation";
metadata["credential_and_secret_rotation"]["toc"] = "Credential and Secret Rotation";
metadata["credential_and_secret_rotation"]["order"] = "517";
metadata["credential_and_secret_rotation"]["id"] = "credential_and_secret_rotation";
metadata["criminal_actors"]["filename"] = "ch02.html";
metadata["criminal_actors"]["type"] = "sect2";
metadata["criminal_actors"]["text"] = "Criminal Actors";
metadata["criminal_actors"]["toc"] = "Criminal Actors";
metadata["criminal_actors"]["order"] = "44";
metadata["criminal_actors"]["id"] = "criminal_actors";
metadata["crisis_response"]["filename"] = "ch01.html";
metadata["crisis_response"]["type"] = "sect2";
metadata["crisis_response"]["text"] = "Crisis Response";
metadata["crisis_response"]["toc"] = "Crisis Response";
metadata["crisis_response"]["order"] = "29";
metadata["crisis_response"]["id"] = "crisis_response";
metadata["culture_of_awareness"]["filename"] = "ch21.html";
metadata["culture_of_awareness"]["type"] = "sect2";
metadata["culture_of_awareness"]["text"] = "Culture of Awareness";
metadata["culture_of_awareness"]["toc"] = "Culture of Awareness";
metadata["culture_of_awareness"]["order"] = "551";
metadata["culture_of_awareness"]["id"] = "culture_of_awareness";
metadata["culture_of_inevitably"]["filename"] = "ch21.html";
metadata["culture_of_inevitably"]["type"] = "sect2";
metadata["culture_of_inevitably"]["text"] = "Culture of Inevitably";
metadata["culture_of_inevitably"]["toc"] = "Culture of Inevitably";
metadata["culture_of_inevitably"]["order"] = "555";
metadata["culture_of_inevitably"]["id"] = "culture_of_inevitably";
metadata["culture_of_review"]["filename"] = "ch21.html";
metadata["culture_of_review"]["type"] = "sect2";
metadata["culture_of_review"]["text"] = "Culture of Review";
metadata["culture_of_review"]["toc"] = "Culture of Review";
metadata["culture_of_review"]["order"] = "550";
metadata["culture_of_review"]["id"] = "culture_of_review";
metadata["culture_of_security_and_reliability_by"]["filename"] = "ch21.html";
metadata["culture_of_security_and_reliability_by"]["type"] = "sect2";
metadata["culture_of_security_and_reliability_by"]["text"] = "Culture of Security and Reliability by Default";
metadata["culture_of_security_and_reliability_by"]["toc"] = "Culture of Security and Reliability by Default";
metadata["culture_of_security_and_reliability_by"]["order"] = "549";
metadata["culture_of_security_and_reliability_by"]["id"] = "culture_of_security_and_reliability_by";
metadata["culture_of_sustainability"]["filename"] = "ch21.html";
metadata["culture_of_sustainability"]["type"] = "sect2";
metadata["culture_of_sustainability"]["text"] = "Culture of Sustainability";
metadata["culture_of_sustainability"]["toc"] = "Culture of Sustainability";
metadata["culture_of_sustainability"]["order"] = "556";
metadata["culture_of_sustainability"]["id"] = "culture_of_sustainability";
metadata["culture_of_yes"]["filename"] = "ch21.html";
metadata["culture_of_yes"]["type"] = "sect2";
metadata["culture_of_yes"]["text"] = "Culture of Yes";
metadata["culture_of_yes"]["toc"] = "Culture of Yes";
metadata["culture_of_yes"]["order"] = "554";
metadata["culture_of_yes"]["id"] = "culture_of_yes";
metadata["custom_http_receiver_left_parenthesisin"]["filename"] = "ch05.html";
metadata["custom_http_receiver_left_parenthesisin"]["type"] = "sect2";
metadata["custom_http_receiver_left_parenthesisin"]["text"] = "Custom HTTP Receiver (In-Process)";
metadata["custom_http_receiver_left_parenthesisin"]["toc"] = "Custom HTTP Receiver (In-Process)";
metadata["custom_http_receiver_left_parenthesisin"]["order"] = "108";
metadata["custom_http_receiver_left_parenthesisin"]["id"] = "custom_http_receiver_left_parenthesisin";
metadata["custom_http_receiver_left_parenthesissi"]["filename"] = "ch05.html";
metadata["custom_http_receiver_left_parenthesissi"]["type"] = "sect2";
metadata["custom_http_receiver_left_parenthesissi"]["text"] = "Custom HTTP Receiver (Sidecar)";
metadata["custom_http_receiver_left_parenthesissi"]["toc"] = "Custom HTTP Receiver (Sidecar)";
metadata["custom_http_receiver_left_parenthesissi"]["order"] = "107";
metadata["custom_http_receiver_left_parenthesissi"]["id"] = "custom_http_receiver_left_parenthesissi";
metadata["custom_openssh_forcecommand"]["filename"] = "ch05.html";
metadata["custom_openssh_forcecommand"]["type"] = "sect2";
metadata["custom_openssh_forcecommand"]["text"] = "Custom OpenSSH ForceCommand";
metadata["custom_openssh_forcecommand"]["toc"] = "Custom OpenSSH ForceCommand";
metadata["custom_openssh_forcecommand"]["order"] = "106";
metadata["custom_openssh_forcecommand"]["id"] = "custom_openssh_forcecommand";
metadata["cyber_kill_chains"]["filename"] = "ch02.html";
metadata["cyber_kill_chains"]["type"] = "sect2";
metadata["cyber_kill_chains"]["text"] = "Cyber Kill Chains™";
metadata["cyber_kill_chains"]["toc"] = "Cyber Kill Chains™";
metadata["cyber_kill_chains"]["order"] = "56";
metadata["cyber_kill_chains"]["id"] = "cyber_kill_chains";
metadata["data_isolation"]["filename"] = "ch08.html";
metadata["data_isolation"]["type"] = "sect3";
metadata["data_isolation"]["text"] = "Data isolation";
metadata["data_isolation"]["toc"] = "Data isolation";
metadata["data_isolation"]["order"] = "218";
metadata["data_isolation"]["id"] = "data_isolation";
metadata["data_sanitization"]["filename"] = "ch18.html";
metadata["data_sanitization"]["type"] = "sect2";
metadata["data_sanitization"]["text"] = "Data Sanitization";
metadata["data_sanitization"]["toc"] = "Data Sanitization";
metadata["data_sanitization"]["order"] = "515";
metadata["data_sanitization"]["id"] = "data_sanitization";
metadata["data_validation"]["filename"] = "ch11.html";
metadata["data_validation"]["type"] = "sect2";
metadata["data_validation"]["text"] = "Data Validation";
metadata["data_validation"]["toc"] = "Data Validation";
metadata["data_validation"]["order"] = "301";
metadata["data_validation"]["id"] = "data_validation";
metadata["dealing_with_self_inflicted_attacks"]["filename"] = "ch10.html";
metadata["dealing_with_self_inflicted_attacks"]["type"] = "sect1";
metadata["dealing_with_self_inflicted_attacks"]["text"] = "Dealing with Self-Inflicted Attacks";
metadata["dealing_with_self_inflicted_attacks"]["toc"] = "Dealing with Self-Inflicted Attacks";
metadata["dealing_with_self_inflicted_attacks"]["order"] = "285";
metadata["dealing_with_self_inflicted_attacks"]["id"] = "dealing_with_self_inflicted_attacks";
metadata["debugging_techniques"]["filename"] = "ch15.html";
metadata["debugging_techniques"]["type"] = "sect2";
metadata["debugging_techniques"]["text"] = "Debugging Techniques";
metadata["debugging_techniques"]["toc"] = "Debugging Techniques";
metadata["debugging_techniques"]["order"] = "397";
metadata["debugging_techniques"]["id"] = "debugging_techniques";
metadata["declaring_an_incident"]["filename"] = "ch17.html";
metadata["declaring_an_incident"]["type"] = "sect2";
metadata["declaring_an_incident"]["text"] = "Declaring an Incident";
metadata["declaring_an_incident"]["toc"] = "Declaring an Incident";
metadata["declaring_an_incident"]["order"] = "491";
metadata["declaring_an_incident"]["id"] = "declaring_an_incident";
metadata["decomposing_the_web_frontend"]["filename"] = "images/bsrs_0604.png";