acad病毒
我的电脑上有acad viruse在autocad上的效果,我不知道如何删除acad lisp。我用我的反病毒软件,它对病毒无效,我希望有人能帮我。
thanx公司 这是你需要阅读的内容。
http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&id=13717811&linkID=9240617 ;;; ==========================================================================
;;; File : clean_virus_safe.lsp
;;; Version: 1.0
;;; Date : 14 August 2009
;;; Author : Steve Johnson after Autodesk, based on suggestion by Jimmy
;;; Bergmark.
;;; Purpose: Checks for existence of acad.vlx and logo.gif files, which are
;;; associated with virus AL/Logo-A, also known as ACAD/Unexplode,
;;; ACAD/Agent.A or ACM_UNEXPLODE.B. Written as a safer alternative
;;; to Autodesk's code which deletes suspect files without
;;; prior warning. This code renames the files instead.
;;; Legal : Provided as-is with no warranty whatsoever, use at own risk.
;;; May be distributed freely.
;;; Usage : Append the contents of this file into a startup LISP file
;;; (e.g. acaddoc.lsp in your search path - create such a file if
;;; it does not exist). Autodesk's suggestion to modify the
;;; acad20xx.lsp file should not be followed: this is bad practice.
;;; The acad20xx.lsp file is Autodesk's file and any modifications
;;; you make to it are likely to be lost when updates and patches
;;; are applied.
;;; Effects: Any and all files named acad.vlx and logo.gif and located in
;;; AutoCAD's search path will be renamed, e.g. "acad.vlx" will
;;; become " acad.vlx0". The name will end in a
;;; number starting with 0. If other suspect files are later found
;;; in the same location, those files will be renamed to end with
;;; 1, 2, 3 and so on.
;;; --------------------------------------------------------------------------
;;; Structure:
;;;clean_virus_safe.lsp
;;;`--clean_virus_safe
;;; `--make_new_name
;;; ==========================================================================
(defun clean_virus_safe (ALERTBOX / make_new_name
full-name path-only # new-name rename-msg)
(defun make_new_name ()
(strcat " " virus-file (itoa #))
) ; End make_new_name
;; Start clean_virus_safe ----------------------------
(foreach virus-file '("acad.vlx" "logo.gif")
(while (setq full-name (findfile virus-file))
(progn
(setq
path-only
(substr full-name 1 (- (strlen full-name) (strlen virus-file)))
# 0
)
(while (findfile (make_new_name))
(setq # (1+ #))
)
(setq
new-name (strcat path-only (make_new_name))
rename-msg
(if (vl-file-rename full-name new-name)
(strcat
"Renamed suspected virus file:\n "
full-name " to\n " new-name
)
(strcat
"ERROR: Could not rename suspected virus file:\n "
full-name " to\n " new-name
)
)
)
(princ (strcat "\n" rename-msg))
(if ALERTBOX (alert rename-msg))
)
)
)
(princ)
) ; End clean_virus_safe
;; Call the (clean_virus_safe) function with or without alert box:
(clean_virus_safe nil) ; Does not use alert box
; (clean_virus_safe T) ; Uses alert box
;; One of the above lines should be commented out (i.e. start with a semi-colon).
(princ) 我认为您真的应该遵循AutoDesk提供的建议,正如我提供给您的链接中所指出的那样。 在我尝试了那个建议后,Autocad变得挂起了 为什么有人会为我们制造病毒?(除了是一个彻头彻尾的混蛋……)
我现在不会使用任何vlxLisp程序。
人们不应该张贴它们。 这是个阴谋家!诺顿和麦卡菲正在付钱给那些写病毒的家伙来破解你的盒子,这样你就可以买他们的“预防”软件了! 要清除病毒,请遵循以下说明:
1-下载http://www.irancad.com/irancadsd_content/media/image/2011/01/121_orig.zip
2-解压缩文件。
3-您将找到一个名为:KillWorm的文件。fas。
4-输入AutoCAD。
5-发出“APPLOAD”命令。
6-您会看到一个标题为“加载/卸载应用程序”的对话框。
7-定位KillWorm。fas位于上述区域。
8-压力加载按钮。
9-按下关闭按钮。
10-一个警报框打开,显示您必须输入“KW”才能运行命令。
11-发布“KW”。
12-在提示:“选择选项[主动/被动/全部/?]:”输入:
Active可搜索、查找病毒,如果病毒处于活动状态,则将其杀死。
被动搜索、查找,然后杀死病毒,即使它当前不活跃。
ALL可搜索所有本地驱动器和文件夹。
? 查看有关该命令的简要帮助。
该程序不仅可以杀死病毒,还可以为所有LSP和MNL文件接种疫苗,防止将来感染病毒。
一些病毒杀手发现病毒感染了阿卡多克。lsp或acad。lsp文件并立即删除它们,忽略它们开头可能正确的代码,因此当您运行“KW”时,暂时禁用防病毒保护。 叫我怀疑,但我不会运行*。这是从某个未知网站下载的fas例程,直到我确切知道它是如何工作的,以及使用它会产生什么后果。如今再小心也不为过。例如,有人可能正在访问一个网站,突然出现一条消息,说明用户的计算机受到感染。然后,他们会被提示下载问题的“修复程序”,但后来发现“修复程序”实际上是病毒或恶意软件。到那时已经太晚了。。。损害已经造成。
杀手的来源是什么。fas?是谁写的,什么时候?
你能亲自担保杀虫的有效性吗。fas?
你用过吗?
你能给我们指一下使用过它的人写的评论吗?
页:
[1]
2