আমি প্রায় 18 বছর আগে আমার .emacs ফাইলটি আমার এক বন্ধুর কাছ থেকে পেয়েছি। মাঝখানে সমাহিত হ'ল enable-local-variables
বৈশিষ্ট্যের সুরক্ষা সম্পর্কিত প্রভাব সম্পর্কে নিম্নলিখিত অশুভ মন্তব্য সতর্কতা :
;; Date: Wed, 7 Dec 1994 11:57:50 -0600
;; From: blob@syl.dl.nec.com (David Blob)
;; Subject: Self-extracting emacs elisp code
;;
;; With all this talk about self extracting mail "viruses", a friend
;; showed me that in emacs (which I use to read mail, along with vm)
;; has the ability to self-extract elisp code. This feature seems to
;; be turned on by default, and it not only applies to mail read with
;; emacs, but rather every file visited (when the feature is on, of
;; course).
;;
;; The way it works is by having a line which reads "Local Variables:"
;; followed by the lisp variables you would like to set...well, it may
;; seem petty, but you can execute programs, make connections and much
;; more through cleverly written elisp code contained within.
;;
;; It's simple to turn off, at any rate...
;;
;; (setq enable-local-variables f) ;; turns off feature (in emacs 19)
;; (setq enable-local-variables 1) ;; makes it ask first (in emacs 19)
;; (setq inhibit-local-variables t) ;; turns off feature (in emacs 18)
;;
;; Anyhow, I think the risks here speak for themselves...
;;
(setq enable-local-variables '())
সুতরাং আমি local-variables
বৈশিষ্ট্যটি বাস্তবে কখনও ব্যবহার করি নি যদিও মনে হয় এটি বেশ কার্যকর হতে পারে। enable-local-variables
স্বেচ্ছাসেবী কোড-ইনজেকশন আক্রমণে আমাকে প্রকাশ না করে এমন কোনও উপকারী উপায় আছে কি ?