summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorMoritz Muehlenhoff <jmm@debian.org>2021-04-20 09:22:11 +0200
committerMoritz Muehlenhoff <jmm@debian.org>2021-04-20 09:22:11 +0200
commitbefcdf4422b6adce9a5c4aeaab83782ee37193f0 (patch)
treecb246b542fe0d60232f0b841cd1590cf3ad074ed /conf
parentb3b7d03ff9aeeb04b4e4b77299bc67a0b6b1f032 (diff)
cvelist.el: new defun to add <not-affected>
Diffstat (limited to 'conf')
-rw-r--r--conf/cvelist.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/conf/cvelist.el b/conf/cvelist.el
index f2d7e74710..901d4e0fb6 100644
--- a/conf/cvelist.el
+++ b/conf/cvelist.el
@@ -41,6 +41,16 @@
(beginning-of-line)
(insert (concat "\t[buster] - " srcpkg " <no-dsa> (" reason ")\n" )))
+; TODO: Read supported distros from central config and prompt for applicable suites
+(defun debian-cvelist-insert-not-affected ()
+ "Insert not-affected comment based on the current source entry."
+ (interactive)
+ (setq reason (read-string "Reason for not-affected: " "Vulnerable code not present"))
+ (setq srcpkg (thing-at-point 'filename))
+ (next-line)
+ (beginning-of-line)
+ (insert (concat "\t[buster] - " srcpkg " <not-affected> (" reason ")\n" )))
+
; TODO: Parse existing source entries for buffer tab completion
(defun debian-cvelist-insert-srcentry ()
"Insert new source package entry."
@@ -63,6 +73,7 @@
(define-key map (kbd "C-c C-c") 'debian-cvelist-cvesearch)
(define-key map (kbd "C-c C-l") 'debian-cvelist-insert-nodsa)
(define-key map (kbd "C-c C-a") 'debian-cvelist-insert-srcentry)
+ (define-key map (kbd "C-c C-x") 'debian-cvelist-insert-not-affected)
map)
"Keymap for `debian-cvelist-mode'.")

© 2014-2024 Faster IT GmbH | imprint | privacy policy