-
Notifications
You must be signed in to change notification settings - Fork 2
/
Changelog.txt
7558 lines (4067 loc) · 222 KB
/
Changelog.txt
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
# Changelog
## v4.2.2 (2023-08-08)
### Other
* Merge pull request #990 from oh2fih/master. [PT]
* Black formatting (23.7.0) [Esa Jokinen]
* DownloadHandler.store_file() accept "text/xml" [Esa Jokinen]
The CAPEC source uses this Content-Type now instead of "application/xml"
* Merge pull request #956 from cve-search/dependabot/pip/redis-4.5.4. [PT]
* Bump redis from 4.5.3 to 4.5.4. [dependabot[bot]]
Bumps [redis](https://github.com/redis/redis-py) from 4.5.3 to 4.5.4.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](https://github.com/redis/redis-py/compare/v4.5.3...v4.5.4)
---
updated-dependencies:
- dependency-name: redis
dependency-type: direct:production
...
* Merge pull request #957 from cve-search/dependabot/pip/docs/source/redis-4.4.4. [PT]
* Bump redis from 3.5.3 to 4.4.4 in /docs/source. [dependabot[bot]]
Bumps [redis](https://github.com/redis/redis-py) from 3.5.3 to 4.4.4.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](https://github.com/redis/redis-py/compare/3.5.3...v4.4.4)
---
updated-dependencies:
- dependency-name: redis
dependency-type: direct:production
...
* Merge pull request #954 from cve-search/dependabot/pip/redis-4.5.3. [PT]
* Bump redis from 4.2.2 to 4.5.3. [dependabot[bot]]
Bumps [redis](https://github.com/redis/redis-py) from 4.2.2 to 4.5.3.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](https://github.com/redis/redis-py/compare/v4.2.2...v4.5.3)
---
updated-dependencies:
- dependency-name: redis
dependency-type: direct:production
...
* Merge pull request #952 from dbarzin/patch-3. [PT]
* Add mercator. [Didier Barzin]
* Merge pull request #939 from cve-search/dependabot/pip/nested-lookup-0.2.25. [Alexandre Dulaunoy]
Bump nested-lookup from 0.2.23 to 0.2.25
* Bump nested-lookup from 0.2.23 to 0.2.25. [dependabot[bot]]
Bumps [nested-lookup](https://git.unturf.com/python/nested-lookup) from 0.2.23 to 0.2.25.
---
updated-dependencies:
- dependency-name: nested-lookup
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #938 from cve-search/dependabot/pip/jsonpickle-3.0.1. [Alexandre Dulaunoy]
Bump jsonpickle from 2.1.0 to 3.0.1
* Bump jsonpickle from 2.1.0 to 3.0.1. [dependabot[bot]]
Bumps [jsonpickle](https://github.com/jsonpickle/jsonpickle) from 2.1.0 to 3.0.1.
- [Release notes](https://github.com/jsonpickle/jsonpickle/releases)
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](https://github.com/jsonpickle/jsonpickle/compare/v2.1.0...v3.0.1)
---
updated-dependencies:
- dependency-name: jsonpickle
dependency-type: direct:production
update-type: version-update:semver-major
...
* Merge pull request #931 from cve-search/dependabot/pip/sphinx-5.3.0. [PT]
* Bump sphinx from 4.3.1 to 5.3.0. [dependabot[bot]]
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.3.1 to 5.3.0.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES)
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.3.1...v5.3.0)
---
updated-dependencies:
- dependency-name: sphinx
dependency-type: direct:development
update-type: version-update:semver-major
...
* Merge pull request #920 from oh2fih/master. [PT]
* Black formatting. [Esa Jokinen]
* Merge pull request #919 from GalaxyGamingBoy/master. [PT]
* Merge pull request #4 from GalaxyGamingBoy/CORS. [GalaxyGamingBoy]
Reformatted
* Reformatted. [GalaxyGamingBoy]
* Merge pull request #3 from GalaxyGamingBoy/CORS. [GalaxyGamingBoy]
Simplified IF clause
* Simplified. [GalaxyGamingBoy]
* Merge pull request #2 from GalaxyGamingBoy/CORS. [GalaxyGamingBoy]
Limited CORS to API
* Limited CORS to API. [GalaxyGamingBoy]
* Merge pull request #1 from GalaxyGamingBoy/CORS. [GalaxyGamingBoy]
Added CORS Support, can be changed via config
* Added CORS Support, can be changed via config. [GalaxyGamingBoy]
* Merge pull request #904 from dbarzin/patch-2. [PT]
* Update README.md. [Didier Barzin]
Add link to Mercator
* Merge pull request #896 from dbarzin/master. [PT]
* Update install documentation for Ubuntu 22.04. [dbarzin]
* Merge pull request #895 from dbarzin/patch-1. [PT]
* Upgrade README.md. [Didier Barzin]
show all options of search.py
## v4.2.1 (2022-05-27)
### New
* [config] changelogrc configuration + updated pattern for tag matching. [Alexandre Dulaunoy]
### Changes
* [release] version 4.2.1. [Alexandre Dulaunoy]
### Other
* Merge pull request #888 from oh2fih/master. [PT]
* Black formatting for lib/Config.py. [Esa Jokinen]
* Use CVEMaxLimit in /api/cvefor and /api/last. [Esa Jokinen]
* Add configurable [API] CVEMaxLimit. [Esa Jokinen]
* Black formatting (web/) [Esa Jokinen]
* Rename the maximum limit variable. [Esa Jokinen]
* Set default limit & max limit for /api/cvefor. [Esa Jokinen]
* Merge pull request #884 from oh2fih/master. [PT]
* Merge branch 'update-js-dependencies' [Esa Jokinen]
* Update Bootstrap v4.6.0 -> v4.6.1. [Esa Jokinen]
* Update clipboard.js v2.0.8 -> v2.0.10. [Esa Jokinen]
* Update Popper v2.10.1 -> v2.11.5. [Esa Jokinen]
* Update DataTables 1.11.2 -> 1.11.3. [Esa Jokinen]
Not changed:
- [1.11.3]/js/dataTables.bootstrap4.min.js
- [1.11.3]/css/dataTables.bootstrap4.min.css
* Merge pull request #883 from oh2fih/master. [PT]
* Update rest api documentation to meet with PR #880. [Esa Jokinen]
* Merge pull request #880 from oh2fih/master. [PT]
Fix CPE conversions
* Use cpe_conversion library in Toolkit.py. [Esa Jokinen]
* Black formatting. [Esa Jokinen]
* Rename library to match its purpose. [Esa Jokinen]
* Merge pull request #2 from rg-atte/master. [Esa Jokinen]
Added cve conversion library
* EOF newline. [Atte]
* Functionality to correctly convert CPE versions. [Atte]
* Merge pull request #878 from AlphaBravoCompany/master. [PT]
* Add authentication database variables (#3) [Ed Engelking]
* Added authSource to DB connection call. Updated configuration sample with variable.
* Updated documentation
* Updated documentation wording
* Updated github actions python versions to 3.8. [Paul Tikken Laptop]
* Updated github actions python versions to 3.8. [Paul Tikken Laptop]
* Merge pull request #869 from P-T-I/cve-search-858. [PT]
Capec 3.7 update
* Capec sources updated to 3.7. [Paul Tikken Laptop]
* Update requirements.txt. [Paul Tikken Laptop]
* Merge pull request #848 from cve-search/dependabot/pip/nltk-3.7. [PT]
Bump nltk from 3.6.5 to 3.7
* Bump nltk from 3.6.5 to 3.7. [dependabot[bot]]
Bumps [nltk](https://github.com/nltk/nltk) from 3.6.5 to 3.7.
- [Release notes](https://github.com/nltk/nltk/releases)
- [Changelog](https://github.com/nltk/nltk/blob/develop/ChangeLog)
- [Commits](https://github.com/nltk/nltk/compare/3.6.5...3.7)
---
updated-dependencies:
- dependency-name: nltk
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Merge pull request #856 from cve-search/dependabot/pip/pytest-7.1.1. [PT]
Bump pytest from 6.2.5 to 7.1.1
* Bump pytest from 6.2.5 to 7.1.1. [dependabot[bot]]
Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.5 to 7.1.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/6.2.5...7.1.1)
---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:production
update-type: version-update:semver-major
...
* Merge pull request #862 from cve-search/dependabot/pip/requests-2.27.1. [PT]
Bump requests from 2.26.0 to 2.27.1
* Bump requests from 2.26.0 to 2.27.1. [dependabot[bot]]
Bumps [requests](https://github.com/psf/requests) from 2.26.0 to 2.27.1.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](https://github.com/psf/requests/compare/v2.26.0...v2.27.1)
---
updated-dependencies:
- dependency-name: requests
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Merge pull request #865 from cve-search/dependabot/pip/docs/source/nltk-3.6.6. [PT]
Bump nltk from 3.6.5 to 3.6.6 in /docs/source
* Bump nltk from 3.6.5 to 3.6.6 in /docs/source. [dependabot[bot]]
Bumps [nltk](https://github.com/nltk/nltk) from 3.6.5 to 3.6.6.
- [Release notes](https://github.com/nltk/nltk/releases)
- [Changelog](https://github.com/nltk/nltk/blob/develop/ChangeLog)
- [Commits](https://github.com/nltk/nltk/compare/3.6.5...3.6.6)
---
updated-dependencies:
- dependency-name: nltk
dependency-type: direct:production
...
* Merge pull request #864 from AlphaBravoCompany/master. [PT]
Database connectivity using MONGODB+SRV connection string
* Database connectivity using MONGO+SRV connection string (#2) [Ed Engelking]
* Added feature to use mongodb-srv URI records in mongodb plugin. Added URI configuration options in Config.py. Updated sample configuration to include ability to enable mongodb-srv URI. Added dnspython to pip requirements.txt.
* Updating database documentation to explain how to use the new configuration options for SRV syntax.
* Fixed a word.
* Updated Config.py and mongodb.py to allow calls for SRV connections.
* Update VERSION. [PT]
* Merge pull request #854 from oh2fih/master. [PT]
* Remove logrotate as logging to syslog. [Esa Jokinen]
* A more complete set of CVE-Search systemd services. [Esa Jokinen]
* Merge pull request #831 from FafnerKeyZee/patch-1. [PT]
* Sending parameters to make uwsgi happy ;) [Fafner [_KeyZee_]]
* Merge pull request #830 from FafnerKeyZee/master. [PT]
* Adding systemd and logrotate. [Olivier Ferrand]
* Merge pull request #824 from cve-search/dependabot/pip/sphinx-4.3.1. [Alexandre Dulaunoy]
Bump sphinx from 4.3.0 to 4.3.1
* Bump sphinx from 4.3.0 to 4.3.1. [dependabot[bot]]
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES)
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.3.0...v4.3.1)
---
updated-dependencies:
- dependency-name: sphinx
dependency-type: direct:development
update-type: version-update:semver-patch
...
* Merge pull request #816 from kawtar01/feature/setup_oidc_auth_flow. [PT]
* Update doc to elaborate idp discovery url. [Kawtar.ahaggach.e]
* Update requirements.txt. [Paul Tikken Laptop]
* Rebase. [Paul Tikken Laptop]
* Merge pull request #823 from P-T-I/api_doc_fix. [PT]
Redoc dependency removal
* Removed redoc as dependency. [Paul Tikken Laptop]
* Merge pull request #822 from P-T-I/update_reqs. [PT]
Updated requirements
* Updated requirements. [Paul Tikken Laptop]
* Fix for always showing the bottom plugin toolbar. [Paul Tikken Laptop]
* Merge pull request #819 from P-T-I/cve-search-801. [PT]
Updates capec version
* Fix #cve-search-801; update capec version. [Paul Tikken Laptop]
* Changed print statements to logger statements. Added function to retrieve a requests session instead of a plain request method. This function also respects proxies from the config. Added verify possibility to ignore requests made with/to self signed certificates OIDC servers. Black formatting enforced. [Paul Tikken Laptop]
* Black formatting and cleanup imports. [Paul Tikken Laptop]
* Added SSL_Verify to Config.py and corresponding method to retrieve the value. Added this value into the configuration.ini.sample as well. [Paul Tikken Laptop]
* Setup OIDC login flow. [Kawtar.ahaggach.e]
* Merge pull request #814 from FafnerKeyZee/master. [PT]
* Update bookmarked.html. [Fafner [_KeyZee_]]
* Update linked.html. [Fafner [_KeyZee_]]
* Merge pull request #806 from oh2fih/master. [PT]
Enhance sanitation #796 + black formatting.
* Black formatting. [Esa Jokinen]
* Enhance sanitation #796 + black formatting. [Esa Jokinen]
* Merge pull request #796 from P-T-I/cve-search-795. [PT]
Reflected server-side cross-site scripting
* Update requirements. [Paul Tikken Laptop]
* Fix #795; server side XSS vulnerability. [Paul Tikken Laptop]
* Merge pull request #784 from cve-search/dependabot/pip/jinja2-3.0.2. [PT]
* Bump jinja2 from 3.0.1 to 3.0.2. [dependabot[bot]]
Bumps [jinja2](https://github.com/pallets/jinja) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/jinja/compare/3.0.1...3.0.2)
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #786 from cve-search/dependabot/pip/werkzeug-2.0.2. [PT]
* Bump werkzeug from 2.0.1 to 2.0.2. [dependabot[bot]]
Bumps [werkzeug](https://github.com/pallets/werkzeug) from 2.0.1 to 2.0.2.
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/werkzeug/compare/2.0.1...2.0.2)
---
updated-dependencies:
- dependency-name: werkzeug
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #783 from cve-search/dependabot/pip/flask-2.0.2. [PT]
* Bump flask from 2.0.1 to 2.0.2. [dependabot[bot]]
Bumps [flask](https://github.com/pallets/flask) from 2.0.1 to 2.0.2.
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/flask/compare/2.0.1...2.0.2)
---
updated-dependencies:
- dependency-name: flask
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #782 from cve-search/dependabot/pip/pytest-cov-3.0.0. [PT]
* Bump pytest-cov from 2.12.1 to 3.0.0. [dependabot[bot]]
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.12.1 to 3.0.0.
- [Release notes](https://github.com/pytest-dev/pytest-cov/releases)
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.12.1...v3.0.0)
---
updated-dependencies:
- dependency-name: pytest-cov
dependency-type: direct:production
update-type: version-update:semver-major
...
* Merge pull request #789 from oh2fih/master. [PT]
* Merge branch 'cve-search:master' into master. [Esa Jokinen]
* Merge pull request #785 from oh2fih/master. [PT]
* Remove IRC and XMPP from documentation (#787) [Esa Jokinen]
* Remove requirements for IRC and XMPP (#787) [Esa Jokinen]
* Remove broken feature: XMPP bot (#787) [Esa Jokinen]
* Remove broken feature: IRC bot (#787) [Esa Jokinen]
* Add "Logging: True/False" in sample config (#774) [Esa Jokinen]
* Improve logging: config & fault tolerance (#774) [Esa Jokinen]
* Merge pull request #778. [PT]
update redoc
* Redoc update. [Paul Tikken Laptop]
* Merge pull request #777. [PT]
req update
* Docs update. [Paul Tikken Laptop]
* Merge pull request #776. [PT]
docs update
* Docs update. [Paul Tikken Laptop]
* Merge pull request #775. [PT]
update requirements
* Update requirements.txt. [Paul Tikken Laptop]
* Merge pull request #771 from cve-search/dependabot/pip/tqdm-4.62.3. [PT]
Bump tqdm from 4.62.2 to 4.62.3
* Bump tqdm from 4.62.2 to 4.62.3. [dependabot[bot]]
Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.2 to 4.62.3.
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](https://github.com/tqdm/tqdm/compare/v4.62.2...v4.62.3)
---
updated-dependencies:
- dependency-name: tqdm
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #772 from cve-search/dependabot/pip/nltk-3.6.3. [PT]
Bump nltk from 3.6.2 to 3.6.3
* Bump nltk from 3.6.2 to 3.6.3. [dependabot[bot]]
Bumps [nltk](https://github.com/nltk/nltk) from 3.6.2 to 3.6.3.
- [Release notes](https://github.com/nltk/nltk/releases)
- [Changelog](https://github.com/nltk/nltk/blob/develop/ChangeLog)
- [Commits](https://github.com/nltk/nltk/compare/3.6.2...3.6.3)
---
updated-dependencies:
- dependency-name: nltk
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #766 from oh2fih/master. [PT]
Ajaxify searches & adjust search result reason priority
* Merge branch 'cve-search:master' into master. [Esa Jokinen]
* Merge pull request #768 from cve-search/dependabot/pip/sphinx-rtd-theme-1.0.0. [PT]
Bump sphinx-rtd-theme from 0.5.2 to 1.0.0
* Bump sphinx-rtd-theme from 0.5.2 to 1.0.0. [dependabot[bot]]
Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 0.5.2 to 1.0.0.
- [Release notes](https://github.com/readthedocs/sphinx_rtd_theme/releases)
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/0.5.2...1.0.0)
---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
dependency-type: direct:development
update-type: version-update:semver-major
...
* Merge pull request #769 from cve-search/dependabot/pip/sphinx-4.2.0. [PT]
Bump sphinx from 4.1.2 to 4.2.0
* Bump sphinx from 4.1.2 to 4.2.0. [dependabot[bot]]
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.1.2 to 4.2.0.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES)
- [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.1.2...v4.2.0)
---
updated-dependencies:
- dependency-name: sphinx
dependency-type: direct:development
update-type: version-update:semver-minor
...
* Fix breadcrumb for freetext search. [Esa Jokinen]
* Update search tooltip. [Esa Jokinen]
* Change freetext search path (removing '?search=') [Esa Jokinen]
* Remove unused template static_table.html (#758) [Esa Jokinen]
* Breadcrumb for freetext search (#758) [Esa Jokinen]
* Expand Ajax search to vendor browsing (#758) [Esa Jokinen]
* Merge branch 'cve-search:master' into master. [Esa Jokinen]
* Merge pull request #764 from oh2fih/master. [PT]
* Adjust search result reason priority. [Esa Jokinen]
* Show 'reason' only if exists. Fix indentation. [Esa Jokinen]
* Shared functions: better on the same file. (#758) [Esa Jokinen]
* Ajaxify freetext search (#758) [Esa Jokinen]
* Merge branch 'cve-search:master' into master. [Esa Jokinen]
* Merge pull request #762 from oh2fih/master. [PT]
* Filter validation for an authenticated user (#763) [Esa Jokinen]
* Authenticated user defaults for the filter (#763) [Esa Jokinen]
* Backend state for the auth user filter form (#763) [Esa Jokinen]
* CSS for Bootstrap v4.5.2 -> v4.6.0. [Esa Jokinen]
* Update Bootstrap v4.5.2 -> v4.6.0 (#761) [Esa Jokinen]
* Popper required by Bootstrap must be before it. [Esa Jokinen]
* Merge branch 'web-cleanup' [Esa Jokinen]
* Update clipboard.js v2.0.6 -> v2.0.8 (#761) [Esa Jokinen]
* Update Popper (?? 2019 version) -> v2.10.1 (#761) [Esa Jokinen]
* Update DataTables 1.10.22 -> 1.11.2 (#761) [Esa Jokinen]
* Remove legacy Flash (#761) [Esa Jokinen]
* Uniform style with master-page layout (#761) [Esa Jokinen]
* Remove unused HTML5 Shiv v3.6.2 (#761) [Esa Jokinen]
* Abandon IE 6-8 support. (#761) [Esa Jokinen]
* CSS for Font Awesome Free 5.13.0 -> 5.15.4 (#761) [Esa Jokinen]
* Remove unused jQuery v3.5.1 (#761) [Esa Jokinen]
* Use jQuery v3.6.0 (replacing jQuery v3.5.1) (#761) [Esa Jokinen]
* Add jQuery v3.6.0 (#761) [Esa Jokinen]
* Remove unused fonts (glyphicons-halflings) (#761) [Esa Jokinen]
* Update Font Awesome Free 5.13.0 -> 5.15.4 (#761) [Esa Jokinen]
* Enable Font Awesome Free (ref. all.min.js) (#761) [Esa Jokinen]
* Remove unused jQuery v1.11.2 (#761) [Esa Jokinen]
* Remove unreferenced template api.html (#761) [Esa Jokinen]
* Remove unreferenced template filters2.html (#761) [Esa Jokinen]
* Merge pull request #760 from oh2fih/master. [PT]
* Merge branch 'cve-search:master' into master. [Esa Jokinen]
* Merge pull request #755 from cve-search/dependabot/pip/beautifulsoup4-4.10.0. [PT]
Bump beautifulsoup4 from 4.9.3 to 4.10.0
* Bump beautifulsoup4 from 4.9.3 to 4.10.0. [dependabot[bot]]
Bumps [beautifulsoup4](http://www.crummy.com/software/BeautifulSoup/bs4/) from 4.9.3 to 4.10.0.
---
updated-dependencies:
- dependency-name: beautifulsoup4
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Fix indentation. [Esa Jokinen]
* Rename the function to be less general. (#758) [Esa Jokinen]
* One more MountPath fix for (#759) [Esa Jokinen]
* Merge branch 'cve-search:master' into master. [oh2fih]
* Merge pull request #756 from oh2fih/master. [PT]
Minor improvements to the filter functionality. Fixed search.
* Merge pull request #757 from DocArmoryTech/patch-1. [PT]
Fix typo in production installation
* Fix typo in production installation. [DocArmoryTech]
Added missing redirects `>` to the `cat` commands in the instructions for production installation
* Facilitate mounting with JS var MountPath (#759) [Esa Jokinen]
* Dynamically generate URL for mounting. [Esa Jokinen]
* These were already fixed in #728 but got reverted. [Esa Jokinen]
* Add global JS variable for MountPath (#759) [Esa Jokinen]
* Removed duplicate // from favicon URL. [Esa Jokinen]
* Beautify indentation etc. [Esa Jokinen]
* This is redundant, too. [Esa Jokinen]
* Fix freetext search form; simplified GET-redirect. [Esa Jokinen]
* /search to support both GET & POST. Fix redirect. [Esa Jokinen]
* Delete invalid cookie more aggressively. [Esa Jokinen]
* Make the "Filter" buttons behave equally. [Esa Jokinen]
* Show the filter box if a warning is displayed. [Esa Jokinen]
* Merge pull request #754 from oh2fih/master. [PT]
Fix the server-side filter date validation
* Merge branch 'cve-search:master' into master. [oh2fih]
* Merge pull request #753 from oh2fih/master. [PT]
Move inline JavaScript from the HTML template to static .js files
* Fix the server-side date validation. (#733) [Esa Jokinen]
* Added newline in the end of file. [Esa Jokinen]
* Move all possible inline JS to static files. [Esa Jokinen]
* Uniform indentation. [Esa Jokinen]
* Move filter related JS from template to /static. [Esa Jokinen]
* Not used anywhere; setFilters() always empty. [Esa Jokinen]
* Merge pull request #752 from P-T-I/cve-search-751. [PT]
* Dropping all collections when forced. [Paul Tikken Laptop]
* Reconfigured wsgi mount path to be configurable via the configuration settings. [Paul Tikken Laptop]
* Merge pull request #749 from P-T-I/cve-search-742. [PT]
Web GUI filters always filtering on CVSS3 (despite CVSS2 chosen)
* Fix #742; fixed gui performing wrong CVSS filter and fixed filtering on dates which where performed on the wrong date format. [Paul Tikken Laptop]
* Merge branch 'up_master' into cve-search-742. [Paul Tikken Laptop]
* Merge pull request #748 from oh2fih/master. [PT]
Client-side filter handling with cookies
* More responsive user interactions (#747) [Esa Jokinen]
* Client-side filter validation (#747) [Esa Jokinen]
* Better look for warning (same size when empty). [Esa Jokinen]
* Merge branch 'cve-search:master' into master. [oh2fih]
* Reduce requests to /fetch_cve_data (#747) [Esa Jokinen]
* No need for server-side logging anymore (#747) [Esa Jokinen]
* Move filter handling client-side (#747) [Esa Jokinen]
* Fixed bug where datestrings where not handled correctly. [Paul Tikken Laptop]
* Merge pull request #746. [PT]
UX enhancements related to the previous fixes on bug #733
* UX: hilight active drop-down menu options. (#733) [Esa Jokinen]
* UX: replace JS alerts with inline warnings (#733) [Esa Jokinen]
* Update installation.rst. [PT]
* Merge pull request #743 from oh2fih/master. [PT]
Added backend filter validation and pre-filling of the filter form data
* Beautify console errors & reduce verbosity. (#733) [Esa Jokinen]
* Update filter form with the backend state. (#733) [Esa Jokinen]
* Fix a typo; making 'equals' & 'below' work (#733) [Esa Jokinen]
* Make frontend aware of the backend state (#733) [Esa Jokinen]
* Backend filter validation for /set_filter (#733) [Esa Jokinen]
* Merge pull request #744 from DocArmoryTech/wsgi-doc. [PT]
UWSGI documentation update
* Fixed rst reference to Config section. [DocArmoryTech]
* Added note to highlight end of standard install. [DocArmoryTech]
Added note to highlight end of standard install and direct the reader on to the Configuration section (hoping to avoid people trying to perform both installations
* Renamed 'basic' to 'standard' installation. [DocArmoryTech]
* Update webgui.rst. [DocArmoryTech]
Decomposed the "starting the webserver" section into two parts one for a standard installation, and one for a production installation that covers setup of uwsgi and nginx
* Update webgui.rst. [DocArmoryTech]
* Removed UWSGI and NGINX setup. [DocArmoryTech]
Removed UWSGI and NGINX setup with the intention of replacing it under the webgui section of the docs
* Corrected type in virtualenv. [DocArmoryTech]
* Added virtualenv parameter. [DocArmoryTech]
Added a `virtualenv` parameter to tally with that specified in the docs
* Copied mongo-db install to Prod. Install. [DocArmoryTech]
Copied the instructions for installing mongodb to the "Production Installation" section
* Updated docs to use requirements.prod file. [DocArmoryTech]
* Create requirements.prod. [DocArmoryTech]
* Update installation.rst. [DocArmoryTech]
* Fixed formatting of new section. [DocArmoryTech]
Fixed md formatting of new "Production Installation" section
* Create nginx.conf.sample. [DocArmoryTech]
* Update installation.rst. [DocArmoryTech]
* Merge pull request #741 from P-T-I/cleanup. [PT]
query published date
* Fixed bug where datestrings posted to the api/query endpoint where not handled correctly. [Paul Tikken Laptop]
* Merge pull request #738 from P-T-I/plugin_rewrite. [PT]
Plugin rewrite
* Documentation update and first release for Cve-Search plugin. [Paul Tikken Laptop]
* Rebase merge. [Paul Tikken Laptop]
* Merge pull request #737 from P-T-I/cve-search-709. [PT]
/api/dbInfo missing in the new API
* Restructure dbinfo in documentation. [Paul Tikken Laptop]
* Merge pull request #736 from P-T-I/cve-search-734. [PT]
Issues using the REST API
* Added cvssVersion header. [Paul Tikken Laptop]
* Updated requirements and fixed headers with underscore no longer being processed by the REST API. [Paul Tikken Laptop]
* Merge pull request #732 from P-T-I/cve-search-714. [PT]
Support for MongoDB 5.0
* Black formatting. [Paul Tikken Laptop]
* Rebase. [Paul Tikken Laptop]
* Merge pull request #728 from DocArmoryTech/mounty. [PT]
Dynamically generate all URLs to facilitate mounting
* Small error with cwe breadcrumb. [Paul Tikken Laptop]
* Merge branch 'mounty' of https://github.com/DocArmoryTech/cve-search into mounty. [dotsie]
* Updated fixed to masterLogin. [DocArmoryTech]
Reverted changes made to masterLogin function to make use of the *local* (and not absent) `verifyPass` function.
* Version change for rebase. [DocArmoryTech]
* Corrected version. [DocArmoryTech]
* Update VERSION. [DocArmoryTech]
* Update wsgi.ini.sample. [DocArmoryTech]
* Fixed path of wsgi-file. [DocArmoryTech]
* Removed beforeSend hook. [dotsie]
* Prefix XHR urls with url_for. [dotsie]
* Fixed typo in chaneg_pass url. [dotsie]
* Moved XHR js functions to admin template. [dotsie]
* Modified URL generation in stand UI. [dotsie]
* Fixed urls in admin or full webui. [dotsie]
* Fixed db mgmt admin scripts ref to non-existent function. [dotsie]
db_mgmt_admin.py attempted to make use of the mongodb plugin's verifyPass function.
Assuming a refactoring oversight, and changing the function call to verifyUser(user, pass)
* Merge branch 'mounty' of https://github.com/DocArmoryTech/cve-search into mounty. [dotsie]
* Create wsgi.ini.sample. [DocArmoryTech]
A minimal example of a uwsgi ini that runs cve-search listening on a socket
* Removed leading slash from constructed breadcrumb urls. [dotsie]
- Modified dynamic list constructors so as to not return a leading `/` in generated URLs
- Modified the loop body that generates the page breadcrumb so as to include the url_for('home.index')
todo:
- modify admin 'views'
- admin/account testing
* Dynamically generated urls to static resources for app mounting /_get_plugins. [dotsie]
In order to faciliate 'mounting' of cve-search as a web app, or alteration of the application root:
- Modified the 'hard coded' urls to static resources (css, imgs, js) to use the url_for() function to generate urls dynamically
- Added a new `<script>` in the `<head>` of `web/templates/layouts/master-page.html`
- moved the ~search~ `redirect()` function from `web/static/js/custom/scripts.js` to a new `<script>` in the _master_ layout template
- modified the `redirect()` function to use `url_for()` when generating urls and redirecting
- configured ajax to prepend the web_root to XHR requets using the `beforeSend` hook
Todo:
- Breadcrumbs are broken
- Admin functions need testing
* Update wsgi.ini.sample. [DocArmoryTech]
* Fixed path of wsgi-file. [DocArmoryTech]
* Removed beforeSend hook. [dotsie]
* Prefix XHR urls with url_for. [dotsie]
* Fixed typo in chaneg_pass url. [dotsie]
* Moved XHR js functions to admin template. [dotsie]
* Modified URL generation in stand UI. [dotsie]
* Fixed urls in admin or full webui. [dotsie]
* Create wsgi.ini.sample. [DocArmoryTech]
A minimal example of a uwsgi ini that runs cve-search listening on a socket
* Removed leading slash from constructed breadcrumb urls. [dotsie]
- Modified dynamic list constructors so as to not return a leading `/` in generated URLs
- Modified the loop body that generates the page breadcrumb so as to include the url_for('home.index')