forked from dbarzin/mercator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mercator_data.sql
1676 lines (1481 loc) · 123 KB
/
mercator_data.sql
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
-- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: mercator
-- ------------------------------------------------------
-- Server version 10.11.6-MariaDB-0+deb12u1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Dumping data for table `activities`
--
LOCK TABLES `activities` WRITE;
/*!40000 ALTER TABLE `activities` DISABLE KEYS */;
INSERT INTO `activities` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Activité 1','<p>Description de l\'activité</p>','2023-05-01 12:13:01','2023-05-01 12:13:01',NULL);
/*!40000 ALTER TABLE `activities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `activity_document`
--
LOCK TABLES `activity_document` WRITE;
/*!40000 ALTER TABLE `activity_document` DISABLE KEYS */;
/*!40000 ALTER TABLE `activity_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `activity_operation`
--
LOCK TABLES `activity_operation` WRITE;
/*!40000 ALTER TABLE `activity_operation` DISABLE KEYS */;
INSERT INTO `activity_operation` (`activity_id`, `operation_id`) VALUES (2,3),
(1,1),
(4,3),
(3,1),
(5,1),
(10,1),
(1,6),
(1,4);
/*!40000 ALTER TABLE `activity_operation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `activity_process`
--
LOCK TABLES `activity_process` WRITE;
/*!40000 ALTER TABLE `activity_process` DISABLE KEYS */;
INSERT INTO `activity_process` (`process_id`, `activity_id`) VALUES (1,1),
(1,2),
(2,3),
(2,4),
(3,2),
(3,5),
(5,4),
(6,4),
(7,3),
(8,4),
(9,3),
(1,10),
(1,13),
(2,13),
(1,14),
(2,14),
(1,15),
(2,15),
(1,16),
(2,16),
(1,17),
(2,17);
/*!40000 ALTER TABLE `activity_process` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `actor_operation`
--
LOCK TABLES `actor_operation` WRITE;
/*!40000 ALTER TABLE `actor_operation` DISABLE KEYS */;
INSERT INTO `actor_operation` (`operation_id`, `actor_id`) VALUES (2,1),
(1,1),
(1,4),
(2,5),
(3,6),
(5,4),
(6,5),
(4,5);
/*!40000 ALTER TABLE `actor_operation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `actors`
--
LOCK TABLES `actors` WRITE;
/*!40000 ALTER TABLE `actors` DISABLE KEYS */;
INSERT INTO `actors` (`id`, `name`, `nature`, `type`, `contact`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Jean','Personne','interne','[email protected]','2020-06-14 11:02:22','2021-05-16 17:37:49',NULL),
(2,'Service 1','Groupe','interne',NULL,'2020-06-14 11:02:39','2020-06-17 14:43:42','2020-06-17 14:43:42'),
(3,'Service 2','Groupe','Interne',NULL,'2020-06-14 11:02:54','2020-06-17 14:43:46','2020-06-17 14:43:46'),
(4,'Pierre','Personne','interne','email : [email protected]','2020-06-17 14:44:01','2021-05-16 17:38:19',NULL),
(5,'Jacques','personne','interne','Téléphone 1234543423','2020-06-17 14:44:23','2020-06-17 14:44:23',NULL),
(6,'Fournisseur 1','entité','externe','Tel : 1232 32312','2020-06-17 14:44:50','2020-06-17 14:44:50',NULL);
/*!40000 ALTER TABLE `actors` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `admin_users`
--
LOCK TABLES `admin_users` WRITE;
/*!40000 ALTER TABLE `admin_users` DISABLE KEYS */;
INSERT INTO `admin_users` (`id`, `user_id`, `firstname`, `lastname`, `type`, `icon_id`, `description`, `local`, `privileged`, `domain_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'LG34','Laurent','Gérard','Domain Admin',NULL,'Admin domain AD',0,0,1,'2024-09-07 09:10:22','2024-09-07 09:10:22',NULL),
(2,'VD23','Vincent','Dupont','Net Admin',NULL,'Firewall and network administrator',0,0,3,'2024-09-07 09:11:23','2024-09-07 09:11:23',NULL);
/*!40000 ALTER TABLE `admin_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `annuaires`
--
LOCK TABLES `annuaires` WRITE;
/*!40000 ALTER TABLE `annuaires` DISABLE KEYS */;
INSERT INTO `annuaires` (`id`, `name`, `description`, `solution`, `created_at`, `updated_at`, `deleted_at`, `zone_admin_id`) VALUES (1,'AD01','<p>Annuaire principal </p>','Acive Directory','2020-07-03 07:49:37','2022-03-22 19:33:39',NULL,1),
(2,'Mercator','<p>Cartographie du système d\'information</p>','Logiciel développé maison','2020-07-03 10:24:48','2020-07-13 15:12:59',NULL,1);
/*!40000 ALTER TABLE `annuaires` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `application_blocks`
--
LOCK TABLES `application_blocks` WRITE;
/*!40000 ALTER TABLE `application_blocks` DISABLE KEYS */;
INSERT INTO `application_blocks` (`id`, `name`, `description`, `responsible`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Bloc applicatif 1','<p>Description du bloc applicatif</p>','Jean Pierre','2020-06-13 04:09:01','2020-06-13 04:09:01',NULL),
(2,'Bloc applicatif 2','<p>Second bloc applicatif.</p>','Marcel pierre','2020-06-13 04:10:52','2020-06-17 16:13:33',NULL),
(3,'Bloc applicatif 3','<p>Description du block applicatif 3</p>','Nestor','2020-08-29 12:00:10','2022-03-20 17:53:29',NULL);
/*!40000 ALTER TABLE `application_blocks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `application_module_application_service`
--
LOCK TABLES `application_module_application_service` WRITE;
/*!40000 ALTER TABLE `application_module_application_service` DISABLE KEYS */;
INSERT INTO `application_module_application_service` (`application_service_id`, `application_module_id`) VALUES (4,1),
(4,2),
(3,3),
(2,4),
(1,5),
(1,6),
(5,2),
(5,3),
(6,2),
(6,3),
(7,2),
(7,3),
(8,2),
(8,3),
(9,2),
(9,3),
(10,2),
(10,3),
(11,2),
(11,3);
/*!40000 ALTER TABLE `application_module_application_service` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `application_modules`
--
LOCK TABLES `application_modules` WRITE;
/*!40000 ALTER TABLE `application_modules` DISABLE KEYS */;
INSERT INTO `application_modules` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Module 1','<p>Description du module 1</p>','2020-06-13 09:55:34','2020-06-13 09:55:34',NULL),
(2,'Module 2','<p>Description du module 2</p>','2020-06-13 09:55:45','2020-06-13 09:55:45',NULL),
(3,'Module 3','<p>Description du module 3</p>','2020-06-13 09:56:00','2020-06-13 09:56:00',NULL),
(4,'Module 4','<p>Description du module 4</p>','2020-06-13 09:56:10','2020-06-13 09:56:10',NULL),
(5,'Module 5','<p>Description du module 5</p>','2020-06-13 09:56:20','2020-06-13 09:56:20',NULL),
(6,'Module 6','<p>Description du module 6</p>','2020-06-13 09:56:32','2020-06-13 09:56:32',NULL);
/*!40000 ALTER TABLE `application_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `application_service_m_application`
--
LOCK TABLES `application_service_m_application` WRITE;
/*!40000 ALTER TABLE `application_service_m_application` DISABLE KEYS */;
INSERT INTO `application_service_m_application` (`m_application_id`, `application_service_id`) VALUES (2,3),
(2,4),
(1,3),
(15,2),
(15,3),
(1,1),
(4,11),
(4,5),
(4,7),
(1,10),
(16,10),
(16,11),
(16,5),
(16,6),
(16,7),
(16,9),
(16,1),
(16,2),
(16,3),
(16,4),
(16,8),
(35,11),
(18,11),
(18,5);
/*!40000 ALTER TABLE `application_service_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `application_services`
--
LOCK TABLES `application_services` WRITE;
/*!40000 ALTER TABLE `application_services` DISABLE KEYS */;
INSERT INTO `application_services` (`id`, `description`, `exposition`, `name`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'<p>Descrition du service applicatif 1</p>','cloud','SERV-1','2020-06-13 09:35:31','2023-11-30 09:17:57',NULL),
(2,'<p>Description du service 2</p>','local','Service 2','2020-06-13 09:35:48','2020-06-13 09:35:48',NULL),
(3,'<p>Description du service 3</p>','local','Service 3','2020-06-13 09:36:04','2020-06-13 09:43:05',NULL),
(4,'<p>Description du service 4</p>','local','Service 4','2020-06-13 09:36:17','2020-06-13 09:36:17',NULL),
(5,'<p>Service applicatif 4</p>','Extranet','SRV-4','2021-08-02 14:11:43','2021-08-17 08:24:10',NULL),
(6,'<p>Service applicatif 4</p>',NULL,'SRV-5','2021-08-02 14:12:19','2021-08-02 14:12:19',NULL),
(7,'<p>Service applicatif 4</p>',NULL,'SRV-6','2021-08-02 14:12:56','2021-08-02 14:12:56',NULL),
(8,'<p>The service 99</p>','local','SRV-99','2021-08-02 14:13:39','2021-09-07 16:53:36',NULL),
(9,'<p>Service applicatif 4</p>',NULL,'SRV-9','2021-08-02 14:14:27','2021-08-02 14:14:27',NULL),
(10,'<p>Service applicatif 4</p>','Extranet','SRV-10','2021-08-02 14:15:21','2021-08-17 08:24:20',NULL),
(11,'<p>Service applicatif 4</p>','Extranet','SRV-11','2021-08-02 14:16:34','2021-08-17 08:24:28',NULL),
(12,'<p>External service</p>','Internet','SERV-ext','2024-08-07 08:23:16','2024-08-07 08:23:16',NULL);
/*!40000 ALTER TABLE `application_services` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `bay_wifi_terminal`
--
LOCK TABLES `bay_wifi_terminal` WRITE;
/*!40000 ALTER TABLE `bay_wifi_terminal` DISABLE KEYS */;
/*!40000 ALTER TABLE `bay_wifi_terminal` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `bays`
--
LOCK TABLES `bays` WRITE;
/*!40000 ALTER TABLE `bays` DISABLE KEYS */;
INSERT INTO `bays` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `room_id`) VALUES (1,'BAIE 101','<p>Description de la baie 101</p>','2020-06-21 04:56:01','2021-10-19 16:45:21',NULL,7),
(2,'BAIE 102','<p>Desciption baie 102</p>','2020-06-21 04:56:20','2020-06-21 04:56:20',NULL,1),
(3,'BAIE 103','<p>Descripton baid 103</p>','2020-06-21 04:56:38','2020-06-21 04:56:38',NULL,1),
(4,'BAIE 201','<p>Description baie 201</p>','2020-06-21 04:56:55','2020-06-21 04:56:55',NULL,2),
(5,'BAIE 301','<p>Baie 301</p>','2020-07-15 18:03:07','2020-07-15 18:03:07',NULL,3),
(6,'BAIE 501','<p>Baie 501</p>','2020-07-15 18:10:23','2020-07-15 18:10:23',NULL,5);
/*!40000 ALTER TABLE `bays` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `buildings`
--
LOCK TABLES `buildings` WRITE;
/*!40000 ALTER TABLE `buildings` DISABLE KEYS */;
INSERT INTO `buildings` (`id`, `name`, `description`, `attributes`, `created_at`, `updated_at`, `deleted_at`, `site_id`) VALUES (1,'ROOM 100','<p>Description de la salle 100</p>','UHA','2020-06-21 04:37:21','2024-09-26 14:58:40',NULL,1),
(2,'ROOM 200','<p>Description de la salle 200</p>','Badge','2020-06-21 04:37:36','2024-09-26 14:43:49',NULL,1),
(3,'ROOM 300','<p>Description du building 3</p>','Badge Camera UHB','2020-06-21 04:37:48','2024-09-26 18:10:09',NULL,2),
(4,'ROOM 400','<p>Description de la salle 400</p>','Camera ','2020-06-21 04:38:03','2024-09-26 14:43:49',NULL,2),
(5,'ROOM 500','<p>Description de la salle 500</p>','Camera ','2020-06-21 04:38:16','2024-09-26 14:43:49',NULL,3),
(7,'ROOM 000','<p>Description de la salle triple zéro</p>','Badge Camera UHA','2020-08-21 13:10:15','2024-09-26 14:58:32',NULL,1),
(12,'ROOM 600','<p>Description de la room 600</p>','','2024-05-23 14:55:13','2024-09-26 14:43:49',NULL,8),
(13,'ROOM 700','<p>Description de la room 700</p>','','2024-05-23 14:56:06','2024-09-26 14:43:49',NULL,8);
/*!40000 ALTER TABLE `buildings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `cartographer_m_application`
--
LOCK TABLES `cartographer_m_application` WRITE;
/*!40000 ALTER TABLE `cartographer_m_application` DISABLE KEYS */;
/*!40000 ALTER TABLE `cartographer_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `certificate_logical_server`
--
LOCK TABLES `certificate_logical_server` WRITE;
/*!40000 ALTER TABLE `certificate_logical_server` DISABLE KEYS */;
INSERT INTO `certificate_logical_server` (`certificate_id`, `logical_server_id`) VALUES (1,1),
(2,1),
(7,7),
(6,7),
(4,5),
(3,4);
/*!40000 ALTER TABLE `certificate_logical_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `certificate_m_application`
--
LOCK TABLES `certificate_m_application` WRITE;
/*!40000 ALTER TABLE `certificate_m_application` DISABLE KEYS */;
INSERT INTO `certificate_m_application` (`certificate_id`, `m_application_id`) VALUES (8,4);
/*!40000 ALTER TABLE `certificate_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `certificates`
--
LOCK TABLES `certificates` WRITE;
/*!40000 ALTER TABLE `certificates` DISABLE KEYS */;
INSERT INTO `certificates` (`id`, `name`, `type`, `description`, `start_validity`, `end_validity`, `last_notification`, `created_at`, `updated_at`, `deleted_at`, `status`) VALUES (1,'CERT01','DES3','<p>Certificat 01</p>','2020-10-27','2022-01-01','2022-09-13 22:48:31','2021-07-14 08:28:47','2022-09-13 20:48:31',NULL,0),
(2,'CERT02','AES 256','<p>Certificat numéro 02</p>','2021-07-14','2021-07-17','2022-09-13 22:48:31','2021-07-14 08:33:33','2022-09-13 20:48:31',NULL,0),
(3,'CERT03','AES 256','<p>Certificat numéro 3</p>','2021-09-23','2021-11-11','2022-09-13 22:48:31','2021-07-14 10:35:41','2022-09-13 20:48:31',NULL,0),
(4,'CERT04','DES3','<p>Certificat interne DES 3</p>',NULL,NULL,NULL,'2021-07-14 10:40:15','2021-07-14 10:40:15',NULL,0),
(5,'CERT05','RSA 128','<p>Clé 05 avec RSA</p>',NULL,NULL,NULL,'2021-07-14 10:45:00','2021-07-14 10:45:00',NULL,0),
(6,'CERT07','DES3','<p>Description of certificate 7</p>',NULL,NULL,NULL,'2021-07-14 12:44:12','2024-05-30 17:29:28',NULL,0),
(7,'CERT08','DES3','<p>Master cert 08</p>','2021-06-15','2022-08-11','2022-09-13 22:48:31','2021-08-11 18:33:42','2022-09-13 20:48:31',NULL,0),
(8,'CERT09','DES3','<p>Test cert nine</p>','2021-09-25','2021-09-26','2022-09-13 22:48:31','2021-09-23 14:17:20','2022-09-13 20:48:31',NULL,0);
/*!40000 ALTER TABLE `certificates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `clusters`
--
LOCK TABLES `clusters` WRITE;
/*!40000 ALTER TABLE `clusters` DISABLE KEYS */;
INSERT INTO `clusters` (`id`, `name`, `type`, `description`, `address_ip`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'CLUSTER01','Alice','<p>The big Alice cluster</p>','127.0.0.1','2023-11-03 09:19:01','2024-04-24 15:44:44',NULL),
(2,'CLUSTER02','Bob','<p>The Bob Cluster</p>',NULL,'2023-11-03 09:19:23','2024-04-24 15:44:44',NULL),
(3,'CLUSTER03','Bob','<p>Description of cluster 03</p>','10.3.2.4','2023-11-03 09:21:46','2024-04-24 15:44:44',NULL),
(5,'CLUSTER04','Max','<p>The Max Cluster</p>','10.10.12.5','2024-04-23 02:53:24','2024-04-24 15:44:44',NULL);
/*!40000 ALTER TABLE `clusters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `data_processing`
--
LOCK TABLES `data_processing` WRITE;
/*!40000 ALTER TABLE `data_processing` DISABLE KEYS */;
INSERT INTO `data_processing` (`id`, `name`, `description`, `responsible`, `purpose`, `categories`, `recipients`, `transfert`, `retention`, `controls`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Traitement 1','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>',NULL,'2023-04-30 07:57:34','2023-05-15 08:10:52',NULL),
(2,'Traitement 2','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>',NULL,'2023-04-30 17:37:26','2023-04-30 17:37:26',NULL),
(3,'deleted','<p>test</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-23 06:35:05','2023-05-23 06:35:22','2023-05-23 06:35:22'),
(4,'Traitement 3','<p>Description du traitement 3</p>','<p>Responsable du traitement 3</p>','<p>Décrire ici les finalités du traitement</p>','<p>Décrire ici les catégories de destinataires</p>','<p>Décrire ici les destinataires des données</p>','<p>Décrire ici les transferts de données</p>','<p>Décrire ici les durées de rétention</p>',NULL,'2023-05-23 07:16:23','2023-05-23 07:16:23',NULL);
/*!40000 ALTER TABLE `data_processing` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `data_processing_document`
--
LOCK TABLES `data_processing_document` WRITE;
/*!40000 ALTER TABLE `data_processing_document` DISABLE KEYS */;
/*!40000 ALTER TABLE `data_processing_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `data_processing_information`
--
LOCK TABLES `data_processing_information` WRITE;
/*!40000 ALTER TABLE `data_processing_information` DISABLE KEYS */;
INSERT INTO `data_processing_information` (`data_processing_id`, `information_id`) VALUES (1,4),
(1,1),
(1,2),
(2,2),
(2,3),
(4,3);
/*!40000 ALTER TABLE `data_processing_information` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `data_processing_m_application`
--
LOCK TABLES `data_processing_m_application` WRITE;
/*!40000 ALTER TABLE `data_processing_m_application` DISABLE KEYS */;
INSERT INTO `data_processing_m_application` (`data_processing_id`, `m_application_id`) VALUES (1,15),
(1,3),
(2,1),
(4,12);
/*!40000 ALTER TABLE `data_processing_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `data_processing_process`
--
LOCK TABLES `data_processing_process` WRITE;
/*!40000 ALTER TABLE `data_processing_process` DISABLE KEYS */;
INSERT INTO `data_processing_process` (`data_processing_id`, `process_id`) VALUES (1,1),
(1,2),
(2,2),
(3,3),
(4,3);
/*!40000 ALTER TABLE `data_processing_process` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `database_entity`
--
LOCK TABLES `database_entity` WRITE;
/*!40000 ALTER TABLE `database_entity` DISABLE KEYS */;
INSERT INTO `database_entity` (`database_id`, `entity_id`) VALUES (1,1),
(3,1),
(4,1),
(5,1),
(6,1);
/*!40000 ALTER TABLE `database_entity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `database_information`
--
LOCK TABLES `database_information` WRITE;
/*!40000 ALTER TABLE `database_information` DISABLE KEYS */;
INSERT INTO `database_information` (`database_id`, `information_id`) VALUES (1,1),
(1,2),
(1,3),
(3,2),
(3,3),
(5,1),
(4,2),
(5,5),
(6,1);
/*!40000 ALTER TABLE `database_information` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `database_logical_server`
--
LOCK TABLES `database_logical_server` WRITE;
/*!40000 ALTER TABLE `database_logical_server` DISABLE KEYS */;
INSERT INTO `database_logical_server` (`database_id`, `logical_server_id`) VALUES (1,2),
(1,1),
(6,1);
/*!40000 ALTER TABLE `database_logical_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `database_m_application`
--
LOCK TABLES `database_m_application` WRITE;
/*!40000 ALTER TABLE `database_m_application` DISABLE KEYS */;
INSERT INTO `database_m_application` (`m_application_id`, `database_id`) VALUES (2,3),
(3,4),
(3,1),
(4,5),
(15,5),
(15,4),
(16,1),
(35,3);
/*!40000 ALTER TABLE `database_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `databases`
--
LOCK TABLES `databases` WRITE;
/*!40000 ALTER TABLE `databases` DISABLE KEYS */;
INSERT INTO `databases` (`id`, `name`, `description`, `responsible`, `type`, `security_need_c`, `external`, `created_at`, `updated_at`, `deleted_at`, `entity_resp_id`, `security_need_i`, `security_need_a`, `security_need_t`) VALUES (1,'Database 1','<p>Description Database 1</p>','Paul','MySQL',1,'Interne','2020-06-17 14:18:48','2021-05-14 10:19:45',NULL,2,2,3,4),
(3,'Database 2','<p>Description database 2</p>','Paul','MySQL',1,'Interne','2020-06-17 14:19:24','2021-05-14 10:29:47',NULL,1,1,1,1),
(4,'MainDB','<p>description de la base de données</p>','Paul','Oracle',2,'Interne','2020-07-01 15:08:57','2021-08-20 01:52:23',NULL,1,2,2,2),
(5,'DB Compta','<p>Base de donnée de la compta</p>','Paul','MariaDB',2,'Interne','2020-08-24 15:58:23','2022-03-21 17:13:10',NULL,18,2,2,2),
(6,'Data Warehouse','<p>Base de données du datawarehouse</p>',NULL,'MariaDB',2,NULL,'2021-05-14 10:24:02','2024-09-20 16:48:08',NULL,18,2,2,-1);
/*!40000 ALTER TABLE `databases` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `dhcp_servers`
--
LOCK TABLES `dhcp_servers` WRITE;
/*!40000 ALTER TABLE `dhcp_servers` DISABLE KEYS */;
INSERT INTO `dhcp_servers` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `address_ip`) VALUES (1,'DHCP_1','<p>Serveur DHCP primaire</p>','2020-07-23 08:34:43','2024-03-09 16:24:39',NULL,'10.10.1.1, 10.10.10.1'),
(2,'DHCP_2','<p>Serveur DHCP secondaire</p>','2021-10-19 08:46:52','2024-03-09 16:25:21',NULL,'10.40.6.4, 2001:db8:3333:4444:CCCC:DDDD:EEEE:FFFF');
/*!40000 ALTER TABLE `dhcp_servers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `dnsservers`
--
LOCK TABLES `dnsservers` WRITE;
/*!40000 ALTER TABLE `dnsservers` DISABLE KEYS */;
INSERT INTO `dnsservers` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `address_ip`) VALUES (1,'DNS_1','<p>Serveur DNS primaire</p>','2020-07-23 08:31:39','2021-11-16 16:55:11',NULL,'10.10.3.4'),
(2,'DNS_2','<p>Serveur DNS secondaire</p>','2020-07-23 08:31:50','2021-10-19 09:10:45',NULL,'10.30.2.3'),
(3,'DNS_3','<p>Troisième serveur DNS</p>','2021-10-19 08:39:25','2021-10-19 08:41:09',NULL,'10.10.10.1');
/*!40000 ALTER TABLE `dnsservers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `document_logical_server`
--
LOCK TABLES `document_logical_server` WRITE;
/*!40000 ALTER TABLE `document_logical_server` DISABLE KEYS */;
/*!40000 ALTER TABLE `document_logical_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `document_relation`
--
LOCK TABLES `document_relation` WRITE;
/*!40000 ALTER TABLE `document_relation` DISABLE KEYS */;
/*!40000 ALTER TABLE `document_relation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `documents`
--
LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `domaine_ad_forest_ad`
--
LOCK TABLES `domaine_ad_forest_ad` WRITE;
/*!40000 ALTER TABLE `domaine_ad_forest_ad` DISABLE KEYS */;
INSERT INTO `domaine_ad_forest_ad` (`forest_ad_id`, `domaine_ad_id`) VALUES (1,1),
(2,1),
(1,3),
(2,5),
(1,4);
/*!40000 ALTER TABLE `domaine_ad_forest_ad` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `domaine_ads`
--
LOCK TABLES `domaine_ads` WRITE;
/*!40000 ALTER TABLE `domaine_ads` DISABLE KEYS */;
INSERT INTO `domaine_ads` (`id`, `name`, `description`, `domain_ctrl_cnt`, `user_count`, `machine_count`, `relation_inter_domaine`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Dom1','<p>Domaine AD1</p>',3,2000,800,'Non','2020-07-03 07:51:06','2020-07-03 07:51:06',NULL),
(2,'test domain','<p>this is a test</p>',NULL,NULL,NULL,NULL,'2021-05-27 13:24:52','2021-05-27 13:29:15','2021-05-27 13:29:15'),
(3,'Dom2','<p>Second domaine active directory</p>',2,100,1,'Néant','2021-05-27 13:29:43','2021-05-27 13:29:43',NULL),
(4,'Dom5','<p>Domaine cinq</p>',NULL,NULL,NULL,NULL,'2021-05-27 13:39:08','2021-05-27 13:39:08',NULL),
(5,'Dom4','<p>Domaine quatre</p>',NULL,NULL,NULL,NULL,'2021-05-27 13:39:20','2021-05-27 13:39:20',NULL);
/*!40000 ALTER TABLE `domaine_ads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `entities`
--
LOCK TABLES `entities` WRITE;
/*!40000 ALTER TABLE `entities` DISABLE KEYS */;
INSERT INTO `entities` (`id`, `name`, `icon_id`, `security_level`, `contact_point`, `description`, `is_external`, `created_at`, `updated_at`, `deleted_at`, `entity_type`, `attributes`, `reference`, `parent_entity_id`) VALUES (1,'MegaNet System',NULL,'<p>ISO 27001</p>','<p>Helpdek<br>27, Rue des poire <br>12043 Mire-en-Mare le Bains</p><p>[email protected]</p>','<p>Fournisseur équipement réseau</p>',1,'2020-05-21 02:30:59','2023-06-01 15:16:50',NULL,'Producer',NULL,NULL,NULL),
(2,'Entité1',NULL,'<p>Néant</p>','<ul><li>Commercial</li><li>Service Delivery</li><li>Helpdesk</li></ul>','<p>Entité de tests1</p>',1,'2020-05-21 02:31:17','2022-05-23 15:10:25',NULL,'Revendeur',NULL,NULL,NULL),
(4,'Entité3',NULL,'<p>ISO 9001</p>','<p>Point de contact de la troisième entité</p>','<p>Description de la troisième entité.</p>',1,'2020-05-21 02:44:03','2022-05-23 15:10:46',NULL,'Producteur',NULL,NULL,NULL),
(5,'Entity6',NULL,'<p>Néant</p>','<p>[email protected]</p>','<p>Description de l\'entité six</p>',0,'2020-05-21 02:44:18','2024-09-25 03:53:41',NULL,'Distributor',NULL,NULL,NULL),
(6,'Entité4',NULL,'<p>ISO 27001</p>','<p>Pierre Pinon<br>Tel: 00 34 392 484 22</p>','<p>Description de l\'entté quatre</p>',0,'2020-05-21 02:45:14','2021-05-23 13:01:17',NULL,NULL,NULL,NULL,NULL),
(7,'Entité5',NULL,'<p>Néant</p>','<p>[email protected]</p>','<p>Description de l\'entité 5</p>',0,'2020-05-21 03:38:41','2021-05-23 13:02:16',NULL,NULL,NULL,NULL,NULL),
(8,'Entité2',NULL,'<p>ISO 27001</p>','<p>Point de contact de l\'entité 2</p>','<p>Description de l\'entité 2</p>',1,'2020-05-21 03:54:22','2022-05-23 14:44:34',NULL,'Legal entity',NULL,NULL,NULL),
(9,'NetworkSys',NULL,'<p>ISO 27001</p>','<p>[email protected]</p>','<p>Description de l’entité NetworkSys</p>',0,'2020-05-21 06:25:15','2022-05-23 14:44:48',NULL,'Internal department',NULL,NULL,NULL),
(12,'Pierre et fils',NULL,'<p>Certifications : <br>- ISO 9001<br>- ISO 27001<br>- ISO 31000</p>','<p>Paul Pierre<br>Gérant<br>00 33 4943 432 423</p>','<p>Description de l\'entité de test</p>',1,'2020-07-06 13:37:54','2022-05-23 14:45:07',NULL,'Fournisseur',NULL,NULL,NULL),
(13,'Nestor',NULL,'<p>Haut niveau</p>','<p>Paul, Pierre et Jean</p>','<p>Description de Nestor</p>',1,'2020-08-12 16:11:31','2022-05-23 14:41:44',NULL,'Fournisseur',NULL,NULL,NULL),
(18,'Acme corp.',NULL,'<p>None sorry...</p>','<p>Do not call me, I will call you back.</p>','<p>Looney tunes academy</p>',1,'2021-09-07 18:07:16','2024-09-24 07:50:43',NULL,'Producer',NULL,NULL,23),
(19,'HAL',NULL,'<p>Top security certification</p>','<p>[email protected]</p>','<b>test',0,'2021-09-07 18:08:56','2021-09-07 18:09:17',NULL,NULL,NULL,NULL,NULL),
(22,'Hacker Studio',NULL,'<p>All SANS certificates</p>','<p>Do not call us, we will call you back.</p><p> </p>','<b>test',1,'2022-06-02 11:56:32','2022-06-02 11:56:32',NULL,'Fournisseur',NULL,NULL,NULL),
(23,'World company',NULL,'<p>Full protection</p>','<p>ping us at 256.256.256.256</p>','<p>Thebiggest compagny in the world</p>',1,'2022-06-22 17:20:11','2023-06-01 15:19:54',NULL,'Producer',NULL,NULL,NULL),
(24,'test',NULL,NULL,NULL,NULL,0,'2024-09-13 10:02:43','2024-09-13 10:02:53','2024-09-13 10:02:53',NULL,NULL,NULL,NULL),
(25,'Garden maker',NULL,'<p>We have a dog </p>','<p>We are in the garden</p>','<p>The Garden maker</p>',1,'2024-09-24 07:46:10','2024-09-24 07:46:43',NULL,'Producer',NULL,NULL,18);
/*!40000 ALTER TABLE `entities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `entity_document`
--
LOCK TABLES `entity_document` WRITE;
/*!40000 ALTER TABLE `entity_document` DISABLE KEYS */;
/*!40000 ALTER TABLE `entity_document` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `entity_m_application`
--
LOCK TABLES `entity_m_application` WRITE;
/*!40000 ALTER TABLE `entity_m_application` DISABLE KEYS */;
INSERT INTO `entity_m_application` (`m_application_id`, `entity_id`) VALUES (2,1),
(1,2),
(1,8),
(3,8),
(4,8),
(4,4),
(16,2),
(19,2),
(19,8),
(19,4),
(19,6),
(19,7),
(35,2),
(37,18),
(18,8),
(42,5),
(43,4);
/*!40000 ALTER TABLE `entity_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `entity_process`
--
LOCK TABLES `entity_process` WRITE;
/*!40000 ALTER TABLE `entity_process` DISABLE KEYS */;
INSERT INTO `entity_process` (`process_id`, `entity_id`) VALUES (1,1),
(2,1),
(3,1),
(1,13),
(3,13),
(4,1),
(9,4),
(2,8),
(4,6),
(4,7),
(9,5),
(1,9),
(2,9),
(3,9),
(4,9),
(9,9),
(1,12),
(1,2),
(4,18),
(3,19),
(1,22),
(4,23),
(4,25);
/*!40000 ALTER TABLE `entity_process` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `external_connected_entities`
--
LOCK TABLES `external_connected_entities` WRITE;
/*!40000 ALTER TABLE `external_connected_entities` DISABLE KEYS */;
INSERT INTO `external_connected_entities` (`id`, `name`, `description`, `type`, `entity_id`, `network_id`, `src`, `src_desc`, `dest`, `dest_desc`, `contacts`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Entité externe 1','<p>description entité 1</p>','Token',2,1,'8.9.10.11',NULL,'10.212.32.12',NULL,'Marcel','2020-07-23 07:59:25','2024-05-07 03:01:32',NULL),
(2,'Entité externe 2','description de la connexion','SSL-VPN',4,1,NULL,NULL,NULL,NULL,'[email protected]','2021-08-17 17:52:26','2022-08-11 19:17:06',NULL),
(3,'Test',NULL,'SSL-VPN',NULL,1,NULL,NULL,NULL,NULL,NULL,'2022-08-11 19:46:40','2022-08-11 19:47:15',NULL),
(4,'Entité externe 3','Support application','site2site VPN',4,1,'8.8.8.8.8',NULL,'10.23.21.1',NULL,'David','2022-10-13 16:32:40','2022-10-13 16:32:40',NULL);
/*!40000 ALTER TABLE `external_connected_entities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `fluxes`
--
LOCK TABLES `fluxes` WRITE;
/*!40000 ALTER TABLE `fluxes` DISABLE KEYS */;
INSERT INTO `fluxes` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `application_source_id`, `service_source_id`, `module_source_id`, `database_source_id`, `application_dest_id`, `service_dest_id`, `module_dest_id`, `database_dest_id`, `crypted`, `bidirectional`, `nature`) VALUES (2,'FluxA','<p>Description du flux A</p>','2020-06-17 14:50:59','2023-02-28 13:56:24',NULL,1,NULL,NULL,NULL,NULL,3,NULL,NULL,0,1,'API'),
(3,'FluxC','<p>Flux de test</p>','2020-07-07 13:58:22','2021-09-23 17:04:30',NULL,2,NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'API'),
(4,'FluxB','<p>Flux de test 3</p>','2020-07-07 14:01:10','2022-10-13 16:54:12',NULL,NULL,NULL,4,NULL,NULL,NULL,5,NULL,1,1,'API'),
(5,'Sync_DB','<p>Description du flux 01</p>','2020-07-23 10:44:35','2022-10-13 16:54:36',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,3,1,0,'API'),
(6,'Flux_MOD_01','<p>Fuld module</p>','2020-07-23 10:48:20','2021-09-29 05:59:35',NULL,NULL,NULL,3,NULL,NULL,NULL,2,NULL,0,0,'API'),
(7,'Flux_SER_01','Description du flux service 01','2020-07-23 10:51:41','2020-07-23 10:51:41',NULL,NULL,3,NULL,NULL,NULL,4,NULL,NULL,0,NULL,'API'),
(8,'Fulx 07','Description du flux 07','2020-09-05 04:56:57','2020-09-05 04:57:36',NULL,NULL,1,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'API'),
(9,'FLux DB_02','<p>Description du flux 2</p>','2020-09-05 05:12:05','2023-01-27 16:09:23',NULL,NULL,NULL,4,NULL,NULL,NULL,2,NULL,1,0,'File copy'),
(10,'SRV10_to_SRV11','<p>Transfert from SRV10 to SRV11</p>','2021-08-02 15:13:31','2021-08-02 15:13:31',NULL,NULL,10,NULL,NULL,NULL,11,NULL,NULL,0,NULL,'API'),
(11,'FLUX_42','<p>Le flux qui répond à tout</p>','2021-08-02 15:13:57','2024-09-12 06:37:03',NULL,18,NULL,NULL,NULL,NULL,NULL,2,NULL,1,1,'Manual'),
(12,'SRV6_to_SRV10','<p>service 6 to service 10</p>','2021-08-02 15:14:36','2021-08-02 15:14:36',NULL,NULL,7,NULL,NULL,NULL,10,NULL,NULL,1,NULL,'API'),
(13,'Syncy System',NULL,'2021-08-02 18:01:21','2024-09-22 13:26:45','2024-09-22 13:26:45',NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'API'),
(14,'00001',NULL,'2021-09-01 07:00:09','2021-09-01 07:00:21','2021-09-01 07:00:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'API'),
(15,'0002',NULL,'2021-09-01 07:00:15','2021-09-01 07:00:21','2021-09-01 07:00:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'API'),
(16,'MainFlow','<p>The most critical flow</p>','2022-06-29 14:58:33','2022-06-29 14:58:33',NULL,1,NULL,NULL,NULL,2,NULL,NULL,NULL,0,0,'API'),
(17,'TestFlux99','<p>Description du flux 99</p>','2022-07-12 13:15:11','2022-07-12 13:15:26',NULL,NULL,NULL,4,NULL,NULL,5,NULL,NULL,1,0,'API'),
(18,'TEST','<p>mod4 → mod5</p>','2023-01-27 15:44:23','2023-01-27 15:46:17','2023-01-27 15:46:17',NULL,NULL,4,NULL,NULL,NULL,5,NULL,0,0,'API'),
(19,'Test','<p>Test</p>','2023-01-27 16:04:36','2023-01-27 16:04:36',NULL,1,NULL,NULL,NULL,2,NULL,NULL,NULL,0,0,NULL),
(20,'FluxD','<p>Flux API DB1 to DB2</p>','2023-11-30 09:53:06','2024-04-16 07:44:21',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,4,0,0,'API'),
(21,'HL7_Mapping',NULL,'2024-02-14 11:40:04','2024-09-22 13:26:34',NULL,2,NULL,NULL,NULL,2,NULL,NULL,NULL,0,0,'HL7');
/*!40000 ALTER TABLE `fluxes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `forest_ads`
--
LOCK TABLES `forest_ads` WRITE;
/*!40000 ALTER TABLE `forest_ads` DISABLE KEYS */;
INSERT INTO `forest_ads` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`, `zone_admin_id`) VALUES (1,'AD1','<p>Foret de l\'AD 1</p>','2020-07-03 07:50:07','2020-07-03 07:50:29',NULL,1),
(2,'AD2','<p>Foret de l\'AD2</p>','2020-07-03 07:50:19','2020-07-03 07:50:19',NULL,1);
/*!40000 ALTER TABLE `forest_ads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `gateways`
--
LOCK TABLES `gateways` WRITE;
/*!40000 ALTER TABLE `gateways` DISABLE KEYS */;
INSERT INTO `gateways` (`id`, `name`, `description`, `ip`, `authentification`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'GW01','<p>Gateway 01 vers réseau médor</p>','123.5.6.4/12','Carte à puce','2020-07-13 17:34:45','2020-07-13 17:34:45',NULL),
(2,'Workspace One','<p>Test workspace One</p>','10.10.10.1','Token','2021-04-17 19:32:57','2021-04-17 19:40:31','2021-04-17 19:40:31'),
(3,'PubicGW','<p>Public Gateway</p>','10.10.10.1','Token','2021-04-17 19:39:04','2021-04-17 19:40:25','2021-04-17 19:40:25'),
(4,'PublicGW','<p>Public gateway</p>','8.8.8.8','Token','2021-04-17 19:40:48','2021-04-17 19:48:34',NULL),
(5,'GW02','<p>Second gateway</p>','10.20.1.1','Token','2021-05-18 18:27:13','2022-06-02 18:16:26',NULL);
/*!40000 ALTER TABLE `gateways` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `information`
--
LOCK TABLES `information` WRITE;
/*!40000 ALTER TABLE `information` DISABLE KEYS */;
INSERT INTO `information` (`id`, `name`, `description`, `owner`, `administrator`, `storage`, `security_need_c`, `sensitivity`, `constraints`, `retention`, `created_at`, `updated_at`, `deleted_at`, `security_need_i`, `security_need_a`, `security_need_t`) VALUES (1,'Information 1','<p>Description de l\'information 1</p>','Luc','Yann','externe',1,'Donnée à caractère personnel','<p>Description des contraintes règlementaires et normatives</p>',NULL,'2020-06-13 00:06:43','2024-04-28 06:39:51',NULL,3,2,2),
(2,'information 2','<p>Description de l\'information</p>','Nestor','Nom de l\'administrateur','externe',2,'Donnée à caractère personnel',NULL,NULL,'2020-06-13 00:09:13','2021-08-19 16:42:53',NULL,1,1,1),
(3,'information 3','<p>Descripton de l\'information 3</p>','Paul','Jean','Local',4,'Donnée à caractère personnel',NULL,NULL,'2020-06-13 00:10:07','2021-09-28 17:42:07',NULL,4,3,4),
(4,'Information de test','<p>decription du test</p>','RSSI','Paul','Local',1,'Technical',NULL,NULL,'2020-07-01 15:00:37','2021-08-19 16:45:52',NULL,1,1,1),
(5,'Données du client','<p>Données d\'identification du client</p>','Nestor','Paul','Local',2,'Donnée à caractère personnel','<p>RGPD</p>',NULL,'2021-05-14 10:50:09','2022-03-21 17:12:30',NULL,2,2,2);
/*!40000 ALTER TABLE `information` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `information_process`
--
LOCK TABLES `information_process` WRITE;
/*!40000 ALTER TABLE `information_process` DISABLE KEYS */;
INSERT INTO `information_process` (`information_id`, `process_id`) VALUES (3,2),
(4,3),
(4,4),
(4,1),
(1,4),
(2,9),
(5,1),
(5,2),
(5,4),
(5,9);
/*!40000 ALTER TABLE `information_process` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `lan_man`
--
LOCK TABLES `lan_man` WRITE;
/*!40000 ALTER TABLE `lan_man` DISABLE KEYS */;
INSERT INTO `lan_man` (`man_id`, `lan_id`) VALUES (1,1),
(2,1),
(2,2),
(2,3);
/*!40000 ALTER TABLE `lan_man` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `lan_wan`
--
LOCK TABLES `lan_wan` WRITE;
/*!40000 ALTER TABLE `lan_wan` DISABLE KEYS */;
INSERT INTO `lan_wan` (`wan_id`, `lan_id`) VALUES (1,1);
/*!40000 ALTER TABLE `lan_wan` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `lans`
--
LOCK TABLES `lans` WRITE;
/*!40000 ALTER TABLE `lans` DISABLE KEYS */;
INSERT INTO `lans` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'LAN_1','<p>Description goes here</p>','2020-07-22 05:42:00','2024-04-09 03:14:38',NULL),
(2,'LAN_2','Second LAN','2021-06-23 19:19:38','2021-06-23 19:19:38',NULL),
(3,'LAN_0','Lan zero','2021-06-23 19:20:04','2021-06-23 19:20:04',NULL);
/*!40000 ALTER TABLE `lans` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `logical_flows`
--
LOCK TABLES `logical_flows` WRITE;
/*!40000 ALTER TABLE `logical_flows` DISABLE KEYS */;
INSERT INTO `logical_flows` (`id`, `name`, `source_ip_range`, `dest_ip_range`, `source_port`, `dest_port`, `protocol`, `description`, `created_at`, `updated_at`, `deleted_at`, `router_id`, `priority`, `action`, `users`, `interface`, `schedule`) VALUES (1,'FLOW1','10.10.10.1/32','10.0.0.33/28',NULL,'80','TCP','<p>Description goes here</p>',NULL,'2024-04-22 14:29:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(2,'FLOW2','10.1.1.1/32','10.2.2.2/32',NULL,'80','UDP','<p>Description2</p>','2024-04-09 03:26:40','2024-04-10 03:50:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(3,NULL,'10.1.1.1/32','10.2.2.2/32',NULL,'22','TCP','<p>Description du flux</p>','2024-04-09 03:30:36','2024-04-10 03:50:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(4,'QuickChat','192.168.1.0/24','192.168.2.0/24','1234','5678','tcp','<p>Rapid exchange of gossip</p>','2024-04-22 10:20:44','2024-04-22 10:27:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `logical_flows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `logical_server_m_application`
--
LOCK TABLES `logical_server_m_application` WRITE;
/*!40000 ALTER TABLE `logical_server_m_application` DISABLE KEYS */;
INSERT INTO `logical_server_m_application` (`m_application_id`, `logical_server_id`) VALUES (18,4),
(15,3),
(4,5),
(18,6),
(35,3),
(3,1),
(37,7),
(14,8);
/*!40000 ALTER TABLE `logical_server_m_application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `logical_server_physical_server`
--
LOCK TABLES `logical_server_physical_server` WRITE;
/*!40000 ALTER TABLE `logical_server_physical_server` DISABLE KEYS */;
INSERT INTO `logical_server_physical_server` (`logical_server_id`, `physical_server_id`) VALUES (3,8),
(4,7),
(5,8),
(1,9),
(3,9),
(7,8);
/*!40000 ALTER TABLE `logical_server_physical_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `logical_servers`
--
LOCK TABLES `logical_servers` WRITE;
/*!40000 ALTER TABLE `logical_servers` DISABLE KEYS */;
INSERT INTO `logical_servers` (`id`, `name`, `description`, `net_services`, `configuration`, `created_at`, `updated_at`, `deleted_at`, `operating_system`, `address_ip`, `cpu`, `memory`, `environment`, `disk`, `disk_used`, `install_date`, `update_date`, `attributes`, `patching_frequency`, `next_update`, `cluster_id`, `domain_id`) VALUES (1,'SRV-1','<p>Description du serveur 1</p>','DNS, HTTP, HTTPS','<p>Configuration du serveur 1</p>','2020-07-12 16:57:42','2024-04-23 02:51:30',NULL,'Ubuntu 20.04','10.10.10.1, 10.10.8.8','2','8','PROD',60,NULL,'2023-11-04 00:00:00','2024-03-12 00:00:00','GRP-1',6,'2024-09-12',1,NULL),
(3,'SRV-3','<p>Description du serveur 3</p>','HTTP, HTTPS',NULL,'2021-08-26 14:33:03','2024-04-23 02:53:24',NULL,'Ubuntu 20.04','10.70.8.3','4','16','PROD',80,NULL,NULL,'2023-11-30 00:00:00','GRP-1',6,'2024-05-30',5,NULL),
(4,'SRV-42','<p><i>The Ultimate Question of Life, the Universe and Everything</i></p>',NULL,'<p>Full configuration</p>','2021-11-15 16:03:59','2024-05-30 17:25:22',NULL,'OS 42','10.10.0.42','42','42 G','PROD',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(5,'SRV-4','<p>Description du serveur 4</p>',NULL,NULL,'2022-05-02 16:43:02','2024-03-14 16:18:31',NULL,'Ubunti 22.04 LTS','10.10.3.2','4','2','Dev',NULL,NULL,'2022-05-01 00:00:00','2023-11-30 00:00:00','GRP-1',6,'2024-05-30',2,NULL),
(6,'SRV-5','<p>Description server 5</p>',NULL,'<p>configuration goes here !</p>','2022-06-27 10:27:02','2023-12-13 07:05:40',NULL,'Ubunti 22.04 LTS','10.10.43.3','18','12','Integration',500,NULL,'2022-06-27 00:00:00','2023-03-14 00:00:00',NULL,12,'2023-12-08',NULL,NULL),
(7,'SRV-6','<p>Description du serveur 6</p>',NULL,'<p>Default configuration</p>','2024-01-31 08:53:15','2024-05-30 17:26:10',NULL,'Debian 34','10.40.5.3','4','64','PROD',100,20,'2024-02-07 00:00:00','2024-01-31 00:00:00','GRP-2',6,'2024-07-31',1,NULL),
(8,'SRV-7','<p>Description server 7</p>',NULL,'<p>No cluster</p>','2024-02-05 19:41:25','2024-04-23 02:53:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL),
(9,'SRV-8','<p>Description of logical server5</p>',NULL,NULL,'2024-04-22 14:27:44','2024-04-23 02:51:30',NULL,'Ubuntu 22.04','10.0.0.32',NULL,NULL,'PROD',NULL,NULL,'2024-04-22 00:00:00',NULL,NULL,NULL,NULL,1,NULL),
(10,'addc-c','addc-c',NULL,NULL,'2024-08-12 07:25:09','2024-08-12 07:25:09',NULL,NULL,NULL,'1','3.28',NULL,79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(11,'adfs1-dop','adfs1-dop',NULL,NULL,'2024-08-12 07:25:10','2024-08-12 07:25:10',NULL,NULL,NULL,'8','7.76',NULL,68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `logical_servers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_application_events`
--
LOCK TABLES `m_application_events` WRITE;
/*!40000 ALTER TABLE `m_application_events` DISABLE KEYS */;
INSERT INTO `m_application_events` (`id`, `user_id`, `m_application_id`, `message`, `created_at`, `updated_at`) VALUES (3,1,2,'Test 2','2023-12-06 12:24:47','2023-12-06 12:24:47'),
(4,1,2,'Test 3','2023-12-06 12:24:56','2023-12-06 12:24:56');
/*!40000 ALTER TABLE `m_application_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_application_peripheral`
--
LOCK TABLES `m_application_peripheral` WRITE;
/*!40000 ALTER TABLE `m_application_peripheral` DISABLE KEYS */;
INSERT INTO `m_application_peripheral` (`m_application_id`, `peripheral_id`) VALUES (15,1),
(35,5),
(1,5),
(35,6),
(1,6),
(18,7);
/*!40000 ALTER TABLE `m_application_peripheral` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_application_physical_server`
--
LOCK TABLES `m_application_physical_server` WRITE;
/*!40000 ALTER TABLE `m_application_physical_server` DISABLE KEYS */;
INSERT INTO `m_application_physical_server` (`m_application_id`, `physical_server_id`) VALUES (18,6),
(2,9);
/*!40000 ALTER TABLE `m_application_physical_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_application_process`
--
LOCK TABLES `m_application_process` WRITE;
/*!40000 ALTER TABLE `m_application_process` DISABLE KEYS */;
INSERT INTO `m_application_process` (`m_application_id`, `process_id`) VALUES (2,1),
(2,2),
(3,2),
(1,1),
(14,2),
(4,3),
(12,4),
(16,1),
(16,2),
(16,3),
(16,4),
(16,9),
(19,3),
(19,4),
(35,4),
(18,3),
(42,3),
(43,4);
/*!40000 ALTER TABLE `m_application_process` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_application_workstation`
--
LOCK TABLES `m_application_workstation` WRITE;
/*!40000 ALTER TABLE `m_application_workstation` DISABLE KEYS */;
INSERT INTO `m_application_workstation` (`m_application_id`, `workstation_id`) VALUES (1,1),
(3,1),
(15,4),
(2,6),
(2,12),
(35,12),
(3,2),
(3,4),
(15,11),
(2,14),
(18,14);
/*!40000 ALTER TABLE `m_application_workstation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `m_applications`
--
LOCK TABLES `m_applications` WRITE;
/*!40000 ALTER TABLE `m_applications` DISABLE KEYS */;
INSERT INTO `m_applications` (`id`, `name`, `description`, `vendor`, `product`, `security_need_c`, `responsible`, `functional_referent`, `type`, `icon_id`, `technology`, `external`, `users`, `editor`, `created_at`, `updated_at`, `deleted_at`, `entity_resp_id`, `application_block_id`, `documentation`, `security_need_i`, `security_need_a`, `security_need_t`, `version`, `rto`, `rpo`, `install_date`, `update_date`, `attributes`, `patching_frequency`, `next_update`) VALUES (1,'central_wifimanager','<p>Description de l\'application 1</p>',NULL,NULL,0,'Jacques, RSSI',NULL,'logiciel',NULL,'Microsoft',NULL,'> 20',NULL,'2020-06-14 09:20:15','2024-09-24 03:10:37',NULL,23,3,'//Documentation/application1.docx',1,1,1,'1.03',3120,1800,NULL,NULL,'Critical',NULL,NULL),
(2,'Application 2','<p><i>Description</i> de l\'<strong>application</strong> 2.</p>','microsoft','excel',3,'Jacques',NULL,'Web',NULL,'Microsoft','SaaS','>10','Alienware','2020-06-14 09:31:16','2024-09-24 06:31:11',NULL,2,1,'None',4,2,2,'2002',3120,1800,NULL,'2024-02-17 00:00:00','Critical GRP-2',6,'2024-08-17'),
(3,'Application 3','<p>Test application 3</p>','42',NULL,1,'RSSI',NULL,'progiciel',NULL,'Microsoft','Interne','>100',NULL,'2020-06-17 17:33:41','2024-09-24 03:10:37',NULL,1,2,'Aucune',2,3,3,NULL,3120,1800,NULL,'2024-02-16 00:00:00','GRP-0',NULL,NULL),
(4,'EG350','<p>Description app4</p>',NULL,NULL,2,'Jacques, Pierre',NULL,'logiciel',NULL,'Microsoft','Internl','>100',NULL,'2020-08-11 14:13:02','2024-09-24 03:10:37',NULL,1,2,'None',2,3,2,'1.0',3120,1800,NULL,NULL,'',NULL,NULL),
(12,'SuperApp','<p>Super super application !</p>',NULL,NULL,1,'RSSI',NULL,'Web',NULL,'Oracle','Interne',NULL,NULL,'2021-04-12 17:10:59','2021-06-23 19:33:15',NULL,1,2,NULL,1,1,1,NULL,3120,1800,NULL,NULL,NULL,NULL,NULL),
(14,'Windows Calc','<p>Calculatrice windows</p>',NULL,NULL,2,'RSSI',NULL,'logiciel',NULL,'Microsoft','Internl',NULL,NULL,'2021-05-13 08:15:27','2022-03-20 17:53:29',NULL,1,3,NULL,0,0,0,NULL,3120,1800,NULL,NULL,NULL,NULL,NULL),
(15,'Compta','<p>Application de comptabilité</p>',NULL,NULL,3,'RSSI',NULL,'progiciel',NULL,'Microsoft','Interne','>100',NULL,'2021-05-15 07:53:15','2024-03-02 07:41:57',NULL,1,2,NULL,4,2,3,NULL,3120,1800,NULL,NULL,NULL,NULL,NULL),
(16,'Queue Manager','<p>Queue manager</p>',NULL,NULL,4,'Jacques',NULL,'logiciel',NULL,'Internal Dev','Interne','>100',NULL,'2021-08-02 15:17:11','2022-06-11 09:49:17',NULL,1,1,'//Portal/QueueManager.doc',4,4,4,NULL,3120,1800,NULL,NULL,NULL,NULL,NULL),
(18,'Application 42','<p>The Ultimate Question of Life, the Universe and Everything</p>',NULL,NULL,1,'Johan, Marc',NULL,'logiciel',NULL,'COBOL','Interne','>50',NULL,'2021-11-15 16:03:20','2024-09-24 03:54:14',NULL,18,1,NULL,1,1,1,NULL,3120,1800,'2023-10-19 00:00:00','2023-10-28 00:00:00','Critical GRP-0',NULL,NULL),
(19,'Windows Word 98','<p>Traitement de texte Word</p>',NULL,NULL,1,'Johan, Marc',NULL,'progiciel',NULL,'Microsoft','Interne',NULL,NULL,'2022-06-14 11:52:36','2022-06-14 11:52:58',NULL,18,1,NULL,1,1,1,NULL,3120,1800,'2022-06-14 00:00:00',NULL,NULL,NULL,NULL),
(35,'Vulnerability','<p>Vulnerable test application</p>',NULL,NULL,0,'RSSI',NULL,NULL,NULL,'Microsoft','Interne','>100',NULL,'2022-06-28 05:59:28','2024-09-24 03:10:37',NULL,4,2,NULL,0,0,0,'1.5',3120,1800,NULL,NULL,'',NULL,NULL),
(37,'Messagerie','<p>Internal mail system</p>',NULL,NULL,3,'',NULL,'Web',NULL,'Microsoft','Internl','>100',NULL,'2022-12-17 14:12:12','2024-09-24 03:38:57',NULL,18,1,NULL,3,3,3,'v1.0',3120,1800,NULL,NULL,'',NULL,NULL),
(38,'excel',NULL,NULL,NULL,0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-26 07:38:20','2023-03-26 07:38:20',NULL,NULL,NULL,NULL,0,0,0,'2019',0,0,NULL,NULL,NULL,NULL,NULL),
(42,'Business Master','<p>The business mater application</p>',NULL,NULL,0,'Pierre','Pierre','Web',NULL,'PHP','Internal','>10','VaultServices','2024-09-24 06:34:05','2024-09-24 06:34:05',NULL,25,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,'Critical',NULL,NULL),
(43,'Customer Relation','<p>The description goes here</p>',NULL,NULL,0,'Johan','Paul','progiciel',NULL,'C++','Interne','>10','VaultServices','2024-09-24 06:37:35','2024-09-24 06:37:35',NULL,8,3,NULL,0,0,0,NULL,0,0,NULL,NULL,'GRP-0',NULL,NULL);
/*!40000 ALTER TABLE `m_applications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `macro_processuses`
--
LOCK TABLES `macro_processuses` WRITE;
/*!40000 ALTER TABLE `macro_processuses` DISABLE KEYS */;
INSERT INTO `macro_processuses` (`id`, `name`, `description`, `io_elements`, `security_need_c`, `owner`, `created_at`, `updated_at`, `deleted_at`, `security_need_i`, `security_need_a`, `security_need_t`) VALUES (1,'Macro-Processus 1','<p>Description du macro-processus de test.</p>','<p>Entrant :</p><ul><li>donnée 1</li><li>donnée 2</li><li>donnée 3</li></ul><p>Sortant :</p><ul><li>donnée 4</li><li>donnée 5</li></ul>',4,'Nestor','2020-06-10 07:02:16','2021-05-14 13:29:36',NULL,3,2,1),
(2,'Macro-Processus 2','<p>Description du macro-processus</p>','<p>Valeur de test</p>',1,'Simon','2020-06-13 01:03:42','2021-05-14 07:21:10',NULL,2,3,4),
(3,'Valeur de test','<p>Valeur de test</p>','<p>Valeur de test</p>',3,'All','2020-08-09 05:32:37','2020-08-24 14:45:57','2020-08-24 14:45:57',NULL,NULL,NULL),
(4,'Proc3','<p>dfsdf</p>','<p>dsfsdf</p>',0,NULL,'2020-08-31 14:13:55','2020-08-31 14:31:29','2020-08-31 14:31:29',NULL,NULL,NULL),
(5,'Proc4','<p>dfsdf</p>','<p>dsfsdf</p>',0,NULL,'2020-08-31 14:19:32','2020-08-31 14:31:29','2020-08-31 14:31:29',NULL,NULL,NULL),
(6,'Proc5','<p>dfsdf</p>','<p>dsfsdf</p>',0,NULL,'2020-08-31 14:29:20','2020-08-31 14:31:29','2020-08-31 14:31:29',NULL,NULL,NULL),
(7,'MP1','<p>sdfsdfs</p>',NULL,0,NULL,'2020-08-31 14:31:40','2020-08-31 14:38:31','2020-08-31 14:38:31',NULL,NULL,NULL),
(8,'MP2','<p>sdfsdfs</p>',NULL,0,NULL,'2020-08-31 14:37:39','2020-08-31 14:38:31','2020-08-31 14:38:31',NULL,NULL,NULL),
(9,'MP3','<p>sdfsdfs</p>',NULL,0,NULL,'2020-08-31 14:38:06','2020-08-31 14:38:31','2020-08-31 14:38:31',NULL,NULL,NULL),
(10,'Macro-Processus 3','<p>Description du troisième macro-processus</p>','<ul><li>un</li><li>deux</li><li>trois</li><li>quatre</li></ul>',2,'Nestor','2020-11-24 08:21:38','2021-05-14 07:20:55',NULL,2,2,2),
(11,'Macro-Processus 4','<p>Description du macro processus quatre</p>','<ul><li>crayon</li><li>stylos</li><li>gommes</li></ul>',1,'Pirre','2021-05-14 07:19:51','2021-09-22 11:00:08','2021-09-22 11:00:08',1,1,1);
/*!40000 ALTER TABLE `macro_processuses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `man_wan`
--
LOCK TABLES `man_wan` WRITE;
/*!40000 ALTER TABLE `man_wan` DISABLE KEYS */;
INSERT INTO `man_wan` (`wan_id`, `man_id`) VALUES (1,1);
/*!40000 ALTER TABLE `man_wan` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `mans`