Friday, November 19, 2010

HOTFILE ACCOUNT HACK 100% WORKING

ranegrrrl - cowboy (28-02-2011)
HALLANDALE - melissa (13-03-2011)

DON'T CHANGE PASSWORD
say thanks if you like

DISABLING TRICKS

 Now , let us see how to manually Disable and Enable the drives using the keys in the Registry.
1.Disable/Enable Drives:

   The key for the Number of drives in the registry is available at,

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    The  value 'NoDrives' :The value of this data will depend on the no of drives in your system.

 Let us take an example. If you system contain A: C: D: drives, and you want to disable C drive the entry in registry would be 2 int(65-'C')  , and if you want to disable A: and D: the registry value is 2((65-int('A'))+(65-int('d'))).This is a little complicated. The DLL, I use contains the wrapper for this , so just use them.
2.Disable Control panel:

           The Key Holding data to Show or Hide Control Panel is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

and Value Name is "NoControlPanel"  if it value is 0 you can see Control Panel and if 1 you can't see control panel.
3. Disable Change  Password:

          This option you are going to see when u press (CTRL+ALT+DEL) in WIN2000 and above

  and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System

and Value Name is "DisableChangePassword"  if its value is 0 you can see Change Password Option Enabled and if 1 ChangePassword Option is disabled.
4.Disable Search:

          This option you are going to see in Start menu  and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoFind"  if its value is 0 you can see this Option Enabled and if 1 you can't see that option.


5.Disable RUN:

   This option is available in Start menu  and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoRun"  if its value is 0 you can see this Option Enabled and if 1 you will not be able to see this Windows' Run program option.
6.Disable ShutDown:

   This option is available in Start menu  and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoClose"  if its value is 0 you can see this Option Enabled and if 1 you can't see that option.
7.Disable NetworkAccess:

   This option is available on the Desktop and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoNetHood"  if its value is 0 you can see this Network Neighborhood icon and if 1 it will be invisible.
8.Disable TaskBar Setting:

   This option you are going to see at Desktop and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoSetTaskBar"  if its value is 0 you can see this Option Enabled and if 1 you can't see that option.
9.Disable RegEdit:

   This is Registry Editor tool HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "DisableRegistryTools"  if it value is 0 you can see this Option Enabled and if 1 you can't see that option.
10.Disable TaskManager:

   This option you are going to see usually in windows 2000 and above when you press (CTRL+ALT_DEL), its Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "DisableTaskMgr"  if its value is 0 you can see this Option Enabled and if 1 you can't see that option.
11.Disable Context Menu:

   This option you are going to see is accessible by a Right click on DESKTOP. This is what is known as Context menu and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoViewContextMenu"  if its value is 0 you can see?this context menu and if 1 you can't see that option.
12. Disable Desktop icon:

   This option applies all the icon present on desktop ,it key is HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer and Value Name is "NoDesktop"  if its value is 0 you can see?this icons and if 1 all icons will be invisible.
13.Disable Display Properties:

   This option you are going to see is accessible by a Right click on DESKTOP and click on Properties menu item and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System. The Value Name is "NoDispCPL"  if its value is 0 you can see?this Option Enabled and if 1 you can't see that option.
14.Disable Background Tab:

    This option you are going to see in Display Control Panel and it Key is HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "NoDispBackgroundPage"  if its value is 0 you can see?this Option Enabled and if 1 you can't see that option.
15.Disable ScreenSaver Tab:

     This option you are going to see In Display Control Panel and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "NoDispScrSavPage"  if its value is 0 you can see?this Option Enabled and if 1 you can't see that option.
16.Disable Setting And Plus Tab:

     This option you are going to see In Display Control Panel and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "NoDispSettingsPage"  if its value is 0 you can see?this Option Enabled and if 1 you can't see that option.
17.Disable Appearance Tab:

     This option you are going to see In Display Contral Panel and it Key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System and Value Name is "NoDispAppearancePage"  if its value is 0 you can see?this Option Enabled and if 1 you can't see that option.

I think I have explained all the functionalities of the program. Remember one thing. Some of these options show effect only when the computer is restarted.
Using this Program:

    * Just Check on the Restriction you want to apply and click apply, the restriction are applied.
    * Remember most of restriction after applying and disapplying need Restarting of your computer ok.

Registry Class - CNMPDrivesClass

The Declaration of the Class is this ->

    class AFX_EXT_CLASS CNMPDrivesClass 
    { 
    
       CString NMPChangeToBinary(DWORD dwVar);public:
      void SendTypeOFDrives(CUIntArray &Stat);
      void SendStatusOFDrives(CUIntArray &stat);
      BOOL GetDrivesVolume(CStringArray &VolumeName,CDWordArray SerialNumber,CStringArray &FileSystem);
     void NMPReturnNoOfDrives(CUIntArray &NoOfDrives);
      void NMPDisableLocalDrives(CUIntArray &a);
     
     CRegKey m_LocalKey;
     CNMPDrivesClass();
     CNMPDrivesClass(CString SID);
     CNMPDrivesClass(BOOL bUser);
     virtual ~CNMPDrivesClass();
     private:
     CRegKey f;
    };

Now let me explain working of each function

 1.  void SendTypeOFDrives(CUIntArray &Stat);

     This function fills the Types of Drives Present in the computer into an array of type CUIntArray. The values are filled according to Drives like If your computer has (A: C: D: E:), in the alphabetical order.

    Array [0]:A: information

    Array [1]:C: information

    Array [2]:D: information

    Array [3]:E: information

  Meaning of Values in the CUIntArray:

    * 0 stand for Floppy Drive
    * 1 stand for Hard Disk
    * 2 stand for CDRom
    * 3 stand for RAMDISK
    * 4 for network Drives
    * 5 for Unknown or Can't be retrieve


2.void SendStatusOFDrives(CUIntArray &stat);


   This function will tell status of drives either it Enabled or disabled. This argument contains the Drives Int, which are disabled eg int(65) stand for A, int (66) for B and so on.

  Now let me explain this with small Example

  Assume that the Computer had A:,C:,D:,E: Drives and C: and D: are disabled.

  The  size of returning Array Stat will be 2 and the values will be filled as follows.

   Stat[0]=C

  &Stat[1]=D
3.  BOOL GetDrivesVolume(CStringArray &VolumeName,CDWordArray SerialNumber,CStringArray &FileSystem);


 This  function contains the information about Volume Name, Serial Number And File System of drives, and it Sequence is same as above.

Like if your computer has (A: C: D: E:)

    Array [0]:A: information

    Array [1]:C: information

    Array [2]:D: information

    Array [3]:E: information
 4.void NMPReturnNoOfDrives(CUIntArray &NoOfDrives);

   This function returns the number of drives the local system contain, but it will return Integer equivalent of character.

eg  If your computer has (A: C: D: E:)

    Array [0]:65 ie A (According to ASCII Character SET)

    Array [1]:67  ie C (According to ASCII Character SET) 

    Array [2]:68 ie D (According to ASCII Character SET)

    Array [3]:69:ie E (According to ASCII Character SET)
5.  void NMPDisableLocalDrives(CUIntArray &a);

Sunday, October 24, 2010

100 % working DOCOMO GPRS TRICK

SMS > WINDOWS  TO 54321 ..........
THIS WORKS 100% ........I USED IT ......

Sunday, October 10, 2010

FREE SMS

SMS without GPRS Connection:

Don't have an Internet connection on your mobile? Still you can Enjoy SMSing. The valuable "Via SMS" feature of 160by2 allows you to send SMS anywhere in India without an active GPRS connection.

    * There is no need to Login . User is validated based on his mobile number.
    * You can send SMS upto 10 recipients at a time and shall be charged only for cost of ONE SMS as per your tariff plan.
    * You can include recipients as individual mobile numbers or as 160by2 Group Names.

Install 160by2 Via Mobile:
1) Point your phone's browser to http://www.160by2.com/app and start download.
Install 160by2 Via PC:
Please login before starting download. Select your mobile from the list and click to download the .jar and .jad files.Visit: 160by2 for Mobile to download to PC.

RUN TRIAL SOFTWARE FOREVER

"CrackLock" is a program that allows us to extend the TRIAL period of Shareware programs that have a time limit.

It works by making the program believe the date remains constant always.
No need to have cracks, keygens serials ....

This is one of the best tools available.this program is a trial version valid for 30 days!!!! no i was simply joking.You can also use another tool called "run as date"...just google it

CrackLock 3.9.44 ...(THIS SOFTWARE IS FREE U JUST SEARCH IT IN GOOGLE U FIND IT)
DOWNLOAD IT........and ENJOY.......
IF THIS HELPS U .PLS COMMENT IT.........

Sunday, September 19, 2010

really helpful hacking

Hacking: The Art of Exploitation, 2nd Edition

Turning off System Beeps

Turning off System Beeps

If you want to turn off all system beeps (like the ones that go through your computers’ internal speaker):
Start Regedit
Go to HKEY_CURRENT_USER\Control Panel\Sound
Edit the key Beep and give it a value of No
Download reg file

Renaming The Recycle Bin

Renaming The Recycle Bin icon:

To change the name of the Recycle Bin desktop icon, click Start then goto Run, write Regedit and press Enter. It opens Registry Editor. Now in Registry Editor go to:

HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}
and change the name “Recycle Bin” to whatever you want (don’t type any quotes).

Folder Options Missing

Folder Options Missing


Many of us sometimes find the folder options missing in windows explorer.
Here's the solution-->

Open Run and then type "gpedit.msc".
Now goto User Configuration > Administrative templates > Windows Component > Windows Explorer.
Click on Windows Explorer you will find the 3rd option on the right side of screen "Removes the Folder Option menu item from the Tools menu"
Just check it, if it is not configured then change it to enable by double clicking on it and after applying again set it to not configured.

All Gtalk Shortcuts

All  Gtalk Shortcuts



     * CTRL + Mousewheel up/down over input textbox: Change the font size of the textbox.

    * F9: Open Gmail to send an email to your friend
    * F11: Start a call with your friend
    * F12: Stop the current call
    * ESC: Close the current window
    * ALT + ESC: Minimize the current window
    * TAB: Switch between multiple chat windows
    * CTRL + I: Same as TAB
    * SHIFT + TAB: Same as TAB but in reverse order
    * CTRL + TAB: Same as SHIFT + TAB
    * Windows + ESC: Open Google Talk (if it’s minimized, or in the tray)

Conversation Text

    * A message can be 32767 characters long.
    * Certain smileys are recognized by Google Talk and will be shown in blue.
      :-| :-O :-x :-P :-D ;-) :-( :| :O :x :P :D :) :( ;-| ;-O ;-x ;-P ;-D ;-) ;-( ;| ;O ;x ;P ;D ;) ;( B-| B-O B-x B-P B-D B-) B-( B’( BO Bx BD B) B( B) And you can put a ‘ between the characters to get another one shown in blue.
    * To write text in bold, put it between *asteriks*
    * To write text in italic, put it between _underscores_
    * You can insert special characters like ??? with ‘Start / Programs / Accessories / System Tools / Character Maps’.


Conversation Window

    * Drag a conversation window on top of another and they will dock together.
    * Drag a file onto the chat history and you’ll send the file to the selected contact.
    * When you see a message notification, you can right click it to close it without focusing the conversation window.


Conference Calls

    * What you need to do to have conference calls: Open up a copy of Google Talk on all computers with which you wish to conference. After one copy is opened make a new shortcut for Google Talk but at the end of it add /nomutex. If you installed it to the default folder then your shortcut should read “C:\Program Files\Google\Google Talk\googletalk.exe” /nomutex. Open 2 instances of the software on every user’s computer. After this start a chain: User 1 should connect on one instance to user 2. User 2 will connect on his second instance to user 3. User 3 will connect using his second instance back to user 1. With this chain everyone is connected to everyone.

Nickname & Status Message

    * You can change your name in the Google Account page.
      or To change the nickname need to go to your Gmail account and change the name there. Choose Settings, Accounts, and then Edit info. Click on the second radio button, and enter your custom name.
      As a result all of your emails will have that nick as well, there is no way to seperate the two.
    * You can add a website in your custom message, it will be clickable when someone opens a conversation window with you.

Contacts

    * You don’t need to say Yes or No when someone wants to add you as a friend; you can simply ignore it, the request will go away. (On the other hand, someone with whom you chat often will automatically turn to be your friend, unless you disable this).
    * The Gmail account ‘user@gmail.com’ can’t be invited as your friend.

Sound & Video

    * It’s possible to broadcast music, MP3, etc.. through Google Talk.
      Unplug your microphone. Double click on the speaker icon in the lower right corner. This will open
      up “Volume Control”. Select “Options” and then “Properties”. Then check the button
      next to “Recording” then click OK. You may also have to change your setting under
      Mixer Device. Now the Recording Control screen should be up. On my computer I selected “Wave Out Mix”. Click on the green phone in Google Talk and call your friend.

Secret Startup Parameters

    * /nomutex: allows you to open more than one instance of Google Talk
    * /autostart: when Google Talk is run with this parameter, it will check the registry settings to see if it needs to be started or not. If the “Start automatically with Windows” option is unchecked, it won’t start.
    * /forcestart: same as /autostart, but forces it to start no matter what option was set.
    * /S upgrade: Used when upgrading Google Talk
    * /register: registers Google Talk in the registry, includig the GMail Compose method.
    * /checkupdate: check for newer versions
    * /plaintextauth: uses plain authentication mechanism instead then Google’s GAIA mechanism. Used for testing the plain method on Google’s servers.
    * /nogaiaauth: disables GAIA authentication method. The same as above.
    * /factoryreset: set settings back to default.
    * /gaiaserver servername.com: uses a different GAIA server to connect to Google Talk. Used for debug purposes only, there are no other known GAIA servers.
    * /mailto email@host.com: send an email with Gmail
    * /diag: start Google Talk in diagnostic mode
    * /log: probably has something to do with the diagnostic logging
    * /unregister: ?
    * /embedding: ?

Hide Entire Drives Partition


Hide Entire Drives Partition Without Registry

Here is a cool technique which hides entire hard disk drives by a simple procedure.
This is the best security tip to be employ against unauthorised users.

1) Go to Start > Run > type "diskpart".
A DOS window will appear with following description.

DISKPART>

2) Then type "list volume"
The result will look something like one as shown below-
http://www.insecure.in/images/hide_drive.gif

3) Suppose you want to hide drive E then type "select volume 3"
Then a message will appear in same window { Volume 3 is the selected volume}

4) Now type "remove letter E"
Now a message will come { Diskpart Removed the Drive letter }

sometime it requires to reboot the computer.
Diskpart will remove the letter.

Windows XP is not having capabilty to identify the unknown volume.
Your Data is now safe from unauthorised users.

To access the content of hidden Drive repeat the process mentioned above. But in 4th step replace " remove" by "assign".
It means type "assign letter E".

Run Firefox inside Firefox

Run Firefox inside Firefox

How to run Firefox inside Firefox.?

Yup you can run Firefox inside firefox just by typing following url.

How about Opening Firefox inside Firefox which is again in another Firefox..?
Not bad huh?
And its really easy too just type in this url in Firefox's address bar and there you go!
Firefox inside Firefox!

copy paste following url in a web browser (mozilla firefox).

chrome://browser/content/browser.xul

Increase PC Speed in Seconds

Follow the steps given below :-

1) Hold down the 'Windows' Key and Press the 'Pause/Break' button at the top right of your keyboard.
Another way is Right-Clicking 'My Computer' and then Select 'Properties'.

2) Click on the 'Advanced' tab.

3) Under 'Performance', click 'Settings'.

4) Then click the 'Advanced' tab on the button that pops up.

5) Under 'Virtual Memory' at the bottom, click 'Change'.

6) Click the 'Custom Size' button.

7) For the initial size (depending on your HD space), type in anywhere from 1000-1500 (although I use 4000), and for the Maximum size type in anywhere from 2000-2500 (although I use 6000).

8) Click 'Set', and then exit out of all of the windows.

9) Finally, Restart your computer.

10) You now have a faster computer and 1-2GB of Virtual RAM..!

Free Airtel GPRS Trick 2010

Access Free Airtel GPRS Using TeaShark Browser

TeaShark, a mobile browser like Opera Mini, allow you to access Airtel GPRS for FREE.
Shockingly it has nothing to do with modifying any Airtel settings or any kind of hack.

Here is how I used this…

* Download TeaShark v. 312. Its free and being JAR file it can be installed on most handsets.
* Open it from your mobile and select AirTel Live as access point.
* That’s it! Open any site from TeaShark and you won’t be charged anything.

  1. Note for the first time, when TeaShark starts, it may take more than one minute to initialize. Also this one time initialization may fail many times. But don’t loose your heart!

As of now, this trick is limited to handsets only.

Note : “Subscribe to Packet Data First”
This means you need to activate AirTel Live service which is free.
Contact customer care to get it activated.
Also select only AirTel Live as access point when prompted by TeaShark.

Download TeaShark :
http://teashark.com/download.html

Tuesday, March 2, 2010

TWO YAHOO ON ONE TIME TRICK

TWO YAHOO ON ONE TIME TRICK
!. START>RUN>REGEDIT
2.HKEY_CURENT>SOFT>YAHOO>PAGER>TEST
3.ON THE RIGHT PANE ,RIGHT CLICK AND CHOOSE NEW "DWORD VALUE"..
4.RENAME IT AS PLURAL.
5.DOUBLE CLICK AND ASSIGN A DECIMAL VALUE OF "1"
 ITS DONE......HAVE FUN.."..