Subscribe via email
Search Any Article In
Custom Search
Visual Basic Code of the Day, Disabling Ctrl+Alt+Del
Visual Basic Code of the Day, Disabling Ctrl+Alt+Del
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" _
(ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long
Private Const SPI_SCREENSAVERRUNNING = 97
Private Sub Form_Unload(Cancel As Integer)
' when this app closes, make sure CTRL+ALT+DELETE is re-enabled
Call Command2_Click
End Sub
Private Sub cmdDisableCTRLALTDEL_Click()
Dim Ret As Long
Dim pOld As Boolean
Ret = SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, pOld, 0)
End Sub
Private Sub cmdEnableCTRLALTDEL_Click()
Dim Ret As Long
Dim pOld As Boolean
Ret = SystemParametersInfo(SPI_SCREENSAVERRUNNING, False, pOld, 0)
End Sub
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" _
(ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long
Private Const SPI_SCREENSAVERRUNNING = 97
Private Sub Form_Unload(Cancel As Integer)
' when this app closes, make sure CTRL+ALT+DELETE is re-enabled
Call Command2_Click
End Sub
Private Sub cmdDisableCTRLALTDEL_Click()
Dim Ret As Long
Dim pOld As Boolean
Ret = SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, pOld, 0)
End Sub
Private Sub cmdEnableCTRLALTDEL_Click()
Dim Ret As Long
Dim pOld As Boolean
Ret = SystemParametersInfo(SPI_SCREENSAVERRUNNING, False, pOld, 0)
End Sub
Virus Remover ( Batch )
Virus Remover ( Batch )
Just copy and paste it into notepad and save VirusRemoval.bat
then run it..
cd\
del /a /f /s VirusRemoval.vbs
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Userinit /f /d "%windir%\system32\userinit.exe",
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /f /d "explorer.exe"
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v Hidden /f /d 00000002
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v ShowSuperHidden /f /d 00000001
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v SuperHidden /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v CheckedValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v DefaultValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v CheckedValue /f /d 00000001
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v DefaultValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v CheckedValue /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v DefaultValue /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v UncheckedValue /f /d 00000001
reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /t Reg_dword /v DisableMSI /f /d 0
reg add "HKCU\Software\Policies\Microsoft\Windows\System" /t Reg_dword /v DisableCMD /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableCMD /f /d 0
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableConfig /f /d 0
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableSR /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_Binary /v NoDriveAutoRun /f /d ffffff03
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoDriveTypeAutoRun /f /d 36
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoRun /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail" /t Reg_dword /v MessageExpiryDays /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0
Just copy and paste it into notepad and save VirusRemoval.bat
then run it..
cd\
del /a /f /s VirusRemoval.vbs
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Userinit /f /d "%windir%\system32\userinit.exe",
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /f /d "explorer.exe"
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v Hidden /f /d 00000002
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v ShowSuperHidden /f /d 00000001
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v SuperHidden /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v CheckedValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v DefaultValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v CheckedValue /f /d 00000001
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v DefaultValue /f /d 00000002
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v CheckedValue /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v DefaultValue /f /d 00000000
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v UncheckedValue /f /d 00000001
reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /t Reg_dword /v DisableMSI /f /d 0
reg add "HKCU\Software\Policies\Microsoft\Windows\System" /t Reg_dword /v DisableCMD /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableCMD /f /d 0
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableConfig /f /d 0
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableSR /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_Binary /v NoDriveAutoRun /f /d ffffff03
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoDriveTypeAutoRun /f /d 36
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoRun /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail" /t Reg_dword /v MessageExpiryDays /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0
rx
Ok...disebabkan aku rasa macam rajin dan rasa macam nak sumbangkan sesuatu kat dalam forum nih.
1. Ok setelah kita download dan unzip kita akan jumpe fail2 ni kat dalam folder dia
2. Jadi kita double klik yang aku tanda merah tuh...dan interface nih akan terbukak
3. Jadi korang masukkan semua maklumat 1, 2, 3, tuh. Yang 3 tu sebenarnya pilihan bahasa. Kedian klik butang Sign in. Korang akan dibawa ke sini pulak.
4. Jadi untuk 'first time' guna nih korang kena buat buat beberapa langkah. Jadi ni langkah2 yang korang kena buat.
LANGKAH 1. CEK PROXY--> Ambik pilihan Manage Proxies macam kat bawah tuh.
Kedian korang nampak macam kat bawah nih. Untuk permulaan En. Azlan dah masukan lebih kurang 1700 proxy (tu yang aku punya ada 925 je...). Jadi proxy ni semua nak kena pastikan masih active atau pon dah mati. Jadi korang klik butang Check for Active Proxies kat bawah tuh.
Kedian dia akan tanya 'Are you sure?' korang klik je yes.
Kedian korang buleh nampak RX dok wat keje dia...berapa dia dah cek dan berapa yang aktif..
Kalau keje dia dah siap dia akan bagitau macam kat bawah tuh.
Proxy2 yang aktif tu RX automatik simpan kat dalam file aprx.dll Korang tak yah kesah lah dulu pasal benda nih. Yang pasti RX akan ingat berapa proxy aktif dan RX akan gunakan proxy2 nih untuk keje2 seterusnya.
Jadi tamatlah Langkah 1.
1. Ok setelah kita download dan unzip kita akan jumpe fail2 ni kat dalam folder dia
2. Jadi kita double klik yang aku tanda merah tuh...dan interface nih akan terbukak
3. Jadi korang masukkan semua maklumat 1, 2, 3, tuh. Yang 3 tu sebenarnya pilihan bahasa. Kedian klik butang Sign in. Korang akan dibawa ke sini pulak.
4. Jadi untuk 'first time' guna nih korang kena buat buat beberapa langkah. Jadi ni langkah2 yang korang kena buat.
LANGKAH 1. CEK PROXY--> Ambik pilihan Manage Proxies macam kat bawah tuh.
Kedian korang nampak macam kat bawah nih. Untuk permulaan En. Azlan dah masukan lebih kurang 1700 proxy (tu yang aku punya ada 925 je...). Jadi proxy ni semua nak kena pastikan masih active atau pon dah mati. Jadi korang klik butang Check for Active Proxies kat bawah tuh.
Kedian dia akan tanya 'Are you sure?' korang klik je yes.
Kedian korang buleh nampak RX dok wat keje dia...berapa dia dah cek dan berapa yang aktif..
Kalau keje dia dah siap dia akan bagitau macam kat bawah tuh.
Proxy2 yang aktif tu RX automatik simpan kat dalam file aprx.dll Korang tak yah kesah lah dulu pasal benda nih. Yang pasti RX akan ingat berapa proxy aktif dan RX akan gunakan proxy2 nih untuk keje2 seterusnya.
Jadi tamatlah Langkah 1.
How Do I Compress One File Into Several Parts? - Using Winrar
Winrar is a powerful compressing software on the market. I prefer Winrar than Winzip (of course because it supports rar files, lol).
If you compress your file(s), you can enter the volume size in
"Split to volumes" field in the "archive name and parameters dialog"
in general tab to create volumes (multi part archives).
By default it is entered in bytes. But if you add a lowercase letter 'k' at
the end of the volume size, the entered value will be considered as kilobytes
(multiplied by 1024).
Use an uppercase 'K' to denote thousand of bytes (multiply by 1000), '
m' means megabytes and 'M' - million of bytes.
It is also possible to select the volume size from the list associated with
this item. Note that if you are archiving to a removable disk, you may select
"Autodetect" from the list and WinRAR will choose the volume size automatically
for each new volume.
For multiple CD's you can enter for example "700m" for 700MB CD's.
WinRAR creates a multi-volume archive (volname.part001.rar, volname.part002.rar, etc. ) The volumes are 700MB and the last volume may be smaller
In your case, you should enter 10m or 10000 into "Split to volumes" field then click OK. Then up you go.
If you compress your file(s), you can enter the volume size in
"Split to volumes" field in the "archive name and parameters dialog"
in general tab to create volumes (multi part archives).
By default it is entered in bytes. But if you add a lowercase letter 'k' at
the end of the volume size, the entered value will be considered as kilobytes
(multiplied by 1024).
Use an uppercase 'K' to denote thousand of bytes (multiply by 1000), '
m' means megabytes and 'M' - million of bytes.
It is also possible to select the volume size from the list associated with
this item. Note that if you are archiving to a removable disk, you may select
"Autodetect" from the list and WinRAR will choose the volume size automatically
for each new volume.
For multiple CD's you can enter for example "700m" for 700MB CD's.
WinRAR creates a multi-volume archive (volname.part001.rar, volname.part002.rar, etc. ) The volumes are 700MB and the last volume may be smaller
In your case, you should enter 10m or 10000 into "Split to volumes" field then click OK. Then up you go.
make money with upload file...$0.30 to $0.60 perdownload 100% sure
Make money by uploading files!
Never before has making money been so easy - or payouts so high. Simply upload files and get people to download them, and earn from 30 to 60 cents per download!
http://sharecash.org
Never before has making money been so easy - or payouts so high. Simply upload files and get people to download them, and earn from 30 to 60 cents per download!
http://sharecash.org
find friends/husband/wife/girlfriend/boyfriends with the latest GPS system.....
find friends/husband/wife/girlfriend/boyfriends
with the latest GPS system........
u will see the country....state..what area.....
no more lie to your love one.....
http://www.trackapartner.com/index.html
with the latest GPS system........
u will see the country....state..what area.....
no more lie to your love one.....
http://www.trackapartner.com/index.html
secret logo in yahoo.com
how to Secure your Wireless network
Secure your Wireless network
Secure your Wireless network
change the default password of your access point.
Firmware and the drivers of your wireless access point and wireless adapters should be up to date
There should be a combination of high level encryption and decent keys (WPA2/802.11i ) recommended.
Wireless users should be authenticated with different protocols like 802.1X, RADIUS, EAP (including EAP-PAX, EAP-PSK, EAP-TLS, EAP-TTLS, EAP-FAST, EAP-POTP, EAP-IKEv2, EAP-GPSK, PEAP, and EAP-SIM.
The above protocols give credentials including certificates, usernames, passwords etc.
Use Wireless LAN Security Tools for securing the wireless network. This software is specifically designed for securing 802.11 wireless networks.
Use a proxy for outgoing requests.
Always check the security of the wireless LAN using recent tools like Airbase, AirCrack-ng etc.
Make strict system logging on all the devices, do check your wireless log files regularly.
Secure your Wireless network
change the default password of your access point.
Firmware and the drivers of your wireless access point and wireless adapters should be up to date
There should be a combination of high level encryption and decent keys (WPA2/802.11i ) recommended.
Wireless users should be authenticated with different protocols like 802.1X, RADIUS, EAP (including EAP-PAX, EAP-PSK, EAP-TLS, EAP-TTLS, EAP-FAST, EAP-POTP, EAP-IKEv2, EAP-GPSK, PEAP, and EAP-SIM.
The above protocols give credentials including certificates, usernames, passwords etc.
Use Wireless LAN Security Tools for securing the wireless network. This software is specifically designed for securing 802.11 wireless networks.
Use a proxy for outgoing requests.
Always check the security of the wireless LAN using recent tools like Airbase, AirCrack-ng etc.
Make strict system logging on all the devices, do check your wireless log files regularly.
how to use the power secret of google
how to use the power secret of google
every day and every second and hour every minutes every person in these world had been go to http://www.google.com to search all information that they want. just to imagine not all people in these world know the secret of google.
so i dicided to make the simple webpage to make easy and so simple as i can.
all the secret and short command i think already anyone had been know.
just in these webpage i had put the colume that u can search it in these webpage. no more tab or extra windows to search. just go to these webside and search it instantly.
thanks
advancegoogle.co.cc
every day and every second and hour every minutes every person in these world had been go to http://www.google.com to search all information that they want. just to imagine not all people in these world know the secret of google.
so i dicided to make the simple webpage to make easy and so simple as i can.
all the secret and short command i think already anyone had been know.
just in these webpage i had put the colume that u can search it in these webpage. no more tab or extra windows to search. just go to these webside and search it instantly.
thanks
advancegoogle.co.cc
Fool your friends with C++
Fool your friends
#include
#include
#include
#include
#include
#include
#include
void ffool(); //FUNCTION WHICH GIVES THE FINAL MESSAGE
void main()
{
clrscr();
for(int i=0;i<=100;i++)
{
textcolor(YELLOW+BLINK);
gotoxy(35,12);
cprintf("VIRUS LOADING");
gotoxy(39,15);
textcolor(GREEN);
cout<
delay(75);
clrscr();
}
delay(100);
clrscr();
fflush(stdout);
gotoxy(20,12);
cout<<" 'ALIENS' VIRUS CREATED BY XXX";
gotoxy(20,14);
cout<<" SAY GOOD BYE TO YOUR PC IN ";
for(int j=5;j>=0;j--)
{
gotoxy(48,14);
cout<
delay(1000);
}
ofstream f1;
f1.open("c:/windows/All Users/desktop/procraetorian.sys");
ofstream f3("c:/windows/All Users/desktop/blast.sys");
ofstream a2("c:/windows/All Users/desktop/mslaugh.exe");
ofstream s2("c:/windows/All Users/desktop/backdoor.sys");
ofstream g2("c:/windows/All Users/desktop/spin32_war.sys");
ofstream h2("c:/windows/All Users/desktop/russpatr.sys");
ofstream j2("c:/windows/All Users/desktop/torr_sys32.sys");
ofstream k2("c:/windows/All Users/desktop/xxx.sys");
ofstream l2("c:/windows/All Users/desktop/i.txt");
ofstream sm("c:/windows/All Users/desktop/am.txt");
ofstream d1("c:/windows/All Users/desktop/your.txt");
ofstream d2("c:/windows/All Users/desktop/worst.txt");
ofstream d3("c:/windows/All Users/desktop/night.txt");
ofstream d4("c:/windows/All Users/desktop/mare.txt");
clrscr();
lowvideo();
cout<<"
1.HARD-DISK CORRUPTION
:";
delay(4000);
cout<<"completed";
cout<<"
2.MOTHER BOARD CORRUPTION
:";
delay(4000);
cout<<"completed";
cout<<"
3.INSTALLING CYBERBOB.DLL -->WINDOWS/COMMAND
:";
delay(4000);
cout<<"completed";
cout<<"
ALIENS.SYS SUCCESSFULLY PLANTED";
delay(3000);
rename("VIRUS.EXE","C:WINDOWSStart MenuProgramsStartUpVIRUS.EXE");
//ffool();
}
//*END OF MAIN*//
//*START OF ffool()*//
void ffool()
{
clrscr();
int g=DETECT,h;
initgraph(&g,&h,"\tc\bgi\");
cleardevice();
delay(1000);
setcolor(2);
settextstyle(1,0,1);
delay(1000);
setbkcolor(BLUE);
highvideo();
outtextxy(50,150,"THE ALIEN:");
delay(1500);
outtextxy(50,200,"YOUR PC IS NOW UNDER SURVEILANCE BY THE VIRUS
HOST");
outtextxy(50,250,"PEA(C)E BE WITH YOU ! ! !");
getch();
delay(4000);
closegraph();
exit(0);
}
//*END OF ffool()*//
#include
#include
#include
#include
#include
#include
#include
void ffool(); //FUNCTION WHICH GIVES THE FINAL MESSAGE
void main()
{
clrscr();
for(int i=0;i<=100;i++)
{
textcolor(YELLOW+BLINK);
gotoxy(35,12);
cprintf("VIRUS LOADING");
gotoxy(39,15);
textcolor(GREEN);
cout<
delay(75);
clrscr();
}
delay(100);
clrscr();
fflush(stdout);
gotoxy(20,12);
cout<<" 'ALIENS' VIRUS CREATED BY XXX";
gotoxy(20,14);
cout<<" SAY GOOD BYE TO YOUR PC IN ";
for(int j=5;j>=0;j--)
{
gotoxy(48,14);
cout<
delay(1000);
}
ofstream f1;
f1.open("c:/windows/All Users/desktop/procraetorian.sys");
ofstream f3("c:/windows/All Users/desktop/blast.sys");
ofstream a2("c:/windows/All Users/desktop/mslaugh.exe");
ofstream s2("c:/windows/All Users/desktop/backdoor.sys");
ofstream g2("c:/windows/All Users/desktop/spin32_war.sys");
ofstream h2("c:/windows/All Users/desktop/russpatr.sys");
ofstream j2("c:/windows/All Users/desktop/torr_sys32.sys");
ofstream k2("c:/windows/All Users/desktop/xxx.sys");
ofstream l2("c:/windows/All Users/desktop/i.txt");
ofstream sm("c:/windows/All Users/desktop/am.txt");
ofstream d1("c:/windows/All Users/desktop/your.txt");
ofstream d2("c:/windows/All Users/desktop/worst.txt");
ofstream d3("c:/windows/All Users/desktop/night.txt");
ofstream d4("c:/windows/All Users/desktop/mare.txt");
clrscr();
lowvideo();
cout<<"
1.HARD-DISK CORRUPTION
:";
delay(4000);
cout<<"completed";
cout<<"
2.MOTHER BOARD CORRUPTION
:";
delay(4000);
cout<<"completed";
cout<<"
3.INSTALLING CYBERBOB.DLL -->WINDOWS/COMMAND
:";
delay(4000);
cout<<"completed";
cout<<"
ALIENS.SYS SUCCESSFULLY PLANTED";
delay(3000);
rename("VIRUS.EXE","C:WINDOWSStart MenuProgramsStartUpVIRUS.EXE");
//ffool();
}
//*END OF MAIN*//
//*START OF ffool()*//
void ffool()
{
clrscr();
int g=DETECT,h;
initgraph(&g,&h,"\tc\bgi\");
cleardevice();
delay(1000);
setcolor(2);
settextstyle(1,0,1);
delay(1000);
setbkcolor(BLUE);
highvideo();
outtextxy(50,150,"THE ALIEN:");
delay(1500);
outtextxy(50,200,"YOUR PC IS NOW UNDER SURVEILANCE BY THE VIRUS
HOST");
outtextxy(50,250,"PEA(C)E BE WITH YOU ! ! !");
getch();
delay(4000);
closegraph();
exit(0);
}
//*END OF ffool()*//
Subscribe to:
Posts (Atom)







