Blogger Widgets

WHAT IS PHISHING?

Phishing is a fraudulent attempt, usually made through email, to steal your personal information. The best way to protect yourself from phishing is to learn how to recognize a phish.

Phishing emails usually appear to come from a well-known organization and ask for your personal information — such as credit card number, social security number, account number or password. Often times phishing attempts appear to come from sites, services and companies with which you do not even have an account.

In order for Internet criminals to successfully "phish" your personal information, they must get you to go from an email to a website. Phishing emails will almost always tell you to click a link that takes you to a site where your personal information is requested. Legitimate organizations would never request this information of you via email.

WHAT IS A HACKER ? Hacker is a term used to describe different types of computer experts, who employ a tactical, rather than strategic, approach to computer programming, administration, or security. An exception to the expert sense is use of the term by the popular media and the general population to mean "computer criminal," with no indication of level of skill, expertise, or understanding implied. In the field of computer security, hacker translates to a person able to exploit a system or gain unauthorized access through clever tactics and detailed knowledge. In computer programming, hacker means a programmer who hacks or reaches a goal by employing a series of small changes or additions to exploit or extend existing code or resources. In technical fields outside of computing, hacker is sometimes extended to mean an expert who has particularly detailed knowledge or cleverly circumvents limits."

WHITE HAT HACKING ?

White hat describes a hacker (or, if you prefer, cracker) who identifies a security weakness in a computer system or network but, instead of taking malicious advantage of it, exposes the weakness in a way that will allow the system's owners to fix the breach before it can be taken advantage by others (such as black hat hackers.) Methods of telling the owners about it range from a simple phone call through sending an e-mail note to a Webmaster or administrator all the way to leaving an electronic "calling card" in the system that makes it obvious that security has been breached. While white hat hacking is a hobby for some, others provide their services for a fee. Thus, a white hat hacker may work as a consultant or be a permanent employee on a company's payroll. A good many white hat hackers are former black hat hackers. The term comes from old Western movies, where heros often wore white hats and the "bad guys" wore black hats.
Related Posts Plugin for WordPress, Blogger...

GOOGLE SEARCH

Loading...

Hack Your Way Into Facebook's New Timeline Feature

Monday, 2 January 2012 | 0 comments

Most users will have to wait a few weeks before they get to see Facebook’s most drastic changes to the service since the company was founded, but you can use a developers' workaround to gain access to the Timeline feature right now.
Developers already have access to early beta versions of the new features. Luckily for users eager to try out the revamped Facebook, becoming a developer is a simple process that shouldn’t take you more than 5 or 10 minutes.
Facebook announced the updates Thursday at the company’s f8 developers' conference



Step-by-Step Instructions

Here’s how you do it.
First, log into Facebook and enable developer mode. The easiest way to do this is to just type “developer” into Facebook’s search box and click the first result. It should look like this.
Facebook's Developer App
You’ll have to retype your password and allow the developer app basic access to your account before you see a screen that looks something like this.
Facebook's Developer App page
This is the basic developer page. We’re going to convince Facebook we’re real developers and create an app that uses its new “Open Graph” tech. Don’t worry, it’s not nearly as hard as it sounds.
Now, create a new app by clicking the button in the top left corner. Nobody but you will see the app, so the information you enter doesn’t actually matter. Just create an app name and namespace (the latter needs to be all lowercase), agree to the terms and conditions, and create the app. Now you should arrive at the app’s main setting screen, as shown below:
Facebook's app setting screen
Click on the link labeled “Open Graph” on the left (not shown here) to open up the Open Graph Getting Started page. To get started with Open Graph, you’ve got to fill in an action your app can do and an object for your app to interact with. This can be any verb and noun. (For instance, my fake app fulfills my lifelong dream of fighting a robot.)
After you’ve created your action and object, click the Get Started button. This will drop down the first of three pages of settings but, since no one will see them, they shouldn’t matter. Quickly click through them to create your app. When you’re done, you should see a page like this:
The Open Graph Confirmation Page

You're In!

Congratulations, you’re now a Facebook developer on the cutting edge. Just wait a few minutes for your new developer status to filter through the system. Then return to the Facebook homepage where you should find an invite for Timeline at the top of the screen.
Be warned that the new Timeline is a little bit buggy, and not everything Zuckerberg promised in Thursday’s keynote has been implemented yet, but if you want to get a handle on Facebook’s new features early, or try out the new Spotify app, or just gain bragging rights with your friends, this should be your golden ticket.
Some things to note: Even though you now have access to the Timeline, it still won't be your default homepage. To get back to your timeline view you'll need to surf to http://www.facebook.com/YOURNAMEHERE?sk=timeline, switching out the YOURNAMEHERE part with your facebook username, or just bookmark the timeline page when you get to it.
If you decide to take the plunge, keep in mind this is a developer beta so expect to see bugs. There are also no guarantees that an accident won't happen that briefly makes all your profile information public. So the risk is yours if you try Timeline

KIMPRA SOCIAL NETWORK

Wednesday, 10 August 2011 | 0 comments






KimPra MiNi  is an online upcoming worlds biggest social networking  service that enables its users to do anything , informally known as "KIMPRA NETWORK ."

KIMPRA was created in AUGUST 2011 by KIIMOZER ALJITHR AND PRATIK VYAS

 and will launched in of that same end of the year. KIMPRA MINI rapidly gained worldwide popularity
KIMPRA  Inc., the company that operates the service and associated website, is based in California, with additional servers and offices in New York, Algeria & india


Welcome to KIMPRA MINI !
Experience The Worlds Biggest up coming Social Networking Site. KIMPRA MINI Social Community, is a place for you to get involved with all of your friends & family worldwide .KIMPRA MINI is completely free..

KIMPRA MINI
TypePrivate
FoundedCalifornia, United States
FounderKIMOZER ALJITHR
PRATIK VYAS

Area servedWorldwide
Key peopleKIMOZER ALJITHER
PRATIK VYAS
Revenueincrease US $140 million (projected 2011)
Employees600+ (2011)
Websitehttp://kimpra.co.cc/home.php


Type of sitesocial-network and everything you want in internet
RegistrationRequired (to post)

Available inEnglish, French more yet to come
LaunchedAUGUST 2. 2011


Using old code with new versions of PHP

| 0 comments


Now that PHP has grown to be a popular scripting language, there are a lot of public repositories and libraries containing code you can reuse. The PHP developers have largely tried to preserve backwards compatibility, so a script written for an older version will run (ideally) without changes in a newer version of PHP. In practice, some changes will usually be needed.
Two of the most important recent changes that affect old code are:
  • The deprecation of the old $HTTP_*_VARS arrays (which need to be indicated as global when used inside a function or method). The following superglobal arrays were introduced in PHP » 4.1.0. They are: $_GET,$_POST$_COOKIE$_SERVER$_FILES$_ENV$_REQUEST, and $_SESSION. The older$HTTP_*_VARS arrays, such as $HTTP_POST_VARS, also exist. As of PHP 5.0.0, the long PHP predefined variable arrays may be disabled with the register_long_arrays directive.
  • External variables are no longer registered in the global scope by default. In other words, as of PHP» 4.2.0 the PHP directive register_globals is off by default in php.ini. The preferred method of accessing these values is via the superglobal arrays mentioned above. Older scripts, books, and tutorials may rely on this directive being on. If it were on, for example, one could use $id from the URLhttp://www.example.com/foo.php?id=42. Whether on or off, $_GET['id'] is available.

Dealing with Forms

| 0 comments


One of the most powerful features of PHP is the way it handles HTML forms. The basic concept that is important to understand is that any form element will automatically be available to your PHP scripts. Please read the manual section on Variables from external sources for more information and examples on using forms with PHP. Here is an example HTML form:
Example #1 A simple HTML form
<form action="action.php" method="post">
 <p>Your name: <input type="text" name="name" /></p>
 <p>Your age: <input type="text" name="age" /></p>
 <p><input type="submit" /></p>
</form>

There is nothing special about this form. It is a straight HTML form with no special tags of any kind. When the user fills in this form and hits the submit button, the action.php page is called. In this file you would write something like this:
Example #2 Printing data from our form
Hi <?php echo htmlspecialchars($_POST['name']); ?>.
You are <?php echo (int)$_POST['age']; ?> years old.
A sample output of this script may be:
Hi Joe. You are 22 years old.

Apart from the htmlspecialchars() and (int) parts, it should be obvious what this does. htmlspecialchars()makes sure any characters that are special in html are properly encoded so people can't inject HTML tags or Javascript into your page. For the age field, since we know it is a number, we can just convert it to an integerwhich will automatically get rid of any stray characters. You can also have PHP do this for you automatically by using the filter extension. The $_POST['name'] and $_POST['age'] variables are automatically set for you by PHP. Earlier we used the $_SERVER superglobal; above we just introduced the $_POST superglobal which contains all POST data. Notice how the method of our form is POST. If we used the method GET then our form information would live in the $_GET superglobal instead. You may also use the $_REQUEST superglobal, if you do not care about the source of your request data. It contains the merged information of GET, POST and COOKIE data. Also see the import_request_variables() function.
You can also deal with XForms input in PHP, although you will find yourself comfortable with the well supported HTML forms for quite some time. While working with XForms is not for beginners, you might be interested in them. We also have a short introduction to handling data received from XForms in our features section.

Popular posts

Recent Posts

Recent Comments

AUTHOR WARNING

AUTHOR WARNING
Any and all actions or activities related to the
material contained on this website is solely yourresponsibility.The misuse of the information on this website can result incriminal charges brought against the person(s) in question. The author will not be held responsible in the event of any criminal charges be brought against any individuals misusing the information on this website to break the law.

This site contains materials that can be potentially damaging or dangerous. If you do not fully understand something on this site, thenGET OUT OF HERE ! Refer to the laws in your province/country before accessing, using, or in any other way, utilizing these materials. These materials are for educational and research purposes only. Do not attempt to violate the law with anything contained here. If this is your intention, then LEAVE NOW! Neither Administration of this website, the author of the material, or any
one else affiliated in any way, is going to accept responsibility for your actions. Author is NOT responsible for the comments posted on this website.

Any linked sites are not under the control of author or How To Hack IT , and the author is not responsible for the contents of any linked site or any link contained in a linked site, or any changes or updates to such sites. We are providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by us.
 
© Copyright 2010-2011 HOW TO HACK IT All Rights Reserved.
Template Design by RUSSELL VYAS | Published by RUSSELL Templates | Powered by Blogger.com.