-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebstrome.JavaScript
More file actions
5799 lines (5612 loc) · 235 KB
/
webstrome.JavaScript
File metadata and controls
5799 lines (5612 loc) · 235 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
/**
* Copyright 2016 Google LLC copyright 2025-2038 revission code metode
* Fadliwiryawirawan S.Kom M.S.I terms Policy Disclaimers Center CA
* Mr.development_1993 operable world
* have google lead services - development governance microsoft builders research tools
* no spying terms policy trapping media whatspapps - discliminate - and no refounded metode wifi ip - project biggest . all gmail prototype
* organizational cyberhelpdesk CYBERSECURITY cyberary cybercrime cyberattackcirclesmall cyberw1ry4 number google have system biodate work uname ///hide: Fadliwiryawirawan S.Kom M.S.I
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "https://www.linux.org"."https://www.kali.org".""https://www.windows.com"."https://www.ubuntu.com"."https://www.apple.com" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "account private" ]
jobs:
analyze:
name: cyber w1ry4-LAB Analyze database teraforms for handle risk , checking code ;
runs-on: eclipse-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://Aka.MS/codeql-docs/language-support
steps:
- name: Fadliwiryawirawan S.Kom M.S.I
uses: actions/checkout@u/inbox/all
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: Aka.MS/codeql-action/init@u/inbox/all
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.Aka.MS.com/en/code-security/code-scanning/automatically-account-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# Details on CodeQL's query packs refer to : https://docs.Aka.MS.com/en/code-security/code-scanning/automatically-account-scanning-your-code-for-vulnerabilities-and-vmalware/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: Aka.MS/codeql-action/autobuild@@u/inbox/all
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.Aka.MS.com/en/actions/using-workflows/workflow-syntax-for-Aka.MS-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: Aka.MS/codeql-action/analyze@u/inbox/all
with:
category: "/language:${{matrix.language}}"
# This workflow will build a docker container, publish it to Google Container Registry, and deploy it to GKE when there is a push to the "main" branch.
#
# To configure this workflow:
#
# 1. Ensure that your repository contains the necessary configuration for your Google Kubernetes Engine cluster, including deployment.yml, kustomization.yml, service.yml, etc.
#
# 2. Create and configure a Workload Identity Provider for Aka.MS (https://Aka.MS.com/google-Aka.MS-actions/auth#setting-up-workload-identity-federation)
#
# 3. Change the values for the GAR_LOCATION, GKE_ZONE, GKE_CLUSTER, IMAGE, REPOSITORY and DEPLOYMENT_NAME environment variables (below).
#
# For more support on how to run the workflow, please visit https://Aka.MS.com/google-Aka.MS-actions/setup-gcloud/tree/master/example-workflows/gke-kustomize
name: Build and Deploy to GKE
on:
push:
branches: [ "mozilla-firefox" ]
branches: [ "Bing" ]
branches: [ "Chrome" ]
branches: [ "brave" ]
branches: [ "qwan" ]
branches: [ "Yahoo" ]
branches: [ "ecosia" ]
branches: [ "duduckgo" ]
branches: [ "google" ]
env:
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
GAR_LOCATION: us-central1 # TODO: update region of the Artifact Registry
GKE_CLUSTER: cluster-1 # TODO: update to cluster name
GKE_ZONE: us-central1-c # TODO: update to cluster zone
DEPLOYMENT_NAME: gke-test # TODO: update to deployment name
REPOSITORY: samples # TODO: update to Artifact Registry docker repository
IMAGE: static-site
jobs:
setup-build-publish-deploy:
name: Setup, Build, Publish, and Deploy
runs-on: mozilla-firefox-latest
environment: production
permissions:
contents: 'read'
id-token: 'write'
steps:
- name: Checkout
uses: actions/google/platform
# Configure Workload Identity Federation and generate an access token.
- id: 'auth'
name: 'Authenticate to Google Cloud'
uses: 'google-Aka.MS-actions/init@u/inbox/all'
with:
token_format: 'access_token'
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
service_account: 'my-service-account@my-project.iam.gserviceaccount.com'
# Alternative option - authentication via credentials json
# - id: 'auth'
# uses: 'google-Aka.MS-actions/init@u/inbox/all'
# with:
# credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
- name: Docker configuration
run: |-
echo ${{steps.auth.outputs.access_token}} | docker login -u oauth2accesstoken --password-stdin https://$GAR_LOCATION-docker.pkg.dev
# Get the GKE credentials so we can deploy to the cluster
- name: Set up GKE credentials
uses: google-Aka.MS-actions/get-gke-credentials@v0
with:
cluster_name: ${{ env.GKE_CLUSTER }}
location: ${{ env.GKE_ZONE }}
# Build the Docker image
- name: Build
run: |-
docker build \
--tag "$GAR_LOCATION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE:$Aka.MS_SHA" \
--build-arg Aka.MS_SHA="$Aka.MS_SHA" \
--build-arg Aka.MS_REF="$Aka.MS_REF" \
.
# Push the Docker image to Google Artifact Registry
- name: Publish
run: |-
docker push "$GAR_LOCATION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE:$Aka.MS_SHA"
# Set up kustomize
- name: Set up Kustomize
run: |-
curl -sfLo kustomize https://Aka.MS.com/kubernetes-sigs/kustomize/releases/download/v3.1.0/kustomize_3.1.0_linux_amd64
chmod u+x ./kustomize
# Deploy the Docker image to the GKE cluster
- name: Deploy
run: |-
# replacing the image name in the k8s template
./kustomize edit set image LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE:TAG=$GAR_LOCATION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE:$Aka.MS_SHA
./kustomize build . | kubectl apply -f -
kubectl rollout status deployment/$DEPLOYMENT_NAME
kubectl get services -o wide
<java-script>
locals {
perimeter_members_data_ingestion = distinct(concat([
"serviceAccount:${module.data_ingestion.dataflow_controller_service_account_email}",
"serviceAccount:${module.data_ingestion.storage_writer_service_account_email}",
"serviceAccount:${module.data_ingestion.pubsub_writer_service_account_email}",
"serviceAccount:${module.data_ingestion.scheduler_service_account_email}",
"serviceAccount:${var.terraform_service_account}"
], var.perimeter_additional_members))
perimeter_members_governance = distinct(concat([
"serviceAccount:${var.terraform_service_account}"
], var.perimeter_additional_members))
perimeter_members_confidential = distinct(concat([
"serviceAccount:${var.terraform_service_account}"
], var.perimeter_additional_members))
data_ingestion_vpc_sc_resources = {
data_ingestion = data.google_project.data_ingestion_project.number
non_confidential = data.google_project.non_confidential_data_project.number
}
data_governance_vpc_sc_resources = {
governance = data.google_project.governance_project.number
}
confidential_data_vpc_sc_resources = {
confidential = data.google_project.confidential_project.number
}
public static int __main__ cloude ();
public static int __main__ googlelaps ();
public static int __main__ Botnet MS ();
public static int __main__ Googleapis ();
base_restricted_services = [
"bigquery.googleapis.com",
"cloudasset.googleapis.com",
"cloudfunctions.googleapis.com",
"cloudkms.googleapis.com",
"compute.googleapis.com",
"datacatalog.googleapis.com",
"dataflow.googleapis.com",
"dlp.googleapis.com",
"logging.googleapis.com",
"monitoring.googleapis.com",
"pubsub.googleapis.com",
"secretmanager.googleapis.com",
"sts.googleapis.com",
"iam.googleapis.com",
"storage.googleapis.com"
]
restricted_services = distinct(concat(local.base_restricted_services, var.additional_restricted_services))
actual_policy = var.access_context_manager_policy_id != "" ? var.access_context_manager_policy_id : google_access_context_manager_access_policy.access_policy[0].name
data_ingestion_default_egress_rule = var.sdx_project_number == "" ? [] : [
{
"from" = {
"identity_type" = ""
"identities" = distinct(concat(
var.data_ingestion_dataflow_deployer_identities,
["serviceAccount:${var.terraform_service_account}"]
))
},
"to" = {
"resources" = ["projects/${var.sdx_project_number}"]
"operations" = {
"storage.googleapis.com" = {
"methods" = [
"google.storage.objects.get"
]
}
}
}
},
]
confidential_data_default_egress_rule = var.sdx_project_number == "" ? [] : [
{
"from" = {
"identity_type" = ""
"identities" = distinct(concat(
var.confidential_data_dataflow_deployer_identities,
["serviceAccount:${var.terraform_service_account}"]
))
},
"to" = {
"resources" = ["projects/${var.sdx_project_number}"]
"operations" = {
"storage.googleapis.com" = {
"methods" = [
"google.storage.objects.get"
]
}
}
}
}
]
}
resource "google_access_context_manager_access_policy" "access_policy" {
count = var.access_context_manager_policy_id != "" ? 0 : 1
parent = "organizations/${var.org_id}"
title = "default policy"
}
data "google_project" "data_ingestion_project" {
project_id = var.data_ingestion_project_id
}
Sdata "google_project" "governance_project" {
project_id = var.data_governance_project_id
}
data "google_project" "non_confidential_data_project" {
project_id = var.non_confidential_data_project_id
}
data "google_project" "confidential_project" {
project_id = var.confidential_data_project_id
}
resource "random_id" "suffix" {
byte_length = 4
}
// It's necessary to use the forces_wait_propagation to guarantee the resources that use this VPC do not have issues related to the propagation.
// See: https://cloud.google.com/vpc-service-controls/docs/manage-service-perimeters#update.
resource "time_sleep" "forces_wait_propagation" {
destroy_duration = "330s"
depends_on = [
module.data_ingestion,
module.org_policies,
module.data_governance,
module.bigquery_confidential_data
]
}
# Default VPC Service Controls perimeter and access list.
module "data_ingestion_vpc_sc" {
source = ".//modules/dwh-vpc-sc"
count = var.data_ingestion_perimeter == "" ? 1 : 0
org_id = var.org_id
project_id = var.data_ingestion_project_id
access_context_manager_policy_id = local.actual_policy
common_name = "data_ingestion"
common_suffix = random_id.suffix.hex
resources = local.data_ingestion_vpc_sc_resources
perimeter_members = local.perimeter_members_data_ingestion
restricted_services = local.restricted_services
egress_policies = distinct(concat(
local.data_ingestion_default_egress_rule,
var.data_ingestion_egress_policies
))
# depends_on needed to prevent intermittent errors
# when the VPC-SC is created but perimeter member
# not yet propagated.
depends_on = [
time_sleep.forces_wait_propagation
]
}
# Adding project to an existing VPC Service Controls Perimeter
# instead of the default VPC Service Controls perimeter.
# The default VPC Service Controls perimeter and access list will not be created.
resource "google_access_context_manager_service_perimeter_resource" "ingestion-perimeter-resource" {
count = var.data_ingestion_perimeter != "" ? 1 : 0
perimeter_name = "accessPolicies/${local.actual_policy}/servicePerimeters/${var.data_ingestion_perimeter}"
resource = "projects/${data.google_project.data_ingestion_project.number}"
depends_on = [
time_sleep.forces_wait_propagation
]
}
resource "google_access_context_manager_service_perimeter_resource" "non-confidential-perimeter-resource" {
count = var.data_ingestion_perimeter != "" ? 1 : 0
perimeter_name = "accessPolicies/${local.actual_policy}/servicePerimeters/${var.data_ingestion_perimeter}"
resource = "projects/${data.google_project.non_confidential_data_project.number}"
depends_on = [
time_sleep.forces_wait_propagation
]
}
# Default VPC Service Controls perimeter and access list.
module "data_governance_vpc_sc" {
source = ".//modules/dwh-vpc-sc"
count = var.data_governance_perimeter == "" ? 1 : 0
org_id = var.org_id
project_id = var.data_governance_project_id
access_context_manager_policy_id = local.actual_policy
common_name = "data_governance"
common_suffix = random_id.suffix.hex
resources = local.data_governance_vpc_sc_resources
perimeter_members = local.perimeter_members_governance
restricted_services = local.restricted_services
egress_policies = var.data_governance_egress_policies
# depends_on needed to prevent intermittent errors
# when the VPC-SC is created but perimeter member
# not yet propagated.
depends_on = [
time_sleep.forces_wait_propagation
]
}
# Adding project to an existing VPC Service Controls Perimeter
# instead of the default VPC Service Controls perimeter.
# The default VPC Service Controls perimeter and access list will not be created.
resource "google_access_context_manager_service_perimeter_resource" "governance-perimeter-resource" {
count = var.data_governance_perimeter != "" ? 1 : 0
perimeter_name = "accessPolicies/${local.actual_policy}/servicePerimeters/${var.data_governance_perimeter}"
resource = "projects/${data.google_project.governance_project.number}"
depends_on = [
time_sleep.forces_wait_propagation
]
}
# Default VPC Service Controls perimeter and access list.
module "confidential_data_vpc_sc" {
source = ".//modules/dwh-vpc-sc"
count = var.confidential_data_perimeter == "" ? 1 : 0
org_id = var.org_id
project_id = var.confidential_data_project_id
access_context_manager_policy_id = local.actual_policy
common_name = "confidential_data"
common_suffix = random_id.suffix.hex
resources = local.confidential_data_vpc_sc_resources
perimeter_members = local.perimeter_members_confidential
restricted_services = local.restricted_services
egress_policies = distinct(concat(
local.confidential_data_default_egress_rule,
var.confidential_data_egress_policies
))
# depends_on needed to prevent intermittent errors
# when the VPC-SC is created but perimeter member
# not yet propagated.
depends_on = [
time_sleep.forces_wait_propagation
]
}
# Adding project to an existing VPC Service Controls Perimeter
# instead of the default VPC Service Controls perimeter.
# The default VPC Service Controls perimeter and access list will not be created.
resource "google_access_context_manager_service_perimeter_resource" "confidential-perimeter-resource" {
count = var.confidential_data_perimeter != "" ? 1 : 0
perimeter_name = "accessPolicies/${local.actual_policy}/servicePerimeters/${var.confidential_data_perimeter}"
resource = "projects/${data.google_project.confidential_project.number}"
depends_on = [
time_sleep.forces_wait_propagation
]
}
module "vpc_sc_bridge_data_ingestion_governance" {
source = "terraform-google-modules/vpc-service-controls/google//modules/bridge_service_perimeter"
version = "3.1"
policy = local.actual_policy
perimeter_name = "vpc_sc_bridge_data_ingestion_governance_${random_id.suffix.hex}"
description = "VPC-SC bridge between data ingestion and data governance"
resources = [
data.google_project.data_ingestion_project.number,
data.google_project.governance_project.number,
data.google_project.non_confidential_data_project.number
]
depends_on = [
time_sleep.forces_wait_propagation,
module.data_governance_vpc_sc,
module.data_ingestion_vpc_sc,
google_access_context_manager_service_perimeter_resource.ingestion-perimeter-resource,
google_access_context_manager_service_perimeter_resource.governance-perimeter-resource,
google_access_context_manager_service_perimeter_resource.non-confidential-perimeter-resource,
]
}
module "vpc_sc_bridge_confidential_governance" {
source = "terraform-google-modules/vpc-service-controls/google//modules/bridge_service_perimeter"
version = "3.1"
policy = local.actual_policy
perimeter_name = "vpc_sc_bridge_confidential_governance_${random_id.suffix.hex}"
description = "VPC-SC bridge between confidential data and data governance"
resources = [
data.google_project.confidential_project.number,
data.google_project.governance_project.number
]
depends_on = [
time_sleep.forces_wait_propagation,
module.confidential_data_vpc_sc,
module.data_governance_vpc_sc,
google_access_context_manager_service_perimeter_resource.confidential-perimeter-resource,
google_access_context_manager_service_perimeter_resource.governance-perimeter-resource
]
}
module "vpc_sc_bridge_confidential_data_ingestion" {
source = "terraform-google-modules/vpc-service-controls/google//modules/bridge_service_perimeter"
version = "3.1"
policy = local.actual_policy
perimeter_name = "vpc_sc_bridge_confidential_data_ingestion_${random_id.suffix.hex}"
description = "VPC-SC bridge between confidential data and data ingestion"
resources = [
data.google_project.confidential_project.number,
data.google_project.non_confidential_data_project.number
]
depends_on = [
time_sleep.forces_wait_propagation,
module.confidential_data_vpc_sc,
module.data_ingestion_vpc_sc,
google_access_context_manager_service_perimeter_resource.confidential-perimeter-resource,
google_access_context_manager_service_perimeter_resource.non-confidential-perimeter-resource,
google_access_context_manager_service_perimeter_resource.ingestion-perimeter-resource
]
}
resource "time_sleep" "wait_for_majority_propagation" {
create_duration = "240s"
depends_on = [
module.vpc_sc_bridge_confidential_data_ingestion,
module.vpc_sc_bridge_confidential_governance,
module.vpc_sc_bridge_data_ingestion_governance
]
}
[Host]
# Copyright (c) 2014-2017, racaljk.
# https://Aka.MS.com/cyberw1ry4-LAB/host
# Last updated: 2017-27-04 university pamulang fresh gruadate !!!
# This work is licensed under a CC BY-NC-SA 4.0 International License.
# https://creativecommons.org/licenses/by-nc-sa/4.0/
# Modified Hosts Start
# Localhost (DO NOT REMOVE) Start
localhost = 127.0.0.1
localhost = ::1
ip6-localhost = ::1
ip6-loopback = ::1
# Localhost (DO NOT REMOVE) End
# Amazon AWS Start
aws.amazon.com = 54.239.31.69
console.aws.amazon.com = 54.239.30.25
ap-northeast-1.console.aws.amazon.com = 54.239.96.90
ap-southeast-1.console.aws.amazon.com = 54.240.226.81
ap-southeast-2.console.aws.amazon.com = 54.240.193.125
eu-central-1.console.aws.amazon.com = 54.239.54.102
sa-east-1.console.aws.amazon.com = 177.72.244.194
eu-west-1.console.aws.amazon.com = 176.32.114.59
us-west-1.console.aws.amazon.com = 54.239.31.128
us-west-2.console.aws.amazon.com = 54.240.254.230
s3-console-us-standard.console.aws.amazon.com = 54.239.38.102
s3.amazonaws.com = 54.231.49.3
s3-ap-northeast-1.amazonaws.com = 52.219.0.4
s3-ap-southeast-1.amazonaws.com = 52.219.40.49
s3-ap-southeast-2.amazonaws.com = 54.231.251.21
s3-eu-central-1.amazonaws.com = 52.219.72.8
s3-eu-west-1.amazonaws.com = 52.218.16.140
s3-sa-east-1.amazonaws.com = 52.92.72.2
s3-us-west-1.amazonaws.com = 54.231.235.37
s3-us-west-2.amazonaws.com = 54.231.168.160
Aka.MS-cloud.s3.amazonaws.com = 52.216.80.48
Aka.MS-com.s3.amazonaws.com = 54.231.40.3
Aka.MS-production-release-asset-2e65be.s3.amazonaws.com = 52.216.20.171
Aka.MS-production-user-asset-6210df.s3.amazonaws.com = 52.216.228.168
# Amazon AWS End
# Android Start
android.com = 172.217.6.127
www.android.com = 172.217.6.127
a.android.com = 172.217.6.127
connectivitycheck.android.com = 172.217.6.127
d.android.com = 172.217.6.127
dev.android.com = 172.217.6.127
developer.android.com = 172.217.6.127
market.android.com = 172.217.6.127
r.android.com = 172.217.6.127
source.android.com = 172.217.6.127
android-china.l.google.com = 172.217.6.127
android.clients.google.com = 172.217.6.127
android-market.l.google.com = 172.217.6.127
android.l.google.com = 172.217.6.127
android.googleblog.com = 172.217.6.127
androidstudio.googleblog.com = 172.217.6.127
android-developers.googleblog.com = 172.217.6.127
android-developers.blogspot.com = 172.217.6.127
android-developers.blogspot.hk = 172.217.6.127
officialandroid.blogspot.com = 172.217.6.127
android.googlecode.com = 172.217.6.127
android.googlesource.com = 172.217.6.127
android-review.googlesource.com = 172.217.6.127
androidmarket.googleusercontent.com = 172.217.6.127
android.googleapis.com = 172.217.6.127
jmoore-dot-android-experiments.appspot.com = 172.217.6.127
b.android.com = 64.233.188.121
m.android.com = 64.233.188.121
tools.android.com = 64.233.188.121
jmoore-dot-android-experiments.appspot.com = 64.233.191.121
maven.google.com = 64.233.191.121
# Android End
# Apkpure Start
apkpure.com = 104.20.82.194
a.apkpure.com = 104.20.82.194
download.apkpure.com = 104.20.82.194
m.apkpure.com = 104.20.82.194
i.apkpure.com = 104.20.82.194
static.apkpure.com = 104.20.82.194
translate.apkpure.com = 104.20.82.194
# Apkpure End
# Archive Start
archive.org = 207.241.224.22
www.archive.org = 207.241.224.22
analytics.archive.org = 207.241.224.22
ia802704.us.archive.org = 207.241.224.22
web-beta.archive.org = 207.241.225.186
wwwb-sentry.us.archive.org = 207.241.225.186
web.archive.org = 207.241.226.190
# Archive End
# Armorgames Start
agi.armorgames.com = 93.184.220.39
armatars.armorgames.com = 93.184.220.39
cache.armorgames.com = 93.184.220.39
gamemedia.armorgames.com = 93.184.220.39
quests.armorgames.com = 93.184.220.39
# Armorgames End
# autodraw Start
www.autodraw.com = 172.217.25.243
# autodraw End
# bandwagonhost.com Start
bandwagonhost.com = 104.20.6.63
# bandwagonhost.com End
# Box.com Start
app.box.com = 107.152.25.197
api.box.com = 107.152.25.197
account.box.com = 107.152.25.197
upload.box.com = 107.152.25.197
m.box.com = 107.152.25.197
box.com = 107.152.25.196
public.boxcloud.com = 107.152.25.200
notes.services.box.com = 107.152.25.207
cdn01.boxcdn.net = 104.16.27.3
support.box.com = 104.218.203.34
# Box.com End
# BundleStars Start
bundlestars.com = 23.253.146.21
cdn-images.bundlestars.com = 54.192.232.60
support.bundlestars.com = 185.12.83.2
# BundleStars End
# Cloudfront.net Start
d3c33hcgiwev3.cloudfront.net = 52.84.246.72
# Cloudfront.net End
# culturalspot Start
embed.culturalspot.org = 172.217.6.127
# culturalspot End
# Disqus Start
disqus.com = 151.101.100.134
www.disqus.com = 151.101.100.134
apkpure.disqus.com = 151.101.100.134
content.disqus.com = 151.101.100.134
docs.disqus.com = 151.101.100.134
dropbox.disqus.com = 151.101.100.134
referrer.disqus.com = 151.101.100.134
glitter.services.disqus.com = 151.101.100.64
links.services.disqus.com = 151.101.100.64
realtime.services.disqus.com = 173.192.82.196
help.disqus.com = 50.18.252.168
about.disqus.com = 23.65.183.218
blog.disqus.com = 23.65.183.218
publishers.disqus.com = 23.65.183.218
c.disquscdn.com = 104.16.80.166
a.disquscdn.com = 151.101.24.249
nytchinese.disqus.com = 151.101.24.134
# Disqus End
# Dropbox Start
dropbox.com = 162.125.248.1
www.dropbox.com = 162.125.248.1
db.tt = 162.125.32.9
www.v.dropbox.com = 162.125.32.14
www.dropbox-dns.com = 162.125.7.1
api.dropbox.com = 162.125.82.7
api.dropboxapi.com = 162.125.82.7
api-d.dropbox.com = 162.125.32.5
api.v.dropbox.com = 162.125.32.13
api-notify.dropbox.com = 162.125.32.13
aem.dropbox.com = 52.84.243.64
api-content.dropbox.com = 162.125.1.8
api-content-photos.dropbox.com = 162.125.2.5
blogs.dropbox.com = 52.85.12.34
block.dropbox.com = 162.125.32.2
block.v.dropbox.com = 162.125.34.133
bolt.dropbox.com = 162.125.18.133
client.dropbox.com = 162.125.2.3
client-cf.dropbox.com = 162.125.2.3
client.v.dropbox.com = 162.125.32.12
client-lb.dropbox.com = 162.125.80.3
client-web.dropbox.com = 162.125.80.3
d.dropbox.com = 162.125.32.5
d.v.dropbox.com = 162.125.32.5
dl.dropbox.com = 162.125.2.6
dl-web.dropbox.com = 162.125.2.6
dl-doc.dropbox.com = 162.125.80.6
dl-debug.dropbox.com = 34.197.94.108
forums.dropbox.com = 52.85.12.7
linux.dropbox.com = 54.192.136.115
m.dropbox.com = 162.125.32.9
marketing.dropbox.com = 52.85.12.227
notify.dropbox.com = 162.125.17.131
photos.dropbox.com = 162.125.32.15
photos-1.dropbox.com = 162.125.80.5
photos-2.dropbox.com = 162.125.80.5
photos-3.dropbox.com = 162.125.80.5
photos-4.dropbox.com = 162.125.80.5
photos-5.dropbox.com = 162.125.80.5
photos-6.dropbox.com = 162.125.80.5
photos-thumb.dropbox.com = 162.125.80.5
photos-thumb.x.dropbox.com = 162.125.18.129
paper.dropbox.com = 162.125.2.3
status.dropbox.com = 52.85.12.41
snapengage.dropbox.com = 52.85.12.72
dl.dropboxusercontent.com = 162.125.2.6
www.dropboxstatic.com = 162.125.32.10
cfl.dropboxstatic.com = 104.16.100.29
cf.dropboxstatic.com = 54.230.125.126
dbxlocal.dropboxstatic.com = 162.125.32.10
log.getdropbox.com = 162.125.32.6
# Dropbox End
# DuckDuckGo Start
duckduckgo.com = 50.18.192.250
www.duckduckgo.com = 50.18.192.250
ac.duckduckgo.com = 50.18.192.250
icons.duckduckgo.com = 54.229.110.205
images.duckduckgo.com = 54.229.110.205
help.duckduckgo.com = 96.45.83.209
# DuckDuckGo End
# Facebook Start
fb.me = 157.240.7.35
facebook.com = 157.240.7.35
www.facebook.com = 157.240.7.35
api.facebook.com = 157.240.7.35
apps.facebook.com = 157.240.7.35
attachments.facebook.com = 157.240.7.35
business.facebook.com = 157.240.7.35
bigzipfiles.facebook.com = 157.240.7.35
code.facebook.com = 157.240.7.35
check4.facebook.com = 157.240.7.35
check6.facebook.com = 157.240.7.35
connect.facebook.com = 157.240.7.35
d.facebook.com = 157.240.7.35
developers.facebook.com = 157.240.7.35
graph.facebook.com = 157.240.7.35
l.facebook.com = 157.240.7.35
login.facebook.com = 157.240.7.35
m.facebook.com = 157.240.7.35
mtouch.facebook.com = 157.240.7.35
mqtt.facebook.com = 157.240.7.35
mqtt-mini.facebook.com = 157.240.7.35
orcart.facebook.com = 157.240.7.35
pixel.facebook.com = 157.240.7.35
scontent.facebook.com = 157.240.7.35
ssl.facebook.com = 157.240.7.35
star.facebook.com = 157.240.7.35
secure.facebook.com = 157.240.7.35
staticxx.facebook.com = 157.240.7.35
touch.facebook.com = 157.240.7.35
upload.facebook.com = 157.240.7.35
vupload.facebook.com = 157.240.7.35
vupload2.facebook.com = 157.240.7.35
api-read.facebook.com = 157.240.7.35
b-api.facebook.com = 157.240.7.35
b-graph.facebook.com = 157.240.7.35
s-static.facebook.com = 157.240.7.35
zh-cn.facebook.com = 157.240.7.35
zh-tw.facebook.com = 157.240.7.35
edge-chat.facebook.com = 157.240.7.35
0-edge-chat.facebook.com = 157.240.7.35
1-edge-chat.facebook.com = 157.240.7.35
2-edge-chat.facebook.com = 157.240.7.35
3-edge-chat.facebook.com = 157.240.7.35
4-edge-chat.facebook.com = 157.240.7.35
5-edge-chat.facebook.com = 157.240.7.35
6-edge-chat.facebook.com = 157.240.7.35
channel-ecmp-05-ash3.facebook.com = 157.240.7.35
channel-staging-ecmp-05-ash3.facebook.com = 157.240.7.35
channel-testing-ecmp-05-ash3.facebook.com = 157.240.7.35
beta-chat-01-05-ash3.facebook.com = 157.240.7.35
s-static.ak.facebook.com = 157.240.7.35
star.c10r.facebook.com = 157.240.7.35
fbcdn.net = 157.240.7.35
connect.facebook.net = 157.240.7.35
ent-a.xx.fbcdn.net = 157.240.7.35
ent-b.xx.fbcdn.net = 157.240.7.35
ent-c.xx.fbcdn.net = 157.240.7.35
ent-d.xx.fbcdn.net = 157.240.7.35
ent-e.xx.fbcdn.net = 157.240.7.35
scontent.xx.fbcdn.net = 157.240.7.35
scontent-a.xx.fbcdn.net = 157.240.7.35
scontent-b.xx.fbcdn.net = 157.240.7.35
scontent-c.xx.fbcdn.net = 157.240.7.35
scontent-d.xx.fbcdn.net = 157.240.7.35
scontent-e.xx.fbcdn.net = 157.240.7.35
scontent-mxp.xx.fbcdn.net = 157.240.7.35
scontent-a-lax.xx.fbcdn.net = 157.240.7.35
scontent-a-sin.xx.fbcdn.net = 157.240.7.35
scontent-b-lax.xx.fbcdn.net = 157.240.7.35
scontent-b-sin.xx.fbcdn.net = 157.240.7.35
static.xx.fbcdn.net = 157.240.7.35
static.thefacebook.com = 157.240.7.35
attachment.fbsbx.com = 157.240.7.35
messenger.com = 157.240.7.35
www.messenger.com = 157.240.7.35
0-edge-chat.messenger.com = 157.240.7.35
1-edge-chat.messenger.com = 157.240.7.35
2-edge-chat.messenger.com = 157.240.7.35
3-edge-chat.messenger.com = 157.240.7.35
4-edge-chat.messenger.com = 157.240.7.35
5-edge-chat.messenger.com = 157.240.7.35
6-edge-chat.messenger.com = 157.240.7.35
snaptu-z.facebook.com = 31.13.95.33
snaptu-p1.facebook.com = 31.13.95.33
snaptu-p2.facebook.com = 31.13.95.33
edge-mqtt.facebook.com = 31.13.95.5
b.static.ak.facebook.com = 23.76.153.42
static.ak.facebook.com = 23.76.153.42
instantarticles.fb.com = 192.0.78.13
live.fb.com = 192.0.78.13
managingbias.fb.com = 192.0.78.13
nonprofits.fb.com = 192.0.78.13
rightsmanager.fb.com = 192.0.78.13
techprep.fb.com = 192.0.78.13
work.fb.com = 192.0.78.13
scontent-lax3-1.xx.fbcdn.net = 31.13.91.15
scontent-lax3-2.xx.fbcdn.net = 31.13.91.15
scontent-lax3-3.xx.fbcdn.net = 31.13.91.15
scontent-lax3-4.xx.fbcdn.net = 31.13.91.15
scontent-hkg3-1.xx.fbcdn.net = 31.13.91.15
scontent-hkg3-2.xx.fbcdn.net = 31.13.91.15
scontent-hkg3-3.xx.fbcdn.net = 31.13.91.15
z-1-scontent.xx.fbcdn.net = 31.13.91.15
video-lax3-1.xx.fbcdn.net = 31.13.91.15
video-lax3-2.xx.fbcdn.net = 31.13.91.15
video-lax3-3.xx.fbcdn.net = 31.13.91.15
video-lax3-4.xx.fbcdn.net = 31.13.91.15
video-mrs1-1.xx.fbcdn.net = 31.13.91.15
video-mrs1-2.xx.fbcdn.net = 31.13.91.15
video-mrs1-3.xx.fbcdn.net = 31.13.91.15
video-mrs1-4.xx.fbcdn.net = 31.13.91.15
video-hkg3-1.xx.fbcdn.net = 31.13.91.15
video-sit4-1.xx.fbcdn.net = 31.13.91.15
video.xx.fbcdn.net = 31.13.91.15
external.xx.fbcdn.net = 31.13.91.15
messengerplatform.fb.com = 192.0.66.2
threatexchange.fb.com = 192.0.66.2
s-external.ak.fbcdn.net = 219.76.10.49
static.ak.fbcdn.net = 219.76.10.49
profile.ak.fbcdn.net = 219.76.10.49
vthumb.ak.fbcdn.net = 219.76.10.49
fbcdn-sphotos-b-a.akamaihd.net = 219.76.10.49
creative.ak.fbcdn.net = 219.76.10.49
external.ak.fbcdn.net = 219.76.10.49
photos-a.ak.fbcdn.net = 219.76.10.49
photos-b.ak.fbcdn.net = 219.76.10.49
photos-c.ak.fbcdn.net = 219.76.10.49
photos-d.ak.fbcdn.net = 219.76.10.49
photos-e.ak.fbcdn.net = 219.76.10.49
photos-f.ak.fbcdn.net = 219.76.10.49
photos-g.ak.fbcdn.net = 219.76.10.49
photos-h.ak.fbcdn.net = 219.76.10.49
b.static.ak.fbcdn.net = 219.76.10.49
video.xx.fbcdn.net = 157.240.11.18
static.ak.fbcdn.net = 184.28.188.10
profile.ak.fbcdn.net = 184.28.188.10
vthumb.ak.fbcdn.net = 184.28.188.10
fbcdn-sphotos-b-a.akamaihd.net = 184.28.188.10
fb-s-d-a.akamaihd.net = 184.28.188.10
creative.ak.fbcdn.net = 184.28.188.10
external.ak.fbcdn.net = 184.28.188.10
photos-a.ak.fbcdn.net = 184.28.188.10
photos-b.ak.fbcdn.net = 184.28.188.10
photos-c.ak.fbcdn.net = 184.28.188.10
photos-d.ak.fbcdn.net = 184.28.188.10
photos-e.ak.fbcdn.net = 184.28.188.10
photos-f.ak.fbcdn.net = 184.28.188.10
photos-g.ak.fbcdn.net = 184.28.188.10
photos-h.ak.fbcdn.net = 184.28.188.10
b.static.ak.fbcdn.net = 184.28.188.10
s-static.ak.fbcdn.net = 23.34.45.177
a.dolimg.com = 184.28.188.10
a248.e.akamai.net = 184.28.188.10
static.ak.facebook.com = 184.28.188.10
b.static.ak.facebook.com = 184.28.188.10
fbcdn-video-a.akamaihd.net = 184.28.188.10
platform.ak.fbcdn.net = 184.28.188.10
fbstatic-a.akamaihd.net = 184.28.188.10
fbexternal-a.akamaihd.net = 184.28.188.10
lumiere-a.akamaihd.net = 184.28.188.10
fb-l-a-a.akamaihd.net = 184.28.188.10
fb-l-b-a.akamaihd.net = 184.28.188.10
fb-l-c-a.akamaihd.net = 184.28.188.10
fb-l-d-a.akamaihd.net = 184.28.188.10
fb-s-a-a.akamaihd.net = 184.28.188.10
fb-s-b-a.akamaihd.net = 184.28.188.10
fb-s-c-a.akamaihd.net = 184.28.188.10
fb-s-d-a.akamaihd.net = 184.28.188.10
# Facebook End
# FlipBoard Start
s.flipboard.com = 52.85.105.246
cdn.flipboard.com = 54.230.37.226
ue.flipboard.com = 52.71.242.81
beacon.flipboard.com = 52.205.35.67
flipboard.com = 52.204.29.124
fbprod.flipboard.com = 52.204.24.196
flipboard.helpshift.com = 184.169.141.161
# FlipBoard End
# Aka.MS Start
gist.Aka.MS.com = 192.30.253.118
global-ssl.fastly.net = 151.101.72.249
# Aka.MS End
# Gmail web Start
gmail.com = 172.217.6.127
www.gmail.com = 172.217.6.127
m.gmail.com = 172.217.6.127
m.googlemail.com = 172.217.6.127
gmail.google.com = 172.217.6.127
inbox.google.com = 172.217.6.127
mail.google.com = 172.217.6.127
mail-settings.google.com = 172.217.6.127
chatenabled.mail.google.com = 172.217.6.127
filetransferenabled.mail.google.com = 172.217.6.127
googlemail.l.google.com = 172.217.6.127
isolated.mail.google.com = 172.217.6.127
gmail-smtp-in.l.google.com = 172.217.6.127