自制殺u盤病毒的批處理代碼
更新時間:2014年05月11日 00:46:16 作者:
這篇文章主要介紹了自制殺u盤病毒的批處理代碼,需要的朋友可以參考下
復(fù)制代碼 代碼如下:
@echo off&mode con cols=61 lines=25&color f2
title U盤病毒天敵
echo 名稱:u盤病毒的天敵
echo 平臺:windows xp
echo 作者:小強(qiáng)
echo 版權(quán)所有,請勿倒翻!
cd\
del /f /q /ah *.exe 2>nul
del /f /q /as *.exe 2>nul
del /f /q ...exe 2>nul
del /f /q *.inf 2>nul
md autorun.inf 2>nul &attrib +s +h +a +r autorun.inf 1>nul
for /f %%a in ('dir /ad /b 2^>nul') do (
del /f /q "%%a.exe" 2>nul &rd /s /q "%%a.exe" 2>nul
if not "%%a" equ "autorun.inf" (
attrib -s -h -a -r "%%a"
)
)
for /f %%b in ('dir /a-d /b 2^>nul') do (
if not "%%b" equ "desktop.ini" (
attrib -s -h -a -r "%%b" 1>nul 2>nul
)
)
echo.
echo.
echo 殺毒完畢,請按任意鍵退出?。。。。。。?BR>echo.
echo.
echo =============================================================
echo == ☆注意☆ ==
echo == 一。本程序?yàn)榇致栽O(shè)計(jì),并不是最完善,還望體諒! ==
echo == 二。運(yùn)行玩后請自己用你慧眼檢查一些exe文件,以免漏殺 ==
echo == 三。如需復(fù)制該程序,請將其放入u盤使用! ==
echo =============================================================
pause>nul
您可能感興趣的文章:
- linux服務(wù)器被植入ddgs、qW3xT.2挖礦病毒的處理實(shí)戰(zhàn)記錄
- 通過批處理關(guān)閉135 137 445等端口的實(shí)現(xiàn)代碼(勒索病毒)
- 對一個vbs腳本病毒的病毒原理分析
- php網(wǎng)頁病毒清除類
- VC實(shí)現(xiàn)的病毒專殺工具完整實(shí)例
- 利用DOS命令來對抗U盤病毒保護(hù)U盤數(shù)據(jù)
- c病毒程序原理分析(防范病毒 c語言小病毒示例)
- 解析:清除SQL被注入惡意病毒代碼的語句
- Autorun 病毒清除工具bat代碼
- VBS.Runauto腳本病毒分析篇
- 一段病毒常用的VBS代碼
- 記事本U盤病毒 Notepad.exe查殺方法
- 美女游戲病毒iwbkvd.exe查殺方法
- 批處理 Autorun 病毒清除工具
- Rootkit病毒的解決辦法
相關(guān)文章
windows設(shè)置開機(jī)自動運(yùn)行批處理的方法
這篇文章介紹了windows設(shè)置開機(jī)自動運(yùn)行批處理的方法,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-12-12