Tuesday, October 19, 2010

>> Free Password Hacking Software >> Javascript Injection |A Closer Look

Free Password Hacking Software

Posted: 15 Jul 2010 11:34 AM PDT

To hack passwords , you should use password hacking software.Here, I provide you the list of top 5 free password hacking software that can hack pdf,winrar,windows passwords . Enjoy!

1)Portable PDF Password Cracker Enterprise v3.2

It’s PDF Password Cracker that can easly remove the security on PDF documents.

Download Link

2)Ophcrack LiveCD

To crack Windows XP password we’ll use a program I personally used a hundreds of times, called Ophcrack
Well, to crack a password there is one big science discipline called cryptography. Here we won’t get into details but rather explain how this program works.
So, if you lock your account in Windows with a password for example admin, here is what happens. Windows takes that password and encrypts it with one of the methods of encryption and then saves it into a file(with Windows XP it’s a SAM file located in system32). Now your password is no longer stored as admin, but rather something like 3ujf92+*?jdhsa=)jsadn , depending on the encryption method. However, we ask ourselves, why don’t we just take that encrypted password and decrypt it back to admin. The thing is we can’t because it’s a one way encryption and that is actually the point of it all. So how do we actually crack it?
READ MORE

Download Link

3) Super Bluetooth Hack V1.07.

Super Bluetooth Hack V1.07. is simple hacking software that offer a lot features :

1) Call from his phone. It includes all call functions like hold etc.
2) Read his messages
3) Read his contacts
4) Change profile
5) Play his ringtone even if phone is on silent
6) Play his songs(in his phone)
7) Restart the phone
8) Switch off the phone
9) Restore factory settings
10) Change ringing volume

READ MORE

Download Link

4) Cain & Abel v2.0

Cain & Abel v2.0 is powerful hacking tool which can break of various kind of passwords using Dictionary, Brute-Force, Cryptanalysis attacks … This tutorial tells you howto break administrator password and gain access to admin account with Brute-Force attack.
Just follow steps below. READ MORE

Download Link

5) Zip password Recovery Magic

If you ever downloaded winrar / winzip file on the computer, then you know that there’s an enormous chance that winrar or winzip file is protected with password. Also there’s an enormous chance that you’ll never find that password. In situation like this only solution is to use password hacking software called Password Recovery Magic

Download Link

Javascript Injection |A Closer Look

Posted: 15 Jul 2010 05:15 AM PDT

If you are directly linked to here then you might probably have missed my previous tutorial about the basics of javascript injection. If you have already read my previous post then let’s summarize what I tutored you last time.
I introduced you with javascript injection from how should it begin and it’s basic rules. I also demonstrated some of the basic things you can do with javascript injection in address bar. Now today in this tutorial, I’ll guide you through the window where you’ll get more closer vision in javascript injection and it’s prevailing uses. OK, now let’s begin with the tutorial.

Besides changing cookies (in my previous tutorial), you can change other things as well. One of them is changing form values.

Consider the following text field in a money transfer form:

Assume that above code is the source code extract from a form which sends $1 to your account every time the form is submitted. Lets say that you want to receive $100, how would you do that? The problem in this form is that this form remains invisible since its type is set hidden and neither can you change the value of the invisible field.

By using javascript injection technique you can change the form value easily.

For example to change the value of the above form, you can inject following javascript code:

Javascript: void(document.forms[0].amount.value="100");

The value of the input named amount will change to 100 by applying above injection. The syntax to change form is,

The Green colored text must contain numerical value, the numerical value is the form number where 0 means the first form and 1 means the second form. The orange colored text must contain the name of the input type. For example, in the above form we’ve input name of first form as amount. The blue colored form contains the value to be kept in the input form.

Have a look at following image demo:

You have the form that cannot be modified directly but it is visible.

Now when you look at the source code, you’ll see that it is disabled and you cannot edit the value of this form. This is where you’ll plan and study for javascript injection. Find which form is it, first second or third. If it is first then you must input 0 in the forms[#]. Find out the name of the form and enter the value you want.

Now after everything is planned and fixed, you’ll prepare the javascript injection code and inject it from your browser’s address bar.

Now alert box will show up, this will confirm that the javascript injection went successfully.

Now when you press OK button, you’ll have the form value changed eventually.

In this way you can change the form value easily.

And for some extra fun you can change the title of the website by using following code:

Javascript: alert(document.title = "title name");

This will change the title of the website.

For example,

In Google.com, javascript: alert(document.title); will load the following alert bod.

And when you inject page title javascript injection, you’ll get following result.

Hope you had fun reading this tutorial.

Sunday, October 17, 2010

Basic Tutorial About Javascript Injection

Posted: 14 Jul 2010 06:10 AM PDT

Javascript injection allows you to change websites behavior without refreshing or leaving it. It provides on spot interaction with the source code of website from browser window. Javascript script might come really handy when you are hacking basic websites. Javascript injection allows you to alter the form values before sending it to server.

In Javascript injection, javascript codes are injected from address bar of the browser window. In this tutorial we’ll go through the basics of javascript injection, if you are javascript expert then it might be below your knowledge. However freshers might find it interesting and informative.

To command any javascript code to your browser you must inform it that its javascript. It can be done by adding “Javascript:”(without quotes) just before your code.

Below is the sample code to input in your browser.

Javascript: alert("Welcome to HacksPC.com");

The above code is to be typed in browser address bar similar to image below:

After you complete the code, press enter, you’ll see the something similar to below:

In the code typed above, Javascript: is the protocol which you must type before initiating any javascript code snippet. Alert is just the javascript function that gives alert box on the screen. ; is the end of statement command that you have in every programming language, like C, C++, PHP etc.

To have more clear vision about statement end symbol, refer to following example,

javascript: alert("First message"); alert("second message"); alert("Third message");

It gives three separate windows with three different messages.

The alert() function is only used to get information from the website. For example to get form value, cookies etc.

Javascript:alert(document.cookie);

Above code example shows the cookies that are set in your browser by your current website.

This can be very useful if you are trying to hack basic websites. Cookies are set most in page login systems that might be helpful to get illegal access to the website’s administrator page.

For example in above image, you can see username and password set in cookies section which was revealed with the help of javascript injection.

If the website is not strong enough you can modify the username to administrator’s username and gain full access to the website.

To change the cookie value you can follow the syntax similar to below:

javascript:void(document.cookie="Cookie_name=Cookie_value");

“void” in simple terms applies the function without refreshing the page. Literally, it means that the function won’t return any result.

javascript:void(document.cookie="username=user123"); alert(document.cookie);

The above code will change the cookie value and show the changed value.

You can change any cookie value by applying syntax like above.

To change multiple cookies following pattern will help.

javascript:void(document.cookie="username=user123"); void(document.cookie="password=pass123"); alert(document.cookie);

You can add multiple statements to do multiple tasks at once.

Changing cookie value allows you to confuse the website about your real details like username, log in status, and other dynamic values that are cookied.

Similarly you can change the form value and types. I’ll posting tutorial about form values using Javascript injection shortly. Meanwhile, you can practice with injections in several websites.

Hope this tutorial was informative.

Friday, October 15, 2010

Viewing DOCX/XLSX File Without Using Microsoft Word/Excel

Posted: 13 Jul 2010 01:06 AM PDT

Are you having problem reading DOCX files in your desktop, while your desktop reads only .doc files? If yes then you are in right place. But note that this is only the word document viewer and it does not allow editing word documents.

This tools is provided free by Micorosoft itself, you can download it easily from their site. And it is just 25 MB large. It enables you to view, print and copy Word documents, even if you don’t have Word installed. Not only *.docx it also supports *.docm,*.rtf,*.txt,*.html,*.wpd,*.doc,*.xml, etc.

Click here to download Microsoft Word Viewer.

Click on the download button to download.

Accept or save the file.

You can also try Microsoft Excel viewer. Click here to download Microsoft Excel Viewer. It allows you to view all the versions of excel files.

Hope this was helpful article.

This is guest post by suraj kayastha where he blogs in YouCanHack and Hacktutors

Thursday, October 14, 2010

How To Create Your First Python Program

Posted: 11 Jul 2010 05:00 PM PDT

Wanna learn how to create your first python program , but don’t know where to start. This is beginner, step by step tutorial with images that will help you trough process.

Step 1

Go to python.org , download latest version and install it.

Step 2

Run IDLE (Python GUI)

Step 3

You can run program via python shell or you can run program as python module . py extension.

Step 3.1

Run program via python shell

In Python shell type
Code:
variable = 'Hello World'

and press enter

then type
Code:
print variable

and press enter, output will be Hello World

This is simple example where we store string “Hello World” into variable and then print it out.

Step 3.2

Run as python script . py

Open notepad and type your code

variable = 'Hello World'
print variable

save as HelloWorld.py

Open IDLE and go to File -> Open and open file with .py extension

After this will appear windows where you’ll able to run module, just press F5 or go to Run -> Run Module

Wednesday, October 13, 2010

Get Rid Of Annoying Windows Live messenger In Your Taskbar

Posted: 09 Jul 2010 03:39 PM PDT

Let me guide you how to remove Windows Live messenger always in task bar annoying you. Why it’s not appearing in your Notificatoin area rather than in taskbar. With this simple trick applied you can have Windows Live icon in notification area as in your previous version of Windows.

To do so, go to start, type Windows Live. In Windows Live messenger, right click and select properties.

In Window Live Messenger Properties, go to Compatibility tab and enable compatibility mode by choosing previous version of Windows, I chosed Windows XP SP3. Now click OK button.

Now you’ll see that Windows Live Messenger will appear in Notificaton area.


Hope this short tips was helpful.

Tuesday, October 12, 2010

Change Windows 7 Logon Screen To Anything You Want

Posted: 08 Jul 2010 06:29 AM PDT

You might have been bored because of same logon screen every time you logging in. The default windows login screen lacks taste of being Windows 7. Today I am here with a helpful tool. This 250 KB tool helps you to easily modify your logon screen to whatever you want.

This useful tool is actually brought to you by tweaks.com.

It enables you to change the background of the windows logon screen. You can have any size of background, this tool automatically resizes and recompresses the image to the highest quality possible being the original image untouched and unmodified.

If you want the default Windows 7 logon screen back just click Revert to Default Logon Screen and the application will automatically uninstall any customized screens.

To change the logon screen, download Tweaks.com Logon changer for Windows 7.

Unzip the 250 KB zip file and run the program. When the program loads up, Click on Change Logon Screen button.

Browse the background image you want in your logon screen. Don’t worry about 245KB image limit as logon changer tool automatically compress and resizes the image. So you can choose any large file.

If the file size is too large, then it will ask to create copy of it and resize it. Click Yes to proceed.

If it detects old logon backgrounds then click OK. Now you’ll have new logon screen ready. To have a live preview of it click on Test button.

If you don’t like the current screen and want to switch back you can always click on Revert to Default Logon Screen.

Hope this tutorial was helpful.