-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseeds.sql
More file actions
1496 lines (1485 loc) · 220 KB
/
Copy pathseeds.sql
File metadata and controls
1496 lines (1485 loc) · 220 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
-- Azkintun-RSS — dump de referencia de seeds
-- Generado por scripts/generate-seeds-sql.sh — NO editar a mano.
-- Contiene solo el schema y las carpetas/fuentes por defecto
-- (sin articulos ni usuarios). Para levantar una DB limpia:
-- sqlite3 nueva.db < seeds.sql
PRAGMA journal_mode = WAL;
PRAGMA foreign_keys = ON;
CREATE TABLE articles (
id INTEGER PRIMARY KEY AUTOINCREMENT,
source_id INTEGER NOT NULL REFERENCES sources(id) ON DELETE CASCADE,
title TEXT NOT NULL,
summary TEXT NOT NULL DEFAULT '',
severity TEXT NOT NULL DEFAULT 'medium',
published_at DATETIME,
read_time TEXT NOT NULL DEFAULT '2 MIN READ',
url TEXT NOT NULL UNIQUE,
image_url TEXT,
is_read INTEGER NOT NULL DEFAULT 0,
is_starred INTEGER NOT NULL DEFAULT 0,
fetched_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE fetch_log (
id INTEGER PRIMARY KEY AUTOINCREMENT,
source_id INTEGER,
source_name TEXT,
articles_found INTEGER NOT NULL DEFAULT 0,
articles_new INTEGER NOT NULL DEFAULT 0,
error TEXT,
fetched_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE folders (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL UNIQUE,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE schema_metadata (
key TEXT PRIMARY KEY,
value INTEGER
);
CREATE TABLE sources (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
rss_url TEXT NOT NULL UNIQUE,
folder_id INTEGER REFERENCES folders(id) ON DELETE SET NULL,
active INTEGER NOT NULL DEFAULT 1,
custom INTEGER NOT NULL DEFAULT 0,
last_fetch DATETIME,
last_error TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL UNIQUE,
password_hash TEXT NOT NULL,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX idx_articles_published ON articles(published_at);
CREATE INDEX idx_articles_read ON articles(is_read);
CREATE INDEX idx_articles_source ON articles(source_id);
CREATE INDEX idx_sources_folder ON sources(folder_id);
-- Carpetas
INSERT INTO folders (id, name) VALUES (8, 'ALERT');
INSERT INTO folders (id, name) VALUES (9, 'AWARENESS');
INSERT INTO folders (id, name) VALUES (20, 'Crypto');
INSERT INTO folders (id, name) VALUES (4, 'DATA BREACH');
INSERT INTO folders (id, name) VALUES (21, 'Dev');
INSERT INTO folders (id, name) VALUES (11, 'EXPLOIT');
INSERT INTO folders (id, name) VALUES (16, 'Home Lab');
INSERT INTO folders (id, name) VALUES (10, 'INDUSTRY');
INSERT INTO folders (id, name) VALUES (22, 'IoTSecurity');
INSERT INTO folders (id, name) VALUES (19, 'Linux');
INSERT INTO folders (id, name) VALUES (3, 'MALWARE');
INSERT INTO folders (id, name) VALUES (23, 'MachineLearning');
INSERT INTO folders (id, name) VALUES (14, 'Medios');
INSERT INTO folders (id, name) VALUES (24, 'Misc');
INSERT INTO folders (id, name) VALUES (26, 'MobileSecurity');
INSERT INTO folders (id, name) VALUES (17, 'Noticias');
INSERT INTO folders (id, name) VALUES (7, 'POLICY');
INSERT INTO folders (id, name) VALUES (27, 'Pwn');
INSERT INTO folders (id, name) VALUES (25, 'RedTeam');
INSERT INTO folders (id, name) VALUES (6, 'Research');
INSERT INTO folders (id, name) VALUES (28, 'Reverse');
INSERT INTO folders (id, name) VALUES (15, 'Seginfo - CVE');
INSERT INTO folders (id, name) VALUES (5, 'Seginfo - Noticias');
INSERT INTO folders (id, name) VALUES (12, 'Seginfo - OT');
INSERT INTO folders (id, name) VALUES (18, 'Seginfo - Podcasts');
INSERT INTO folders (id, name) VALUES (13, 'TECH');
INSERT INTO folders (id, name) VALUES (1, 'THREAT INTEL');
INSERT INTO folders (id, name) VALUES (2, 'VULNERABILITY');
INSERT INTO folders (id, name) VALUES (29, 'WebSecurity');
INSERT INTO folders (id, name) VALUES (30, 'WirelessSecurity');
-- Fuentes RSS por defecto
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (85, '4hou', 'https://www.4hou.com/feed', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (84, 'Anquanke', 'https://api.anquanke.com/data/v1/rss', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (43, 'Check Point Blog', 'https://blog.checkpoint.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (44, 'Check Point Research', 'https://research.checkpoint.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (50, 'Cisco Talos', 'https://feeds.feedburner.com/feedburner/Talos', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (32, 'CrowdStrike Blog', 'https://www.crowdstrike.com/blog/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (95, 'Cyber Kendra', 'https://www.cyberkendra.com/feeds/posts/default', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (72, 'CyberNews', 'https://cybernews.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (92, 'Cybersecurity News', 'https://securityonline.info/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (73, 'Darknet', 'http://feeds.feedburner.com/darknethackers', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (26, 'FBI Cyber', 'https://www.fbi.gov/news/feed', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (91, 'HackerNews.cc', 'http://hackernews.cc/feed', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (10, 'Intelligence Online', 'https://feeds.feedburner.com/IntelligenceOnline', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (33, 'Mandiant', 'https://www.mandiant.com/resources/blog/rss.xml', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (41, 'Palo Alto Networks', 'https://www.paloaltonetworks.com/blog/feed', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (52, 'Proofpoint Threat Insight', 'https://www.proofpoint.com/us/threat-insight-blog.xml', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (94, 'RedPacket Security', 'https://www.redpacketsecurity.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (11, 'Risky Business', 'https://risky.biz/rss.xml', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (58, 'SANS ISC', 'https://isc.sans.edu/rssfeed.xml', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (59, 'SANS ISC Full', 'https://isc.sans.edu/rssfeed_full.xml', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (12, 'Schneier on Security', 'https://www.schneier.com/feed/atom/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (69, 'The DFIR Report', 'https://thedfirreport.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (1, 'The Hacker News', 'https://feeds.feedburner.com/TheHackersNews', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (8, 'Threatpost', 'https://threatpost.com/feed/', 1, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (55, 'Apple Developer Releases', 'https://developer.apple.com/news/releases/rss/releases.rss', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (54, 'Apple Newsroom', 'https://www.apple.com/newsroom/rss-feed.rss', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (102, 'Appsecco', 'https://blog.appsecco.com/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (2, 'BleepingComputer', 'https://www.bleepingcomputer.com/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (76, 'Bugtraq', 'http://seclists.org/rss/bugtraq.rss', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (28, 'CCN-CERT', 'https://www.ccn-cert.cni.es/feed/avisos', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (98, 'CERT Vulnerability Notes', 'http://www.kb.cert.org/vulfeed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (13, 'CISA Advisories', 'https://www.cisa.gov/cybersecurity-advisories/all.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (14, 'CISA ICS Advisories', 'https://www.cisa.gov/cybersecurity-advisories/ics-advisories.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (15, 'CISA ICS Medical Advisories', 'https://www.cisa.gov/cybersecurity-advisories/ics-medical-advisories.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (56, 'CVEfeed.io', 'https://cvefeed.io/rssfeed/latest.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (77, 'CXSecurity', 'https://cxsecurity.com/wlb/rss/all/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (49, 'Cisco Security Blog', 'https://blogs.cisco.com/security/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (82, 'Der Flounder', 'https://derflounder.wordpress.com/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (40, 'FortiGuard PSIRT', 'https://www.fortiguard.com/rss/ir.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (39, 'Fortinet Blog', 'https://www.fortinet.com/blog/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (79, 'HackerOne Hacktivity', 'https://rss.ricterz.me/hacktivity', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (100, 'Intigriti', 'https://blog.intigriti.com/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (30, 'Microsoft Security', 'https://www.microsoft.com/en-us/security/blog/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (88, 'NSFocus', 'http://blog.nsfocus.net/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (42, 'Palo Alto Security Advisories', 'https://security.paloaltonetworks.com/rss.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (70, 'Pen Test Partners', 'https://www.pentestpartners.com/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (57, 'PortSwigger Blog', 'https://portswigger.net/blog/rss', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (101, 'Praetorian', 'https://www.praetorian.com/blog/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (38, 'Qualys Blog', 'https://blog.qualys.com/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (36, 'Rapid7 Blog', 'https://blog.rapid7.com/rss/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (37, 'Rapid7 Emergent Threats', 'https://blog.rapid7.com/tag/emergent-threat-response/rss/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (64, 'RedesZone', 'https://www.redeszone.net/feed/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (75, 'Seebug', 'https://www.seebug.org/rss/new/', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (35, 'Tenable Blog', 'https://www.tenable.com/blog/feed', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (90, 'Trickest CVE', 'https://github.com/trickest/cve/commits/main.atom', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (97, 'VulDB', 'https://vuldb.com/en/?rss.recent', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (96, 'Vulners', 'https://vulners.com/rss.xml', 2, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (47, 'Bitdefender', 'https://www.bitdefender.com/blog/hotforsecurity/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (51, 'Elastic Security Labs', 'https://www.elastic.co/security-labs/rss/feed.xml', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (45, 'Kaspersky Blog', 'https://www.kaspersky.com/blog/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (48, 'Malwarebytes Labs', 'https://blog.malwarebytes.com/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (3, 'SecurityWeek', 'https://feeds.feedburner.com/securityweek', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (53, 'SentinelOne', 'https://www.sentinelone.com/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (34, 'Sophos News', 'https://news.sophos.com/en-us/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (63, 'WeLiveSecurity', 'https://www.welivesecurity.com/en/rss/feed/', 3, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (4, 'The Record', 'https://therecord.media/feed/', 4, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (103, 'Troy Hunt', 'https://www.troyhunt.com/rss/', 4, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (145, 'All Fortinet Blog | Latest Posts', 'https://feeds.fortinet.com/fortinet/blogs&x=1', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (139, 'Cisco Talos', 'http://talosintelligence.com/feed.xml', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (137, 'Cybermaterial', 'https://cybermaterial.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (143, 'Cyble', 'https://cyble.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (7, 'Dark Reading', 'https://www.darkreading.com/rss.xml', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (147, 'Darknet', 'https://www.darknet.org.uk/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (162, 'Ehacking', 'https://www.ehacking.net/feed', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (159, 'English – We Live Security', 'https://www.welivesecurity.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (155, 'GBHackers On Security', 'https://gbhackers.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (153, 'HackRead', 'https://www.hackread.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (158, 'HackerOne', 'https://www.hackerone.com/blog.rss', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (144, 'Hackers – Blog de Grupo Aguilar Soluciones', 'https://blog.aguilarsoluciones.com/category/hackers/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (154, 'Hacking Articles', 'https://www.hackingarticles.in/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (141, 'Hacking Blogs | Become an Ethical Hacker', 'https://hackingblogs.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (146, 'Juan Brodersen', 'https://juanbrodersen.ar/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (156, 'KnowBe4 Security Awareness Training Blog', 'https://blog.knowbe4.com/rss.xml', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (5, 'Krebs on Security', 'https://krebsonsecurity.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (157, 'Latest Hacking News', 'https://latesthackingnews.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (149, 'Malwarebytes Unpacked', 'https://blog.malwarebytes.org/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (142, 'Microsoft Security Response Center', 'https://msrc.microsoft.com/blog/feed', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (31, 'Microsoft Security Update Guide', 'https://api.msrc.microsoft.com/update-guide/rss', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (163, 'MuySeguridad. Seguridad informática.', 'https://muyseguridad.net/feed', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (150, 'Naked Security', 'https://news.sophos.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (140, 'Nextron Systems', 'https://www.nextron-systems.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (152, 'Posts – Major League Hacking News', 'http://news.mlh.io/posts/feed', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (138, 'SECURITY.COM', 'https://www.security.com/rss/v1/blogs/rss.xml', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (161, 'Schneier on Security', 'https://www.schneier.com/blog/index.rdf', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (46, 'Securelist', 'https://securelist.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (148, 'Securelist - Information about Viruses, Hackers and Spam', 'https://www.securelist.com/en/rss/allupdates', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (78, 'Security Boulevard', 'https://securityboulevard.com/feed/', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (151, 'The Hacker Factor Blog', 'https://www.hackerfactor.com/blog/index.php?/feeds/index.rss2', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (160, 'The Hacker News', 'https://thehackernews.com/feeds/posts/default', 5, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (976, '0xacb', 'https://0xacb.com/feed.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (980, 'ACM CCS', 'https://rsshub.app/sigsac/ccs', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (983, 'Adam Doupé', 'https://adamdoupe.com/atom.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (6, 'Ars Technica Security', 'https://arstechnica.com/security/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (61, 'Google Online Security', 'https://feeds.feedburner.com/GoogleOnlineSecurityBlog', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (60, 'Google Project Zero', 'https://googleprojectzero.blogspot.com/feeds/posts/default?alt=rss', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (62, 'Google TAG', 'https://blog.google/threat-analysis-group/rss/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (970, 'Hack Inn', 'https://www.hackinn.com/index.php/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (982, 'IEEE Transactions on Dependable and Secure Computing', 'https://rsshub.app/ieee/journal/8858', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (981, 'IEEE Transactions on Information Forensics and Security', 'https://rsshub.app/ieee/journal/10206', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (80, 'InfoSec Write-ups', 'https://infosecwriteups.com/feed', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (972, 'Latest Secunia Blog EntriesSecunia.com', 'http://secunia.com/blog_rss/blog.rss', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (979, 'NDSS', 'https://rsshub.app/ndss-symposium/ndss', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (969, 'NISL@THU', 'http://netsec.ccert.edu.cn/feed.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (977, 'S&P', 'https://rsshub.app/ieee-security/security-privacy', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (81, 'STAR Labs', 'https://starlabs.sg/publications/index.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (973, 'SecDr', 'http://secdr.github.io/atom.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (975, 'Stories by SAP Security Research on Medium', 'https://medium.com/feed/@sap.security.research', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (984, 'Suyoung Lee', 'https://leeswimming.com/feed.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (89, 'Tencent Xuanwu Lab', 'https://xlab.tencent.com/cn/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (974, 'Toooold', 'https://toooold.com/feed.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (99, 'Trail of Bits', 'https://blog.trailofbits.com/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (978, 'USENIX', 'https://rsshub.app/usenix/usenix-security-sympoium', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (971, 'muellis blog', 'https://blogs.gnome.org/muelli/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (87, 'paper - Last paper', 'https://paper.seebug.org/rss/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (86, 'tttang', 'https://www.tttang.com/rss.xml', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (968, 'vusec', 'https://www.vusec.net/feed/', 6, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (9, 'CyberScoop', 'https://cyberscoop.com/feed', 7, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (25, 'ENISA', 'https://www.enisa.europa.eu/rss/publications', 7, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (24, 'NSA Cybersecurity', 'https://www.nsa.gov/Press-Room/Press-Releases-Statements/feed/', 7, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (16, 'ASD ACSC Alerts', 'https://www.cyber.gov.au/rss/alerts', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (23, 'CERT-EU', 'https://cert.europa.eu/publications/newsletter%20RSS', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (17, 'CERT-FR', 'https://www.cert.ssi.gouv.fr/feed/', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (27, 'INCIBE', 'https://www.incibe.es/feed/alertas-tempranas', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (18, 'JPCERT/CC', 'https://www.jpcert.or.jp/english/rss/jpcert-en.rdf', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (19, 'JPCERT/CC Blog', 'https://blogs.jpcert.or.jp/en/atom.xml', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (20, 'UK NCSC All', 'https://www.ncsc.gov.uk/api/1/services/v1/all-rss-feed.xml', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (21, 'UK NCSC News', 'https://www.ncsc.gov.uk/api/1/services/v1/news-rss-feed.xml', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (22, 'UK NCSC Reports', 'https://www.ncsc.gov.uk/api/1/services/v1/report-rss-feed.xml', 8, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (29, 'OSI', 'https://www.osi.es/feed/actualidad', 9, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (65, 'Cybersecurity Dive', 'https://www.cybersecuritydive.com/feeds/news/', 10, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (93, 'Infosecurity Magazine', 'http://www.infosecurity-magazine.com/rss/news/', 10, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (66, 'Exploit-DB', 'https://www.exploit-db.com/rss.xml', 11, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (71, 'Packet Storm', 'https://rss.packetstormsecurity.com/files/', 11, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (74, 'Sploitus', 'https://sploitus.com/rss', 11, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (68, 'ZDI Blog', 'https://www.zerodayinitiative.com/blog?format=rss', 11, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (67, 'ZDI Published', 'https://www.zerodayinitiative.com/rss/published/', 11, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (83, 'Attify Blog', 'https://blog.attify.com/rss/', 12, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (134, 'CIP Cyber', 'https://cipcyber.com/feed', 12, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (136, 'IoT Security Foundation', 'https://iotsecurityfoundation.org/feed/', 12, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (135, 'IoTAgenda: IoT Agenda', 'https://internetofthingsagenda.techtarget.com/rss/IoT-Agenda.xml', 12, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (104, 'Hacker News Frontpage', 'https://hnrss.org/frontpage', 13, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (105, 'Elena Rossini', 'https://elenarossini.com/feed/', 14, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (107, 'INCIBE-CERT - Vulnerabilities RSS', 'https://www.incibe.es/feed/vulnerabilities', 15, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (106, 'vuldb.com', 'https://vuldb.com/?rss.recent', 15, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (108, '/r/homelab - for those who have a computer lab at home...', 'https://www.reddit.com/r/homelab/.rss', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (109, 'HomeLab Porn', 'https://www.reddit.com/r/HomeLabPorn/.rss?', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (112, 'Homelab on Medium', 'https://medium.com/feed/tag/homelab', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (114, 'Jeff Geerling''s Blog', 'https://www.jeffgeerling.com/blog.xml', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (111, 'Noted', 'https://noted.lol/rss/', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (115, 'homelab subreddits curated by /u/lawrencesystems', 'https://www.reddit.com/user/lawrencesystems/m/homelab/.rss', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (110, 'homelabbity', 'https://www.reddit.com/r/homelab/.rss?', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (113, 'selfh.st', 'https://selfh.st/rss/', 16, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (116, 'Ciberprisma – alianza por la ciberseguridad', 'https://ciberprisma.org/feed/', 17, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (119, 'Hackaday', 'https://hackaday.com/feed/', 17, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (117, 'KittenLabs – Blog', 'https://kittenlabs.de/blog/index.xml', 17, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (118, 'TechCrunch', 'https://techcrunch.com/feed/', 17, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (123, 'CYBER', 'https://rss.acast.com/cyber', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (124, 'Darknet Diaries', 'https://feeds.megaphone.fm/darknetdiaries', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (122, 'Hacker Public Radio', 'https://hackerpublicradio.org/hpr_rss.php', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (121, 'MEET THE HACKER', 'https://anchor.fm/s/6728bde4/podcast/rss', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (125, 'Off The Hook (high-bitrate)', 'https://www.2600.com/oth-broadband.xml', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (120, 'SANS Internet Storm Center Daily Network Security and Computer Security Podcast', 'https://isc.sans.edu/dailypodcast.xml', 18, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (126, 'CNXSoft - Embedded Software Development', 'https://www.cnx-software.com/feed/', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (127, 'It''s FOSS News', 'https://news.itsfoss.com/latest/rss/', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (128, 'LWN.net', 'https://lwn.net/headlines/rss', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (129, 'Linux Kernel Newbies', 'https://kernelnewbies.org/Linux_Kernel_Newbies?action=rss_rc&unique=1&ddiffs=1', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (133, 'MuyLinux', 'https://muylinux.com/feed', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (130, 'Phoronix', 'https://www.phoronix.com/rss.php', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (132, 'Slashdot', 'https://rss.slashdot.org/Slashdot/slashdot', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (131, 'Slashdot: Linux', 'https://rss.slashdot.org/Slashdot/slashdotLinux', 19, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (165, 'A Few Thoughts on Cryptographic Engineering', 'http://blog.cryptographyengineering.com/feeds/posts/default', 20, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (164, 'Dave Conroy', 'http://www.daveconroy.com/feed/', 20, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (167, 'Snowming04''s Blog', 'http://snowming.me/feed/', 20, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (168, 'Vitalik Buterin''s website', 'https://vitalik.ca/feed.xml', 20, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (166, 'rdist', 'https://rdist.root.org/feed/', 20, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (173, 'Armin Ronacher''s Thoughts and Writings', 'https://lucumr.pocoo.org/feed.atom', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (169, 'ArthurChiao''s Blog', 'http://arthurchiao.art/feed.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (180, 'C0reFast记事本', 'https://www.ichenfu.com/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (175, 'Coding (In)Security', 'http://coding-insecurity.blogspot.com/feeds/posts/default', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (174, 'Fleetsmith Blog', 'https://blog.fleetsmith.com/rss/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (183, 'Jiajun的技术笔记', 'https://jiajunhuang.com/rss', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (190, 'Maxiee Blog', 'https://maxieewong.com/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (181, 'Mohuishou', 'https://lailin.xyz/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (193, 'Mozilla Hacks – the Web developer blog', 'https://hacks.mozilla.org/feed/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (182, 'No Headback', 'https://xargin.com/rss/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (194, 'Random ASCII – tech blog of Bruce Dawson', 'https://randomascii.wordpress.com/feed/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (195, 'Rob Zolkos', 'https://www.zolkos.com/feed.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (177, 'Sukka''s Blog', 'https://blog.skk.moe/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (189, 'Taxodium', 'https://taxodium.ink/index.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (185, 'Verne in GitHub', 'https://einverne.github.io/feed.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (191, 'Web3Rover Monthly', 'https://web3rover.substack.com/feed', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (170, 'WeiyiGeek Blog', 'https://blog.weiyigeek.top/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (172, 'Xiaoxia[PG]', 'https://xiaoxia.org/feed/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (179, 'cloud world', 'https://cloudsjhan.github.io/atom.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (187, 'myfreax', 'https://www.myfreax.com/rss/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (178, 'zifangsky的个人博客', 'https://www.zifangsky.cn/feed', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (186, '博客', 'https://dyrnq.com/feed/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (184, '她和她的猫', 'https://her-cat.com/posts/index.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (188, '小火箭', 'https://yangxikun.com/rss.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (176, '机智的程序员小熊', 'https://coding3min.com/feed/', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (196, '美团技术团队', 'https://tech.meituan.com/feed', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (192, '酱紫表', 'https://blog.qust.me/feed', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (171, '青空之蓝', 'https://blog.ixk.me/rss.xml', 21, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (198, 'Web Reflection', 'http://webreflection.blogspot.com/feeds/posts/default', 22, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (197, 'bunnie''s blog', 'https://www.bunniestudios.com/blog/?feed=rss2', 22, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (199, '世事难料,保持低调', 'http://blog.csdn.net/ariesjzj/rss/list', 23, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (445, '360Quake空间测绘', 'https://wechat2rss.xlab.app/feed/fd912d34201eea9dbaaa73e22bffee21636c0f9e.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (539, '360威胁情报中心', 'https://wechat2rss.xlab.app/feed/920f171e3dae0c8eeb4c97b366b229ba19807732.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (517, '360数字安全', 'https://wechat2rss.xlab.app/feed/85e7bf4fe192ded1a15f130aa43ac306d227f61b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (403, '360漏洞云', 'https://wechat2rss.xlab.app/feed/ca1fddd8505a3473feed12c0bee898e97d4d5eae.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (331, '36氪', 'https://36kr.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (335, '404 Media', 'https://www.404media.co/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (416, '404NotF0und', 'https://wechat2rss.xlab.app/feed/56ccecd04a64c0459442d07f30325218f8b4f210.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (541, '41group', 'https://wechat2rss.xlab.app/feed/d840d8b21d5635eb5b332a61f472de54579c8a30.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (526, '4ra1n', 'https://wechat2rss.xlab.app/feed/30d26f1caaba15501cc713e10995ccb55e6c3fad.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (426, '58安全应急响应中心', 'https://wechat2rss.xlab.app/feed/f4ff9e0e30f68dd38a44232522bdb980791a7587.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (351, '90Sec - 专注于网络空间安全', 'https://forum.90sec.com/latest.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (557, 'Alexander V. Leonov', 'https://avleonov.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (328, 'Ars Technica', 'https://feeds.arstechnica.com/arstechnica/index', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (315, 'Articles | InfoStealers', 'https://www.infostealers.com/learn-info-stealers/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (505, 'Beacon Tower Lab', 'https://wechat2rss.xlab.app/feed/63453a813df919bb2cf5419e6aed91bf0fea5fa7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (344, 'Ben''s Bites', 'https://www.bensbites.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (336, 'ByteByteGo', 'https://blog.bytebytego.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (455, 'CNCERT风险评估', 'https://wechat2rss.xlab.app/feed/c6662e88d278561b8293a607dcdcbe26aea98e04.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (547, 'CNNVD安全动态', 'https://wechat2rss.xlab.app/feed/899e0eaf0e3ea7abac0211b3db9bb39c616e3255.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (472, 'CNVD漏洞平台', 'https://wechat2rss.xlab.app/feed/edf17c7a01a7152b7a1ca14133258dc4abc1ca61.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (492, 'ChaBug', 'https://wechat2rss.xlab.app/feed/b801577ef970fa6a877911dfd37a7c9ca681d66a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (382, 'ChaMd5安全团队', 'https://wechat2rss.xlab.app/feed/ffb536c22df3989d8077ce9babb475f41719d62d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (553, 'ChainReactor', 'https://wechat2rss.xlab.app/feed/3f75ff947e69e405fc675d0f698988fc56876fc2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (549, 'CodeWisdom', 'https://wechat2rss.xlab.app/feed/4e361ed9f2258098a35e02a6b738d6e53107f8bb.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (523, 'DarkNavy', 'https://wechat2rss.xlab.app/feed/0d4ffa4a2127cb603c2da49daa678b0e780fd66b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (225, 'Data Breach', 'https://securityaffairs.co/wordpress/category/data-breach/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (432, 'DataCon大数据安全分析比赛', 'https://wechat2rss.xlab.app/feed/4ebcb3d5a0bdb5fada48eb901a77910f8cbef585.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (524, 'Desync InfoSec', 'https://wechat2rss.xlab.app/feed/9e1ec91d1a8cb22871f812bbe62fb7fe6c7b3e28.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (319, 'Emergent Minds | paddo.dev', 'https://paddo.dev/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (320, 'Engineering', 'https://rss.app/feeds/E5pQ7SXRZQVEiFuh.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (558, 'Fidelis Security', 'https://fidelissecurity.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (218, 'Filippo Valsorda', 'https://blog.filippo.io/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (399, 'Flanker论安全', 'https://wechat2rss.xlab.app/feed/18cb4f6ce17f4be6e5062dfb47a6036fe9c36a25.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (522, 'FuzzWiki', 'https://wechat2rss.xlab.app/feed/1ec2c6e96e3acea1281658383ee23f212a4f22a4.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (401, 'GobySec', 'https://wechat2rss.xlab.app/feed/84fdb53acad07ab607128a9f387cefdee53809dd.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (327, 'Google AI Blog', 'https://blog.google/technology/ai/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (338, 'Google DeepMind Blog', 'https://deepmind.google/blog/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (208, 'Google Online Security Blog', 'http://googleonlinesecurity.blogspot.com/feeds/posts/default', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (556, 'Google Online Security Blog', 'http://feeds.feedburner.com/GoogleOnlineSecurityBlog?format=xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (226, 'HackerNoon', 'https://hackernoon.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (421, 'Hacking就是好玩', 'https://wechat2rss.xlab.app/feed/01af96b91d0bd5570ab2c3f1237436791fd47d90.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (318, 'Honra.io Insights', 'https://www.honra.io/articles/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (324, 'Hugging Face Blog', 'https://huggingface.co/blog/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (343, 'IEEE Spectrum', 'https://spectrum.ieee.org/feeds/feed.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (212, 'InfosecMatter', 'https://www.infosecmatter.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (459, 'KCon黑客大会', 'https://wechat2rss.xlab.app/feed/0aca9799e72cc5f479d8a7b9ceda70d7e2193eb1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (214, 'LIFE likes a MATRIX', 'http://baronpan.blogspot.com/feeds/posts/default?alt=rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (317, 'LangChain Blog', 'https://blog.langchain.com/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (323, 'Lil''Log', 'https://lilianweng.github.io/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (442, 'M01NTeam', 'https://wechat2rss.xlab.app/feed/059ae07ca76f11c6e9f9fad7698ab205b3b039c8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (333, 'MIT Technology Review', 'https://www.technologyreview.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (205, 'Microsoft Security Blog', 'https://www.microsoft.com/security/blog/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (521, 'NISL实验室', 'https://wechat2rss.xlab.app/feed/9c5931fa813fd1a38149e52d5809ce9b19a48ec4.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (548, 'NOP Team', 'https://wechat2rss.xlab.app/feed/3f56e6d80d7e3e5f73983bfa6c06045ff62f1530.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (203, 'NOSEC 安全讯息平台 - 漏洞预警', 'https://rsshub.app/nosec/hole', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (350, 'NOSEC 安全讯息平台 - 漏洞预警', 'https://rsshub.zhengjim.com/nosec/hole', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (469, 'NOVASEC', 'https://wechat2rss.xlab.app/feed/74ce3507f54a7a5145a4ddd6e4e3407fd76705b5.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (337, 'NVIDIA AI Blog', 'https://blogs.nvidia.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (476, 'OPPO安全应急响应中心', 'https://wechat2rss.xlab.app/feed/3cacd8073bf05a6d23b63613aad68f1c47d846ec.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (531, 'OnionSec', 'https://wechat2rss.xlab.app/feed/71d830505c0eb2d4e2627dbf1dfc2b2971bc240b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (325, 'OpenAI Blog', 'https://openai.com/blog/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (322, 'OpenAI Newsroom | Engineering', 'https://rss.app/feeds/75Fpp0Mbx9x4TbDs.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (339, 'Product Hunt', 'https://www.producthunt.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (316, 'PromptLayer', 'https://blog.promptlayer.com/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (206, 'RSA Blog', 'https://www.rsa.com/en-us/blog/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (506, 'RainSec', 'https://wechat2rss.xlab.app/feed/086e8d1d0035fb4418b3c2608f7166353e0628dc.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (435, 'RapidDNS', 'https://wechat2rss.xlab.app/feed/2b62c59e45bd71ff9f475c93626cd4871c99f185.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (529, 'RedTeam', 'https://wechat2rss.xlab.app/feed/5ca1e75ce245541f45d8c3aa00b81ea11e3177c2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (326, 'Sebastian Raschka', 'https://magazine.sebastianraschka.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (213, 'Sec-News 安全文摘', 'http://wiki.ioin.in/atom', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (228, 'Sec-News 安全文摘', 'https://govuln.com/news/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (207, 'SecWiki News', 'https://www.sec-wiki.com/news/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (224, 'SecurityWeek » Feed', 'https://www.securityweek.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (365, 'Seebug漏洞平台', 'https://wechat2rss.xlab.app/feed/be2795d741304af2370cbf8d31d1e5d3675f8e85.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (559, 'Stories by Kevin Beaumont on Medium', 'https://medium.com/feed/@networksecurity', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (221, 'SuspeK', 'https://www.suspekt.org/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (533, 'T00ls安全', 'https://wechat2rss.xlab.app/feed/ff110d45e94f7e57706e2c0d86d29d16922f43d3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (211, 'Tenable Blog', 'https://feeds.feedburner.com/tenable/qaXL', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (345, 'The Decoder', 'https://the-decoder.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (329, 'The Verge', 'https://www.theverge.com/rss/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (201, 'The World of IT & Cyber Security: ehacking.net', 'http://www.ehacking.net/feeds/posts/default', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (209, 'Tianyong Tang', 'http://tang3w.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (433, 'Tide安全团队', 'https://wechat2rss.xlab.app/feed/fb1486a83f41d2b3ab5758c9811936beaa762097.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (334, 'VentureBeat AI', 'https://venturebeat.com/category/ai/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (470, 'Viola后花园', 'https://wechat2rss.xlab.app/feed/e666c56abbe20a645da315f389ca6247eed264e2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (376, 'Web安全与前端', 'https://wechat2rss.xlab.app/feed/837190f74457627e0a5567700c573fe8afd7d3fe.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (342, 'Wired', 'https://www.wired.com/feed/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (446, 'XCTF联赛', 'https://wechat2rss.xlab.app/feed/4d448e1e341361f81e9dd715b84f4c324053251b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (497, 'Yak Project', 'https://wechat2rss.xlab.app/feed/1800f529b600474a4cd0434c65654c483739e192.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (220, 'Zero Day Initiative Advisories (published)', 'http://feed43.com/5146433407638526.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (278, 'abortretry.fail', 'https://www.abortretry.fail/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (306, 'anildash.com', 'https://anildash.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (233, 'antirez.com', 'http://antirez.com/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (307, 'aresluna.org', 'https://aresluna.org/main.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (288, 'beej.us', 'https://beej.us/blog/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (296, 'bernsteinbear.com', 'https://bernsteinbear.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (284, 'berthub.eu', 'https://berthub.eu/articles/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (462, 'bigsec岂安科技', 'https://wechat2rss.xlab.app/feed/42ae6dc8b414f4be915ce93ae03d8f8460179c72.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (271, 'blog.jim-nielsen.com', 'https://blog.jim-nielsen.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (300, 'blog.pixelmelt.dev', 'https://blog.pixelmelt.dev/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (508, 'bluE0x00', 'https://wechat2rss.xlab.app/feed/9767c848d0a4d5858d8bb565bc762dde94eeeee1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (281, 'bogdanthegeek.github.io', 'https://bogdanthegeek.github.io/blog/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (264, 'borretti.me', 'https://borretti.me/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (276, 'brutecat.com', 'https://brutecat.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (263, 'buttondown.com/hillelwayne', 'https://buttondown.com/hillelwayne/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (285, 'chadnauseam.com', 'https://chadnauseam.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (303, 'chiark.greenend.org.uk/~sgtatham', 'https://www.chiark.greenend.org.uk/~sgtatham/quasiblog/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (217, 'codeblog', 'http://www.outflux.net/blog/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (312, 'computer.rip', 'https://computer.rip/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (259, 'construction-physics.com', 'https://www.construction-physics.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (302, 'danielchasehooper.com', 'https://danielchasehooper.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (297, 'danieldelaney.net', 'https://danieldelaney.net/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (290, 'danielwirtz.com', 'https://danielwirtz.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (231, 'daringfireball.net', 'https://daringfireball.net/feeds/main', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (427, 'debugeeker', 'https://wechat2rss.xlab.app/feed/7772ec79ac327394596861ae412fc25a823e09d0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (562, 'defend.network', 'https://defend.network/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (251, 'derekthompson.org', 'https://www.theatlantic.com/feed/author/derek-thompson/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (243, 'devblogs.microsoft.com/oldnewthing', 'https://devblogs.microsoft.com/oldnewthing/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (272, 'dfarq.homeip.net', 'https://dfarq.homeip.net/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (414, 'dotNet安全研究僧', 'https://wechat2rss.xlab.app/feed/f5af2c80f2132cb0ea9cf4094145ece266a59bc3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (275, 'downtowndougbrown.com', 'https://www.downtowndougbrown.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (314, 'dwarkesh.com', 'https://www.dwarkeshpatel.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (240, 'dynomight.net', 'https://dynomight.net/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (277, 'eli.thegreenplace.net', 'https://eli.thegreenplace.net/feeds/all.atom.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (262, 'entropicthoughts.com', 'https://entropicthoughts.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (232, 'ericmigi.com', 'https://ericmigi.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (252, 'evanhahn.com', 'https://evanhahn.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (305, 'experimental-history.com', 'https://www.experimental-history.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (279, 'fabiensanglard.net', 'https://fabiensanglard.net/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (270, 'filfre.net', 'https://www.filfre.net/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (245, 'garymarcus.substack.com', 'https://garymarcus.substack.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (274, 'geoffreylitt.com', 'https://www.geoffreylitt.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (268, 'geohot.github.io', 'https://geohot.github.io/blog/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (249, 'gilesthomas.com', 'https://gilesthomas.com/feed/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (304, 'grantslatton.com', 'https://grantslatton.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (283, 'gwern.net', 'https://gwern.substack.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (298, 'herman.bearblog.dev', 'https://herman.bearblog.dev/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (289, 'hey.paris', 'https://hey.paris/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (525, 'huasec', 'https://wechat2rss.xlab.app/feed/f193cadd8ff8418e027af5e22609abbe04a66687.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (282, 'hugotunius.se', 'https://hugotunius.se/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (234, 'idiallo.com', 'https://idiallo.com/feed.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (287, 'it-notes.dragas.net', 'https://it-notes.dragas.net/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (266, 'jayd.ml', 'https://jayd.ml/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (255, 'joanwestenberg.com', 'https://joanwestenberg.com/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (248, 'johndcook.com', 'https://www.johndcook.com/blog/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (273, 'jyn.dev', 'https://jyn.dev/atom.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (436, 'kernsec', 'https://wechat2rss.xlab.app/feed/4767e1bec36c42a1c1cf1c991a3a1a027d1b49a5.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (310, 'keygen.sh', 'https://keygen.sh/blog/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (238, 'lcamtuf.substack.com', 'https://lcamtuf.substack.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (441, 'leveryd', 'https://wechat2rss.xlab.app/feed/742b34be22c0c323804fa9b541aa717571cd8147.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (301, 'martinalderson.com', 'https://martinalderson.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (291, 'matduggan.com', 'https://matduggan.com/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (250, 'matklad.github.io', 'https://matklad.github.io/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (235, 'maurycyz.com', 'https://maurycyz.com/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (257, 'micahflee.com', 'https://micahflee.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (308, 'michael.stapelberg.ch', 'https://michael.stapelberg.ch/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (309, 'miguelgrinberg.com', 'https://blog.miguelgrinberg.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (267, 'minimaxir.com', 'https://minimaxir.com/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (239, 'mitchellh.com', 'https://mitchellh.com/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (311, 'mjg59.dreamwidth.org', 'https://mjg59.dreamwidth.org/data/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (410, 'n1nty', 'https://wechat2rss.xlab.app/feed/48215981e3bd81ce5f1739196cddf14b59835193.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (258, 'nesbitt.io', 'https://nesbitt.io/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (227, 'noob-hackers', 'http://feeds.feedburner.com/noob-hackers/uRyN', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (280, 'oldvcr.blogspot.com', 'https://oldvcr.blogspot.com/feeds/posts/default', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (246, 'overreacted.io', 'https://overreacted.io/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (269, 'paulgraham.com', 'http://www.aaronsw.com/2002/feeds/pgessays.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (294, 'philiplaine.com', 'https://philiplaine.com/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (560, 'phpMyAdmin security announcements', 'http://www.phpmyadmin.net/home_page/security/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (236, 'pluralistic.net', 'https://pluralistic.net/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (330, 'r/MachineLearning', 'https://www.reddit.com/r/MachineLearning/.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (254, 'rakhim.exotext.com', 'https://rakhim.exotext.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (292, 'refactoringenglish.com', 'https://refactoringenglish.com/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (244, 'righto.com', 'https://www.righto.com/feeds/posts/default', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (230, 'seangoedecke.com', 'https://www.seangoedecke.com/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (237, 'shkspr.mobi', 'https://shkspr.mobi/blog/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (286, 'simone.org', 'https://simone.org/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (229, 'simonwillison.net', 'https://simonwillison.net/atom/everything/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (313, 'skyfall.dev', 'https://skyfall.dev/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (380, 'sosly菜鸟笔记', 'https://wechat2rss.xlab.app/feed/3b20077b01e05fe90c8d62aa2743c36ed8b5165a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (295, 'steveblank.com', 'https://steveblank.com/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (261, 'susam.net', 'https://susam.net/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (260, 'tedium.co', 'https://feed.tedium.co/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (253, 'terriblesoftware.org', 'https://terriblesoftware.org/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (204, 'the morning paper', 'https://blog.acolyer.org/feed/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (247, 'timsh.org', 'https://timsh.org/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (299, 'tomrenner.com', 'https://tomrenner.com/index.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (222, 'unSafe.sh - 不安全', 'https://buaq.net/rss.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (241, 'utcc.utoronto.ca/~cks', 'https://utcc.utoronto.ca/~cks/space/blog/?atom', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (387, 'vivo千镜安全实验室', 'https://wechat2rss.xlab.app/feed/6f07fe5af57e7a13c75b12bd0718840bdf4dc3f2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (265, 'wheresyoured.at', 'https://www.wheresyoured.at/rss/', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (293, 'worksonmymachine.substack.com', 'https://worksonmymachine.substack.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (256, 'xania.org', 'https://xania.org/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (242, 'xeiaso.net', 'https://xeiaso.net/blog.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (384, 'xray社区', 'https://wechat2rss.xlab.app/feed/19e49fc43c29d227aed74edba9830e7e1c71161e.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (392, '丁爸情报分析师的工具箱', 'https://wechat2rss.xlab.app/feed/4fad165589ac854de97e576a6dbcfbd8b9f75320.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (468, '专注安管平台', 'https://wechat2rss.xlab.app/feed/1a525e06c123c345dae49c4992df35964b8c4d53.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (500, '且听安全', 'https://wechat2rss.xlab.app/feed/88ffe63b5cffb34f8096461bdeaea02049987c70.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (450, '中国信息安全', 'https://wechat2rss.xlab.app/feed/567cb1a8cf49f3e2c141d9d8085712f42ffc2fef.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (481, '中通安全应急响应中心', 'https://wechat2rss.xlab.app/feed/fc8ebaf92e238784242d7b967d84584a46d1c23d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (498, '乐枕迭代日志', 'https://wechat2rss.xlab.app/feed/91295bd6da13eb5cd50a544a9d3df76f6f863fac.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (431, '二道情报贩子', 'https://wechat2rss.xlab.app/feed/86512202e74d01447788f355c4a4171a3c86740a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (425, '云鼎实验室', 'https://wechat2rss.xlab.app/feed/d762fbf5f8f256afb63bcfe9a362184072338819.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (402, '互联网安全内参', 'https://wechat2rss.xlab.app/feed/d5eb8577bf93aacdd7481ad0c3364939096b99a1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (478, '京东安全应急响应中心', 'https://wechat2rss.xlab.app/feed/9bce95ccd16c1e5e30f45722847cc9ea2a27c09d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (396, '代码卫士', 'https://wechat2rss.xlab.app/feed/77cfc87fa0e7200d7ef74c8956eca2e44fd6a4ec.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (395, '代码审计SDL', 'https://wechat2rss.xlab.app/feed/bec4267fed1028fa85c18e1281f7a358d6c8c706.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (405, '信安之路', 'https://wechat2rss.xlab.app/feed/05b37f288856a510f293be0ff7ef4dfe212ec7e0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (447, '信息安全国家工程研究中心', 'https://wechat2rss.xlab.app/feed/7caad9bdb6b168fe174bc815a9b44b7f52d7198b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (219, '信息安全知识库', 'http://vipread.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (366, '信息时代的犯罪侦查', 'https://wechat2rss.xlab.app/feed/58217cc5c14a568f5b4141527344b58ba7449380.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (210, '先知安全技术社区', 'https://xz.aliyun.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (223, '先知安全技术社区', 'https://xianzhi2rss.xlab.app/feed.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (513, '全闲话', 'https://wechat2rss.xlab.app/feed/a36d83e725f688bd999b039c259940f72d3514b3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (383, '全频带阻塞干扰', 'https://wechat2rss.xlab.app/feed/d2b0dc03acc579a8a9c7aa45bf1f531ed5563f59.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (215, '公告列表-阿里云帮助中心', 'https://rsshub.app/aliyun/notice/2', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (370, '关注安全技术', 'https://wechat2rss.xlab.app/feed/2f38aa5ec9e067b1d02196f5a50665f8ec23a4e4.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (385, '农夫安全团队', 'https://wechat2rss.xlab.app/feed/ea9b226a78afac0166bb9bdee7de836766441073.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (347, '华为安全通告', 'https://www.huawei.com/cn/rss-feeds/psirt/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (321, '博客 · Cursor', 'https://rss.app/feeds/gURU8i2ldFzpwRCr.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (400, '同程旅行安全应急响应中心', 'https://wechat2rss.xlab.app/feed/b12f8ab2025298044029c05a3c26c3bfe8e9256a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (393, '君哥的体历', 'https://wechat2rss.xlab.app/feed/947b46dba9754e10360d267a5ee9a87597e0bafe.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (514, '吴鲁加', 'https://wechat2rss.xlab.app/feed/9ce69c7f41d24a340778d34bfc977dd71b40c203.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (356, '吾爱破解论坛', 'https://wechat2rss.xlab.app/feed/90c827b8290310a96ef80a13df9dbcc06ab69892.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (480, '唯品会安全应急响应中心', 'https://wechat2rss.xlab.app/feed/7419897e85fdd038ed2f390a5859b730657ec7ff.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (485, '喜马拉雅安全响应平台', 'https://wechat2rss.xlab.app/feed/ad318af292cc4ba7c2466b7a2665b18f760c72ae.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (493, '嘶吼专业版', 'https://wechat2rss.xlab.app/feed/d351be711510e0b7ccbcb275cdfab5c4c7e3e839.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (434, '回忆飘如雪', 'https://wechat2rss.xlab.app/feed/fa41acf1a0d9c54d4caf973349e7bd99d5de61c6.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (503, '墨菲安全', 'https://wechat2rss.xlab.app/feed/e7d4a6f783d2e42b91a70a9f802e590444d62952.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (471, '复旦白泽战队', 'https://wechat2rss.xlab.app/feed/882ec123376dc8e89d3c5f6ef4bd2fdd0af65465.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (509, '夏虫知冰', 'https://wechat2rss.xlab.app/feed/6f5a7b292b4b0232ccf1c8e2b7819b98dcdb173a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (542, '大兵说安全', 'https://wechat2rss.xlab.app/feed/e5d7d4cd30d4467c6e50410a89bd5262c21eae22.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (417, '天御攻防实验室', 'https://wechat2rss.xlab.app/feed/8b57281ce8c62c8bf12743aeb0279bfb807eb00d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (486, '天融信阿尔法实验室', 'https://wechat2rss.xlab.app/feed/a9cfdddef757b0ebac0428f629869b69028c43fa.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (408, '天黑说嘿话', 'https://wechat2rss.xlab.app/feed/d5a661c1beccdff18ba1ae018514e4d702feac74.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (352, '奇安信CERT', 'https://wechat2rss.xlab.app/feed/981c000a01bbdc1f128d260cc91c15d3a6afb530.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (546, '奇安信XLab', 'https://wechat2rss.xlab.app/feed/5c7b6eec254fbb0afac7abf4eae95573fc374555.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (391, '奇安信威胁情报中心', 'https://wechat2rss.xlab.app/feed/b93962f981247c0091dad08df5b7a6864ab888e9.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (407, '奇安信病毒响应中心', 'https://wechat2rss.xlab.app/feed/7874947663d806190d77bdca6f8f6855f65a1b20.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (555, '奇客Solidot–传递最新科技情报', 'https://www.solidot.org/index.rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (363, '威努特工控安全', 'https://wechat2rss.xlab.app/feed/ee4960f396fadae69f69e0711da85f1196e03651.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (443, '威胁棱镜', 'https://wechat2rss.xlab.app/feed/63688861efb2362716368e36b7f8b8b61d0394a9.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (496, '娜璋AI安全之家', 'https://wechat2rss.xlab.app/feed/ac86a71f04b6d10cc5a87ec9ecc8c94fff5d80d1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (473, '字节跳动安全中心', 'https://wechat2rss.xlab.app/feed/f4087ff02b808a1a995e2ba930219ada5b82425d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (535, '安全419', 'https://wechat2rss.xlab.app/feed/6f33507162907318fd059fb11977ca352ff55d8e.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (543, '安全产品人的赛博空间', 'https://wechat2rss.xlab.app/feed/923ebe72c2b551e158bcce2f9e6262dd563b3b75.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (371, '安全分析与研究', 'https://wechat2rss.xlab.app/feed/62ba31603ffe26b5a8eca9ddaa434ea612445c10.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (415, '安全喷子', 'https://wechat2rss.xlab.app/feed/158efac9a94e62404af4bc804a6d6dcd55caa44f.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (451, '安全圈', 'https://wechat2rss.xlab.app/feed/d568d6fca93d750898111f09cc3c551e7a62f7ab.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (456, '安全威胁情报', 'https://wechat2rss.xlab.app/feed/9823254aff8854917b418bc19efe49ac160669e8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (430, '安全学术圈', 'https://wechat2rss.xlab.app/feed/8c5d5f0004e7231abeb01dac49cac5da4ec6933d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (409, '安全实践', 'https://wechat2rss.xlab.app/feed/2d77edf78f6cc321308b81ac9f5d117e2f3fb7d1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (373, '安全客', 'https://wechat2rss.xlab.app/feed/7fc9f5344f14228ba49208282d844349f8afdee7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (200, '安全客-漏洞cve报告', 'https://rsshub.app/aqk/vul', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (361, '安全小飞侠', 'https://wechat2rss.xlab.app/feed/869b4e387a017fdd76a56b965ee0ab22c2a52dc2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (367, '安全引擎', 'https://wechat2rss.xlab.app/feed/002fe975bae4232ce63c51ef77519d0f1cb646c8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (536, '安全村SecUN', 'https://wechat2rss.xlab.app/feed/13267b55f2dbff6e536b4d593408fe0ef977cb43.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (561, '安全牛', 'https://wechat2rss.xlab.app/feed/10f1ba549b70cdb4216f7ade606d30a813305aa1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (437, '安全研究GoSSIP', 'https://wechat2rss.xlab.app/feed/ac4004481c5b78892663e13bb3af8422d4ebeb68.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (202, '安全脉搏', 'https://www.secpulse.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (216, '安全通告', 'http://www.huawei.com/cn/rss-feeds/psirt/rss', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (537, '安天AVL威胁情报中心', 'https://wechat2rss.xlab.app/feed/c17498223ad8f92e5434100b16f4894a3107a90b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (412, '安恒信息安全研究院', 'https://wechat2rss.xlab.app/feed/a54132c52ec3e562fc896bf803a7fe0aa277bab7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (465, '安恒威胁情报中心', 'https://wechat2rss.xlab.app/feed/de09ec267e5c4545e0a759cc62c3da7866ea49e0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (477, '小米安全中心', 'https://wechat2rss.xlab.app/feed/c950a13786cac4f432ad2f1dc4ef6dd427a5b802.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (364, '小迪随笔', 'https://wechat2rss.xlab.app/feed/5086d647f212ae93f39db2da1973dc3f446b0d95.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (527, '小陈的Life', 'https://wechat2rss.xlab.app/feed/7bc0fb4b036b6997552981cdd445bc48abff59bb.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (341, '少数派', 'https://sspai.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (530, '希潭实验室', 'https://wechat2rss.xlab.app/feed/f7dd0925a96c6f025dab0dbe8f80e1eb17d12538.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (545, '干杯Security', 'https://wechat2rss.xlab.app/feed/a8422817da57b5ad2c39c8f264d2eeef683bb338.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (372, '微步在线研究响应中心', 'https://wechat2rss.xlab.app/feed/ac64c385ebcdb17fee8df733eb620a22b979928c.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (355, '思想花火', 'https://wechat2rss.xlab.app/feed/5b925323244e9737c39285596c53e3a2f4a30774.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (528, '悬镜安全', 'https://wechat2rss.xlab.app/feed/59c134d2e41c3a0724d89cc6fa359bc1abedbc26.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (463, '情报分析师', 'https://wechat2rss.xlab.app/feed/f50063f977eea0ce26836189fb7c3034f7e3d4f8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (428, '慢雾科技', 'https://wechat2rss.xlab.app/feed/9e9c3c70e598266a1ac993e50458a10a6d853eb7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (369, '懒人在思考', 'https://wechat2rss.xlab.app/feed/773908acbc527a9a8637862bc6fad7fc8a916090.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (424, '我的安全梦', 'https://wechat2rss.xlab.app/feed/aff52b9db3b57b1fcf24b40668d44baecd3da044.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (397, '我的安全视界观', 'https://wechat2rss.xlab.app/feed/956e0bcbfd7dc0ca5274a3489bd2cc03cda26907.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (377, '我需要的是坚持', 'https://wechat2rss.xlab.app/feed/f71ad3ac4c5e75b79b162c720389aa4d8f72bdd3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (502, '技术猫屋', 'https://wechat2rss.xlab.app/feed/c48bba56bd4329af4db5c7b0eacf3d2f1c43c8df.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (398, '技艺丛谈', 'https://wechat2rss.xlab.app/feed/45ef431eb5e61b3ff7802ef329290a4dcc377031.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (520, '放之', 'https://wechat2rss.xlab.app/feed/672af7872ddae7ee20df9a3f2560224fb16babc3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (440, '数世咨询', 'https://wechat2rss.xlab.app/feed/9da87fba8130d0c2dc52cc45b844f045227e06a7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (467, '数据安全与取证', 'https://wechat2rss.xlab.app/feed/8c9b7e3366ca88442203715d5616c05d24d0306c.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (554, '数说安全', 'https://wechat2rss.xlab.app/feed/b15a925f83a4b108b957f8dd0e8030b6caa7da5e.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (483, '斗象智能安全', 'https://wechat2rss.xlab.app/feed/5b72c7dcf37ab8e8c6e5745ecf2701b4ba3cd355.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (439, '无害实验室sec', 'https://wechat2rss.xlab.app/feed/4470030205d4d847065a2f0d26219b280b421440.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (394, '暗影安全', 'https://wechat2rss.xlab.app/feed/44dc3cfe1a58cd4c818178052cbca34c5f9b336d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (515, '李姐姐的扫描器', 'https://wechat2rss.xlab.app/feed/fda4c8b72435cffdc50c9c6e5eb0041a82eac679.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (454, '极客公园', 'https://wechat2rss.xlab.app/feed/1a5aec98e71c707c8ca092bc2c255b9d4bac477d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (413, '梦之光芒的电子梦', 'https://wechat2rss.xlab.app/feed/e83f8149ea130c384bb4cb8d690b33bd392ce1b6.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (507, '楼兰学习网络安全', 'https://wechat2rss.xlab.app/feed/6f8d8640d6c8d59ba52ea8a8b5df8529a59e872a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (551, '榫卯江湖', 'https://wechat2rss.xlab.app/feed/d1988b840deaf6a79edd32e83a1b152038f1b6a1.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (488, '永安在线情报平台', 'https://wechat2rss.xlab.app/feed/9f7e55c77c8eaf5f2adb43289de4fe194f7d34e5.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (540, '洞源实验室', 'https://wechat2rss.xlab.app/feed/ed8dcc9aa1014eb34c7fd7dc0ef6b96272ed99e0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (494, '深信服千里目安全实验室', 'https://wechat2rss.xlab.app/feed/027c7f3b98d9d0f2db84513f0cb94f02e9a8a3d7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (490, '渊龙Sec安全团队', 'https://wechat2rss.xlab.app/feed/21b0fdc5197bc18c5d0a0c4a5a557a98ae4c01c7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (484, '滴滴安全应急响应中心', 'https://wechat2rss.xlab.app/feed/97cd46da8232bd740c02838e1c579182f9636e3e.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (418, '漏洞战争', 'https://wechat2rss.xlab.app/feed/a884cb33e3393db2f683c48d82012836295ec005.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (429, '漏洞推送', 'https://wechat2rss.xlab.app/feed/e5a0a3d839536204e4bcec6ede59fe0cc11f6fc6.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (460, '火线安全平台', 'https://wechat2rss.xlab.app/feed/36738a4bf3055c808494d72d9b3372c00f38c8e8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (487, '火绒安全实验室', 'https://wechat2rss.xlab.app/feed/e6da68c95a8f1e2fb40f6691d0ce9addc51a7532.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (390, '灾难控制局', 'https://wechat2rss.xlab.app/feed/1559746776b3cf0a4aea8dd4f2979f71108093de.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (340, '爱范儿', 'https://www.ifanr.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (389, '猎户攻防实验室', 'https://wechat2rss.xlab.app/feed/fe0f4b4ed13da1bd9296fe819c5770526ae910b0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (504, '王小明的事', 'https://wechat2rss.xlab.app/feed/4d5625268306f53fca5c6e8cb59daf73ca57d5e0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (510, '甲方安全建设', 'https://wechat2rss.xlab.app/feed/130f6c9e835ca7f7c9f329a93140129499970662.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (448, '电子物证', 'https://wechat2rss.xlab.app/feed/bb1aa1ced567490c8eec9d764e4909f694aab711.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (378, '白帽100安全攻防实验室', 'https://wechat2rss.xlab.app/feed/55990eaae05ad1430e2ba4955756b215a99896c9.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (501, '白日放歌须纵9', 'https://wechat2rss.xlab.app/feed/fbb786b3c5d138ed27a7ca2f9734cfc90e9b9417.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (538, '白泽安全实验室', 'https://wechat2rss.xlab.app/feed/6bdf0d750e8c418f6ddfe8826c7a29f786a74aa4.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (491, '百度安全实验室', 'https://wechat2rss.xlab.app/feed/c396e3a4fb11318adaa9dac2637657d6fe56ba90.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (475, '百度安全应急响应中心', 'https://wechat2rss.xlab.app/feed/2b0b4d99312e57d27a294d18de8dfb8f9c272fd4.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (386, '皮相', 'https://wechat2rss.xlab.app/feed/41a459a80e37e15d9706465eee48ff491911a36f.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (358, '看雪学院', 'https://wechat2rss.xlab.app/feed/0e026637254d450ae84c59f87d4e4fb4616651ca.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (422, '矛和盾的故事', 'https://wechat2rss.xlab.app/feed/308da52e82d7f7bc2a9f6a5f63633c5567b7af08.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (404, '红日安全', 'https://wechat2rss.xlab.app/feed/3b69d8965599130a19b70d7690b5abdb7d107483.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (534, '纽创信安', 'https://wechat2rss.xlab.app/feed/352d9634e6837532ddae7494aaf146e0aa71235a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (353, '绿盟科技CERT', 'https://wechat2rss.xlab.app/feed/aa2ff3b0167a3f449f3b116717b5350ab64df8c3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (381, '绿盟科技研究通讯', 'https://wechat2rss.xlab.app/feed/21b46d78e363b85d6927970267ecea4904f06bc8.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (452, '网信军民融合', 'https://wechat2rss.xlab.app/feed/0c01ac36bf3a4f3153d8c568e1255b9e91825688.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (499, '网安国际', 'https://wechat2rss.xlab.app/feed/6fa942a9bdf8d6e67cf9b051ed3fae441ddb2bae.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (464, '网安寻路人', 'https://wechat2rss.xlab.app/feed/d93b4641ef7b9ab5bb7a2d41d799544d45ace291.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (449, '网安杂谈', 'https://wechat2rss.xlab.app/feed/9873e439cbe2e1050b8d3a5ee589c12755bda1bb.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (516, '网络安全回收站', 'https://wechat2rss.xlab.app/feed/3dcfe38cb98fb0a439112b1e1549a84bede6077a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (479, '美团安全应急响应中心', 'https://wechat2rss.xlab.app/feed/294bc034c9941529cd86a8a4b8999d100186c04d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (349, '腾讯安全响应中心', 'https://security.tencent.com/index.php/feed/blog/0', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (411, '腾讯安全威胁情报中心', 'https://wechat2rss.xlab.app/feed/034265b14906a59ef7cf1fcbd56699b54a696094.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (360, '腾讯安全应急响应中心', 'https://wechat2rss.xlab.app/feed/7898375f78fd1018302d54577cd0fd05d5ed324f.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (346, '腾讯玄武实验室', 'https://xlab.tencent.com/cn/atom.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (420, '腾讯科恩实验室', 'https://wechat2rss.xlab.app/feed/13584cb01e8bf3297943a0dad49e53c6faf20611.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (348, '腾讯科恩实验室官方博客', 'https://keenlab.tencent.com/zh/atom.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (519, '航行笔记', 'https://wechat2rss.xlab.app/feed/4a76fbd471f0952829df9c488986bbcc67ff8790.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (375, '虎符智库', 'https://wechat2rss.xlab.app/feed/792558edf818ce03d377d1d2677afb4d6537853d.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (458, '补天平台', 'https://wechat2rss.xlab.app/feed/716b21d89522f8bb90b25249ebf00692522d5612.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (512, '表图', 'https://wechat2rss.xlab.app/feed/657873c2f534ea1c50875c8657bc405270ce7cd0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (419, '认知独省', 'https://wechat2rss.xlab.app/feed/83f81eece114fa0cb211ab5379fda72760dc5b68.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (466, '谛听ditecting', 'https://wechat2rss.xlab.app/feed/e91ca0416d5a5dfc93ce14c0598416d4df1a3bf2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (544, '赛博昆仑CERT', 'https://wechat2rss.xlab.app/feed/fb14ec6353e6ebbeb470d35d633471d0bca583a0.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (357, '赵武的自留地', 'https://wechat2rss.xlab.app/feed/1bbf7fc5fac024226f86a1851c682253a7eae63f.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (423, '软件安全与逆向分析', 'https://wechat2rss.xlab.app/feed/021e3a28dfa435253d1b5610e6678205ea0919b6.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (552, '连续创业的Janky', 'https://wechat2rss.xlab.app/feed/66f13ba7620a53ca279f679a8a956f43255fb579.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (518, '迪哥讲事', 'https://wechat2rss.xlab.app/feed/6fbc842cdb8fd52f341af76f6aaf6cba21a23f7c.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (359, '道哥的黑板报', 'https://wechat2rss.xlab.app/feed/980128c3a0c9ff852a06dd4a2bc3391338e05760.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (362, '酒仙桥六号部队', 'https://wechat2rss.xlab.app/feed/164eeaeb12a8d95384d8807f41d3572569296029.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (332, '量子位 QbitAI', 'https://www.qbitai.com/feed', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (532, '金色钱江', 'https://wechat2rss.xlab.app/feed/e1e2ffe5159e49f081844f257d08c1218908fff3.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (511, '钱塘门外的互联网散修', 'https://wechat2rss.xlab.app/feed/bf791d6a822e8f48b4f6aa056e42758479362281.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (379, '锦行信息安全', 'https://wechat2rss.xlab.app/feed/d04e70055c2d31441deb3188d433a027fc8079cc.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (374, '长亭安全课堂', 'https://wechat2rss.xlab.app/feed/ae5cf9ab99ae03269527af0f7a6c05ff14d5863c.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (457, '长亭科技', 'https://wechat2rss.xlab.app/feed/2b3d1f9d72a621232894fa96b6ddf218aade7a1f.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (406, '阿里云应急响应', 'https://wechat2rss.xlab.app/feed/311c02e5c56e5c0bcdf41924909407ed2d569d2a.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (474, '阿里安全响应中心', 'https://wechat2rss.xlab.app/feed/544a8a6edc551b8a2975fbb76b7de1637570d0e7.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (482, '陌陌安全', 'https://wechat2rss.xlab.app/feed/9ed3866991b2dec386b67cc579ab80f510abccc2.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (388, '雷神众测', 'https://wechat2rss.xlab.app/feed/3fc5f554af76c0164779add7c5206bdc6f2efe5b.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (453, '青藤云安全', 'https://wechat2rss.xlab.app/feed/f35b2e0c0e9439b0085a851a1514a11c0ad89887.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (444, '非尝咸鱼贩', 'https://wechat2rss.xlab.app/feed/255746ce1fb5befc63e2be00eb25795409048fcb.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (550, '鹰眼威胁情报中心', 'https://wechat2rss.xlab.app/feed/6bdcd81fd3702868c913261790ec10ffb76df144.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (489, '黑伞安全', 'https://wechat2rss.xlab.app/feed/9779044929b45805a5c1b0fecf5f6a95c7202818.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (438, '黑哥说安全', 'https://wechat2rss.xlab.app/feed/27be924bf0d49a8d3ff45c0a85e9c6e94ba7a93c.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (368, '黑鸟', 'https://wechat2rss.xlab.app/feed/f22e132bbbc4e8070cd51c0a84802f940e131a20.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (495, '默安玄甲实验室', 'https://wechat2rss.xlab.app/feed/181cb187893448582b37198afeadd4c4cf0750a9.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (461, '默安科技', 'https://wechat2rss.xlab.app/feed/0a0fb079fdb28ad7c49e5a6cbd9cf909c9873d86.xml', 24, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (933, './ewby', 'https://ewby.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (934, '0r@nge の窝', 'https://0range-x.github.io/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (912, '1oecho.github.io', 'https://1oecho.github.io/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (863, '3gstudent-Blog', 'https://3gstudent.github.io/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (932, 'ATTL4S', 'https://attl4s.github.io/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (953, 'AabyssZG''s Blog - 苛刻条件下:C2上传执行骚姿势 的评论', 'https://blog.zgsec.cn/index.php/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (825, 'All Posts - Malicious Link - Blog by mubix - Rob Fuller', 'https://malicious.link/post/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (866, 'AresX''s Blog', 'https://ares-x.com/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (917, 'Articles on Podalirius', 'https://podalirius.net/en/articles/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (944, 'Attack and Defense Labs', 'http://feeds.feedburner.com/AttackAndDefenseLabs?format=xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (874, 'BREAKDEV', 'https://breakdev.org/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (963, 'Bad Sector Labs Blog', 'https://blog.badsectorlabs.com/feeds/all.atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (846, 'Bernardo Dag', 'http://feeds2.feedburner.com/BernardoDamele', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (824, 'Bitsadmin''s blog - Mystery guest in your IT infrastructure', 'https://blog.bitsadmin.com/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (957, 'Blackploit [PenTest]', 'http://www.blackploit.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (854, 'Blog', 'https://blog.gdssecurity.com/labs/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (892, 'Blogs on dade', 'https://0xda.de/blog/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (839, 'Brucetg''s Blog', 'https://brucetg.github.io/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (901, 'Bug Bounty in InfoSec Write-ups on Medium', 'https://medium.com/feed/bugbountywriteup/tagged/bug-bounty', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (922, 'C99.sh', 'https://c99.sh/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (948, 'CFC4N的博客', 'https://www.cnxct.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (858, 'Cheesy Rumbles', 'https://rastamouse.me/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (945, 'Christophe Tafani-Dereeper', 'https://blog.christophetd.fr/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (890, 'Confessions of a Penetration Tester', 'http://pentesterconfessions.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (855, 'Cатсн²² (in)sесuяitу / ChrisJohnRiley', 'https://blog.c22.cc/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (914, 'Dancho Danchev''s Blog', 'http://feeds.feedburner.com/DanchoDanchevOnSecurityAndNewMedia', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (939, 'DeadPixelSec', 'https://deadpixelsec.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (822, 'Deep Exploit Space', 'http://exploitspace.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (942, 'DoomsDay Vault - Articles', 'https://x-c3ll.github.io/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (867, 'Dragon Threat Labs', 'http://blog.dragonthreatlabs.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (950, 'E99p1ant', 'https://github.red/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (959, 'Ethical hacking and penetration testing', 'https://miloserdov.org/?feed=rss2', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (849, 'Evi1cg''s blog', 'https://evi1cg.me/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (860, 'Exploit Monday', 'http://www.exploit-monday.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (844, 'Forcepoint', 'https://blogs.forcepoint.com/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (864, 'FortyNorth Security Blog', 'https://fortynorthsecurity.com/blog/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (916, 'Fotis'' Blog', 'http://fotis.loukos.me/blog/?feed=rss2', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (827, 'Fox-IT International blog', 'http://blog.fox-it.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (847, 'GRIMM Blog', 'https://blog.grimm-co.com/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (883, 'GuidePoint Security', 'https://www.guidepointsecurity.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (843, 'Hacking Dream', 'https://www.hackingdream.net/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (965, 'Hacking Tutorials', 'https://www.hackingtutorials.org/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (924, 'Horizon3.ai', 'https://www.horizon3.ai/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (881, 'IMQ Minded Security Blog', 'http://blog.mindedsecurity.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (830, 'Icewall''s blog', 'http://www.icewall.pl/?feed=rss2', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (877, 'ImNotHere', 'http://happytree.farbox.com/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (919, 'Immunity Services', 'https://immunityservices.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (870, 'Infosec Resources', 'http://resources.infosecinstitute.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (946, 'Ivan''s IT learning blog', 'https://ivanitlearning.wordpress.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (940, 'Jayl1n''s Blog', 'https://jayl1n.github.io/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (943, 'Jeremiah Grossman', 'http://feeds.feedburner.com/JeremiahGrossman', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (848, 'Joe''s Security Blog', 'http://www.gironsec.com/blog/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (951, 'K8哥哥’s Blog', 'https://k8gege.org/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (884, 'K8拉登哥哥''s Blog', 'http://qqhack8.blog.163.com/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (955, 'Kali Linux', 'https://www.kali.org/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (967, 'Kali Linux Tutorials', 'https://kalilinuxtutorials.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (929, 'Kleiton Kurti - Personal Infosec Blog', 'https://kleiton0x00.github.io/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (915, 'Lab of a Penetration Tester', 'http://www.labofapenetrationtester.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (930, 'Legacyy', 'http://legacyy.xyz/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (937, 'Light Blue Touchpaper', 'https://www.lightbluetouchpaper.org/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (896, 'Linux Foundation Blogs', 'https://www.linuxfoundation.org/blog/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (893, 'Low-cost hardware and free software', 'https://ferrancasanovas.wordpress.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (889, 'Lyon''s blog', 'http://www.youngroe.com/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (931, 'MakeMalware', 'https://makemalware.com/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (869, 'Marco Ramilli Web Corner', 'https://marcoramilli.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (925, 'Mayfly', 'https://mayfly277.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (832, 'Misc', 'https://kaimi.io/en/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (853, 'NVISO Labs', 'https://blog.nviso.eu/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (928, 'NorthShad0w’s Blog', 'https://blog.northshad0w.com/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (949, 'Nuclear Atk(lcx.cc)', 'https://lcx.cc/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (908, 'PICTUROKU', 'http://picturoku.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (835, 'Payatu', 'http://payatu.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (836, 'Penetration Testing Lab', 'https://pentestlab.blog/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (873, 'Pentest Blog', 'https://pentest.blog/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (966, 'Pentester Academy Blog - Medium', 'https://blog.pentesteracademy.com/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (954, 'Pentesting', 'https://www.reddit.com/r/Pentesting/.rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (958, 'Podalirius', 'https://podalirius.net/en/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (828, 'Posts on Christopher Alonso', 'https://christopherja.rocks/posts/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (829, 'Publications | Outflank', 'https://outflank.nl/blog/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (895, 'Pulse Security', 'https://feed43.com/5688068022162007.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (960, 'PwnDefend', 'https://www.pwndefend.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (878, 'RSS: Programming stuff -', 'http://the-interweb.com/serendipity/index.php?/feeds/index.rss2', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (882, 'RcoIl的窝', 'http://rcoil.me/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (865, 'Re4son', 'https://whitedome.com.au/re4son/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (956, 'Red Team Security', 'https://www.reddit.com/r/redteamsec/.rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (876, 'Red Teaming', 'https://redteaming.co.uk/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (905, 'Reusable Security', 'https://reusablesec.blogspot.com/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (841, 'Riccardo Ancarani - Red Team Adventures', 'https://riccardoancarani.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (923, 'Ronnie''s Blog', 'https://blog.spookysec.net/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (850, 'RyotaK''s Blog', 'https://blog.ryotak.me/index.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (961, 'S3cur3Th1sSh1t', 'https://s3cur3th1ssh1t.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (911, 'Sandfly Security Blog RSS Feed', 'https://www.sandflysecurity.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (823, 'Se7en''s Blog|专注渗透测试。', 'https://www.se7ensec.cn/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (826, 'Secure Belief', 'http://amolnaik4.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (894, 'Securelist', 'http://www.securelist.com/en/rss/allupdates', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (887, 'Security Reliks', 'http://securityreliks.wordpress.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (918, 'Security Research', 'https://mrd0x.com/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (904, 'Security Sift', 'http://www.securitysift.com/?feed=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (910, 'Security Sift', 'https://www.securitysift.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (936, 'Security on the edge', 'http://feeds.feedburner.com/SecurityOnTheEdge', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (862, 'Shell is Only the Beginning', 'http://www.darkoperator.com/blog/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (880, 'Shell is Only the Beginning', 'https://www.darkoperator.com/blog?format=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (947, 'Shells.Systems', 'https://shells.systems/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (859, 'Shenanigans Labs', 'https://feed43.com/2363238175212207.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (920, 'TRY博客', 'https://www.nctry.com/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (938, 'TaoSecurity Blog', 'https://taosecurity.blogspot.com/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (886, 'Techorganic', 'https://blog.techorganic.com/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (871, 'Techy Zilla', 'http://techyzilla.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (834, 'The Safe Mac', 'http://reedcorner.net/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (897, 'Thoughts on Security', 'http://www.scriptjunkie.us/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (851, 'Threat Research Blog', 'http://www.fireeye.com/blog/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (964, 'Threatninja.net', 'https://threatninja.net/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (921, 'Tw1sm', 'https://tw1sm.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (833, 'Tyranid''s Lair', 'https://tyranidslair.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (898, 'Unauthorized Access Blog', 'https://blog.unauthorizedaccess.nl/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (913, 'What''s in your silicon?', 'http://siliconblade.blogspot.com/feeds/posts/default', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (837, 'Woojay''s Blog', 'https://blog.blankshell.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (903, 'XPN InfoSec Blog', 'https://blog.xpnsec.com/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (907, 'XPN InfoSec Blog', 'https://blog.xpnsec.com/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (927, 'Zgao''s blog', 'https://zgao.top/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (885, 'bluescreenofjeff.com - a blog about penetration testing and red teaming', 'https://bluescreenofjeff.com/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (935, 'bs', 'https://br-sn.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (861, 'byt3bl33d3r', 'https://byt3bl33d3r.github.io/feeds/all.rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (845, 'enigma0x3', 'https://enigma0x3.net/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (941, 'hackndo', 'https://beta.hackndo.com/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (909, 'harmj0y', 'https://blog.harmj0y.net/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (899, 'hn security', 'https://security.humanativaspa.it/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (891, 'linhlhq''s blog', 'https://ezqelusia.blogspot.com/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (926, 'm3rcer - Hacking/Security Blog', 'https://m3rcer.github.io/feed.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (868, 'pentest-n00b', 'http://pentestn00b.wordpress.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (842, 'pentestmonkey', 'http://feeds.feedburner.com/pentestmonkey', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (840, 'pureqh » Feed (https://pureqh.top)', 'https://pureqh.top/?feed=rss2', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (875, 'r34l!ty - 不负勇往', 'http://rinige.com/index.php/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (857, 'remote-exploit.org', 'http://www.remote-exploit.org/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (856, 'root@cyberworld:~# Noah Lab', 'http://noahblog.360.cn/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (872, 'scriptkidd1e', 'https://scriptkidd1e.wordpress.com/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (852, 'splinter_code blog', 'https://antoniococo.github.io/rss.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (838, 'tssci-security', 'http://www.tssci-security.com/feed.atom', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (962, 'zSecurity', 'https://zsecurity.org/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (952, '专注APT攻击与防御', 'https://micropoor.blogspot.com/feeds/posts/default?alt=rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (900, '博客园 - zha0gongz1', 'http://feed.cnblogs.com/blog/u/569318/rss/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (888, '博客园 - 挖洞的土拨鼠', 'http://feed.cnblogs.com/blog/u/319092/rss', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (879, '奇安信A-TEAM技术博客', 'https://blog.ateam.qianxin.com/atom.xml', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (831, '安全小飞侠的窝', 'http://avfisher.win/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (902, '灯塔实验室', 'http://plcscan.org/blog/feed/', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (906, '独自等待', 'https://www.waitalone.cn/feed#from:www.waitalone.cn', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (354, '白帽Wiki', 'https://key08.com/index.php/feed', 25, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (580, 'Android Explorations', 'http://nelenkov.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (608, 'Android Internals - A Confectioner''s CookBook', 'http://newandroidbook.com/rss.php', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (638, 'Android Reversing', 'http://androidreversing.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (578, 'Android Security Acknowledgements', 'https://feed43.com/1670770467135134.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (600, 'AppSec-Labs | Application Security', 'https://appsec-labs.com/blog/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (601, 'Azimuth Security', 'http://blog.azimuthsecurity.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (635, 'BaikalHU', 'http://blog.csdn.net/dndxhej/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (568, 'Blog postings from honeynet.org', 'http://feeds2.feedburner.com/HoneynetProjectAggregated', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (574, 'C-skills', 'http://c-skills.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (585, 'Chromium Blog', 'http://blog.chromium.org/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (618, 'Collin R. Mulliner', 'http://www.mulliner.org/blog/blosxom.cgi?flav=rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (659, 'Colt''s Blog', 'http://coltf.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (609, 'Comments on:', 'https://www.honeynet.org/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (661, 'Copperhead', 'https://copperhead.co/rss.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (644, 'Core Dump', 'http://roundcube3.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (611, 'DarkLapu', 'http://darklapu.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (595, 'ElcomSoft blog', 'http://blog.elcomsoft.com/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (625, 'Ele7enxxh''s Blog', 'http://ele7enxxh.com/atom.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (582, 'Envato Tuts+ Code - Mobile Development', 'http://feeds.feedburner.com/mobiletuts', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (592, 'Flanker Sky', 'http://blog.flanker017.me/?feed=rss2&lang=zh-cn', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (640, 'GT''s Blog', 'http://ganeshtiwaridotcomdotnp.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (564, 'GeoSn0w', 'https://geosn0w.github.io/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (657, 'HTML5, WebKit, Chromium', 'http://blog.csdn.net/milado_nju/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (628, 'Haric的程序空间', 'http://haric.iteye.com/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (589, 'HawkSpawn’s Blog', 'https://www.hawkspawn.com/blog/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (614, 'Hex Detective', 'http://hexdetective.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (565, 'Ho1y_Sunny''s blog', 'http://ho1ysunny.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (613, 'Innost的专栏', 'http://blog.csdn.net/Innost/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (631, 'JEB in Action', 'http://www.android-decompiler.com/blog/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (607, 'JesuX Blog', 'https://jesux.es/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (612, 'Jserv''s blog', 'http://blog.linux.org.tw/~jserv/index.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (606, 'Laplinker', 'http://www.laplinker.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (662, 'My life with Android :-)', 'http://mylifewithandroid.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (572, 'NSHipster', 'https://nshipster.cn/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (651, 'NetRoc''s blog', 'http://blog.dbgtech.net/blog/?feed=rss2', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (658, 'NowSecure', 'https://www.nowsecure.com/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (660, 'OS X and iOS Internals - The RSS Feed', 'http://newosxbook.com/index.php?format=rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (650, 'Out of Bounds Access', 'https://fuzion24.github.io/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (648, 'Packet Guru', 'http://packetguru.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (623, 'Planet Classpath', 'http://planet.classpath.org/rss20.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (588, 'Prateek Gianchandani', 'https://highaltitudehacks.com/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (620, 'Proteas的专栏', 'http://blog.csdn.net/Proteas/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (619, 'Psycho’s Corner', 'https://sparkes.zone/blog/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (639, 'Ray''s blog', 'http://rayleung.iteye.com/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (633, 'Roee Hay', 'http://roeehay.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (621, 'Roland_Sun的专栏', 'http://blog.csdn.net/Roland_Sun/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (643, 'Roy Castillo', 'http://www.blogger.com/feeds/6256080996814574917/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (569, 'Security Simplified!!!', 'http://nileshkapoor.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (610, 'Smartphone Security', 'http://smartphone-attack-vector.de/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (563, 'SpyLogic.net', 'http://feeds.feedburner.com/spylogic', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (636, 'Sucuri Blog', 'http://feeds.feedburner.com/sucuri/blog', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (632, 'Ted', 'http://wufawei.com/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (575, 'Tjxin_xd的专栏', 'http://blog.csdn.net/Tjxin_xd/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (571, 'Zdziarski', 'http://www.zdziarski.com/blog/?feed=rss2', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (629, '[conowen]大钟的专栏', 'http://blog.csdn.net/conowen/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (617, 'and-rev', 'https://and-rev.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (645, 'android cracking', 'http://androidcracking.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (603, 'bazad.github.io', 'https://bazad.github.io/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (622, 'blog.csdn.net', 'http://blog.csdn.net/xianming01/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (626, 'blog.csdn.net', 'http://blog.csdn.net/xyz_lmn/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (649, 'blog.csdn.net', 'http://blog.csdn.net/zyc851224/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (664, 'contagio mobile', 'http://contagiominidump.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (584, 'forensic blog', 'http://forensics.spreitzenbarth.de/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (599, 'hakers.info', 'http://hakers.info/site/feed/index.html', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (663, 'i, Claud', 'http://blog.claudxiao.net/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (634, 'itudou_2010的专栏', 'http://blog.csdn.net/itudou_2010/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (642, 'joy', 'http://blog.csdn.net/lhj0711010212/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (604, 'ongoing by Tim Bray', 'http://www.tbray.org/ongoing/ongoing.atom', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (655, 'parker的专栏', 'http://blog.csdn.net/autohacker/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (602, 'pxb1988的专栏', 'http://blog.csdn.net/pxb1988/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (579, 'quaful的专栏', 'http://blog.csdn.net/quaful/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (573, 'random', 'https://xerub.github.io/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (581, 'su1216的专栏', 'http://blog.csdn.net/su1216/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (586, 'tessrijogo', 'http://feeds.feedburner.com/blogspot/CqwP', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (653, 'the Forensics Ferret Blog', 'http://forensicsferret.wordpress.com/feed/', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (596, 'ysl 的程式天堂 - Android 應用開發 ‧ 研究 ‧ 與諮詢', 'http://ysl-paradise.blogspot.com/feeds/posts/default', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (591, '一个被知识诅咒的人', 'http://blog.csdn.net/nokiaguy/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (594, '为了工作而工作是悲哀的!工作是实现自我价值的地方!', 'http://blog.csdn.net/Melody_lu123/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (570, '亚庆的 Blog', 'http://billwang1990.github.io/atom.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (652, '傲慢的上校的专栏', 'http://blog.csdn.net/aomandeshangxiao/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (593, '博客园 - Braincol', 'http://feed.cnblogs.com/blog/u/75839/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (667, '博客园 - CoderZh', 'http://cnblogs.com/coderzh/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (654, '博客园 - __Shadow', 'http://feed.cnblogs.com/blog/u/101485/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (637, '博客园 - allin.android', 'http://feed.cnblogs.com/blog/u/70231/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (566, '博客园 - bamb00', 'http://www.cnblogs.com/goodhacker/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (656, '博客园 - lingyun1120', 'http://feed.cnblogs.com/blog/u/98093/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (646, '博客园 - pengwang', 'http://feed.cnblogs.com/blog/u/87192/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (627, '博客园 - 农民伯伯', 'http://feed.cnblogs.com/blog/u/28619/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (666, '博客园 - 有只茄子', 'http://cnblogs.com/qiezi/rss', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (624, '大老的逆向专栏', 'http://blog.csdn.net/qdsw123/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (641, '安卓安全小分队的博客', 'http://blog.sina.com.cn/rss/3194858670.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (615, '宋宝华', 'http://blog.csdn.net/21cnbao/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (616, '微风的网络日志', 'http://leybreeze.com/blog/?feed=rss2', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (577, '永远即等待的专栏', 'http://blog.csdn.net/leehong2005/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (567, '深度技术安全', 'http://blog.csdn.net/winsunxu/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (630, '猫·仁波切', 'https://andelf.github.io/feed.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (590, '王中周的技术博客', 'http://wangzz.github.io/atom.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (576, '简行之旅', 'http://blog.csdn.net/L173864930/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (587, '罗朝辉(飘飘白云)', 'http://blog.csdn.net/kesalin/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (583, '老王的智能终端安全专栏', 'http://blog.csdn.net/u011069813/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (598, '老罗的Android之旅', 'http://blog.csdn.net/Luoshengyang/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (597, '能哥的专栏', 'http://blog.csdn.net/nengx/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (605, '芒果很香', 'http://blog.csdn.net/laczff21/rss/list', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (665, '阿峰的技术窝窝', 'http://hufeng825.github.io/atom.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (647, '风子的Blog-风言风语', 'http://blog.sina.com.cn/rss/1242184131.xml', 26, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (774, '(B)(F)uzzing on my world', 'http://spa-s3c.blogspot.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (780, '(gdb) break *0x972', 'http://blog.0x972.info/rss.php', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (796, '.Trash', 'https://blog.tonkatsu.info/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (801, '0x41414141 in ?? ()', 'https://abiondo.me/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (799, '128 nops and counting', 'https://carstein.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (710, '2019''s blog', 'https://mem2019.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (683, '> root@saelo', 'https://saelo.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (816, '@l33d0hyun', 'https://fuzzing.kr/feed', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (689, 'A box of chocolate', 'http://dakutenpura.hatenablog.com/feed', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (702, 'Alex Ionescu’s Blog', 'http://alex-ionescu.com/?feed=rss2', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (725, 'Alexander Popov', 'https://a13xp0p0v.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (723, 'An7i Security', 'http://an7isec.blogspot.com/feeds/posts/default?alt=rss', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (724, 'Andrea Cardaci', 'https://cardaci.xyz/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (696, 'Apr4h.github.io', 'https://apr4h.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (694, 'Azeria Labs', 'https://azeria-labs.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (788, 'Bendawang''s site', 'http://www.bendawang.site/rss.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (737, 'Between Extremes', 'http://joevennix.com/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (755, 'Blog - Atredis Partners', 'https://www.atredis.com/blog?format=RSS', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (741, 'Blog - Möbius Strip Reverse Engineering', 'http://www.msreverseengineering.com/blog?format=RSS', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (803, 'Blog - sigpwn', 'https://sigpwn.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (685, 'Blogs on STAR Labs', 'https://starlabs.sg/blog/index.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (784, 'Brightiup Blog', 'https://feed43.com/7741664325142083.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (704, 'C0RE Team', 'https://feed43.com/1631438424656001.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (673, 'CODE WHITE | Blog', 'https://codewhitesec.blogspot.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (745, 'CTF Hacker', 'http://ctfhacker.com/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (717, 'CTFするぞ', 'https://ptr-yudai.hatenablog.com/feed', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (810, 'CatBro''s Blog', 'https://catbro666.github.io/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (770, 'Cerbero Blog', 'http://cerbero-blog.com/?feed=rss2', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (764, 'ClevCode', 'http://www.clevcode.org/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (760, 'Damien Deville', 'http://ddeville.me/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (795, 'Dhaval Kapil', 'https://dhavalkapil.com/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (733, 'Dividead’s Blog', 'http://dividead.wordpress.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (813, 'DoubleMice', 'https://doublemice.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (808, 'Dragon Sector', 'https://blog.dragonsector.pl/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (775, 'EM_386', 'http://em386.blogspot.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (744, 'ETenal', 'https://etenal.me/feed', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (688, 'Exodus Intelligence', 'https://blog.exodusintel.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (806, 'Eyal Itkin', 'https://eyalitkin.wordpress.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (695, 'Firmy''s blog', 'https://firmianay.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (777, 'Flanker Sky', 'https://blog.flanker017.me/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (797, 'Flexera Blog - Feed', 'http://feeds.feedburner.com/SecuniaResearch', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (819, 'Fuzzing Labs', 'https://webassembly-security.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (672, 'GDTR', 'http://gdtr.wordpress.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (708, 'Gamozo Labs Blog', 'https://gamozolabs.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (730, 'GreyHatHacker.NET', 'https://www.greyhathacker.net/?feed=rss2', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (742, 'Guido Vranken', 'https://guidovranken.wordpress.com/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (726, 'Hc1m1', 'https://0x48.pw/rss.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (693, 'Hi, I''m Amat.', 'http://acez.re/rss/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (782, 'I hack, therefore I am', 'http://blog.ikotler.org/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (790, 'INulledMyself', 'http://www.inulledmyself.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (729, 'IceSword Lab', 'https://www.iceswordlab.com/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (677, 'Indistinguishable from Jesse', 'http://www.squarefree.com/feed/atom/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (752, 'Insinuator.net', 'http://www.insinuator.net/feed/', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (776, 'Jay Bosamiya', 'https://www.jaybosamiya.com/blog/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (736, 'Jussi Judin''s weblog', 'https://feeds.feedburner.com/jussijudin', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (721, 'Keen Security Lab Blog', 'http://keenlab.tencent.com/en/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (682, 'Lazy Project', 'https://blog.l4ys.tw/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (720, 'Lexfo''s security blog', 'https://blog.lexfo.fr/feeds/all.atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (781, 'Low-level Shenanigans', 'https://ihack4falafel.github.io/feed.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (698, 'MS509 Team | Mission Studio', 'https://feed43.com/3621608176276825.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (671, 'MWR Labs Tools', 'https://feed43.com/6050116603104281.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (786, 'MWR Publications', 'https://feed43.com/5560170473384242.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (751, 'Marco Ramilli''s Blog', 'http://marcoramilli.blogspot.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (820, 'Mas0n''s blog', 'https://mas0n.org/feed', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (719, 'MaskRay', 'https://maskray.me/blog/atom.xml', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (809, 'Michael Coppola''s Blog', 'http://www.poppopret.org/?feed=rss2', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (747, 'Mike Dos Zhang', 'http://mikedoszhang.blogspot.com/feeds/posts/default', 27, 1, 0);
INSERT INTO sources (id, name, rss_url, folder_id, active, custom) VALUES (739, 'Misty的小窝~', 'http://misty.moe/feed/', 27, 1, 0);