2015年11月11日 星期三

【MySQL】資料庫連線與建置

安裝MySQL,Google "mysql",進入MySQL官網,後面步驟如下圖所示。





















恭喜你已完成資料庫連線。如果您要去使用天堂私服。
請新增l1jtw資料庫,並從DB資料夾中匯入SQL檔案。就可以瞜~

Google Driver Navicate Lite 載點



2015年11月10日 星期二

【台南美食】亦閑閣:真心推薦

台南美食-亦閑閣 
便宜宵夜小吃
歡迎大家來購買
鄰近台南大學
脆薯 小 19元 大 29元
雞塊 4塊 19元 6塊 29元
熱狗 10元
棺材板 35元
鹽酥雞 小 30元 大 50元
套餐
每日套餐不同請依照現場當天看到為準
營業時間 11:00 - 24:00
預約電話0911901693






搜尋用TAG:台南大學, 台南美食, 亦閑閣, 宵夜,台南美食推薦,台南美食地圖



【免空】雲端硬碟免費空間

KaleVideoMega免費網路空間


提供任何檔案格式上傳
提供線上瀏覽與下載功能
無任何空間大小限制
空間保存一個月
會員上傳前請先閱讀我們的網頁守則

使用教學
Step1 註冊帳號
Step2 上傳檔案
點擊Select Files,選取預上傳檔案。在點擊Upload Files,進行上傳檔案。
Step3 分享連結
上傳完成後,點擊URL,CTRL+A可以全選,CTRL+C可以複製,分享網址給其他人。

【PHP】帳號密碼如何加密? Hashing with Salt

先定義PHP變數
define("PBKDF2_HASH_ALGORITHM", "sha256");
define("PBKDF2_ITERATIONS", 1000);
define("PBKDF2_SALT_BYTE_SIZE", 24);
define("PBKDF2_HASH_BYTE_SIZE", 24);

define("HASH_SECTIONS", 4);
define("HASH_ALGORITHM_INDEX", 0);
define("HASH_ITERATION_INDEX", 1);
define("HASH_SALT_INDEX", 2);
define("HASH_PBKDF2_INDEX", 3);

利用PHP mcrypt_create_iv function 先產生SALT

再把要密碼前面加上SALT,然後進行SHA256加密。

最好用PBKDF2 (Password-Based Key Derivation Function 2)方法加密

function create_hash($password)
{
    // format: algorithm:iterations:salt:hash
    $salt = base64_encode(mcrypt_create_iv(PBKDF2_SALT_BYTE_SIZE, MCRYPT_RAND));
    return PBKDF2_HASH_ALGORITHM . ":" . PBKDF2_ITERATIONS . ":" .  $salt . ":" . 
        base64_encode(pbkdf2(
            PBKDF2_HASH_ALGORITHM,
            $password,
            $salt,
            PBKDF2_ITERATIONS,
            PBKDF2_HASH_BYTE_SIZE,
            true
        ));
}
function validate_password($password, $correct_hash)
{
    $params = explode(":", $correct_hash);
    if(count($params) < HASH_SECTIONS)
       return false; 
    $pbkdf2 = base64_decode($params[HASH_PBKDF2_INDEX]);
    return slow_equals(
        $pbkdf2,
        pbkdf2(
            $params[HASH_ALGORITHM_INDEX],
            $password,
            $params[HASH_SALT_INDEX],
            (int)$params[HASH_ITERATION_INDEX],
            strlen($pbkdf2),
            true
        )
    );
}
function pbkdf2($algorithm, $password, $salt, $count, $key_length, $raw_output = false)
{
    $algorithm = strtolower($algorithm);
    if(!in_array($algorithm, hash_algos(), true))
        trigger_error('PBKDF2 ERROR: Invalid hash algorithm.', E_USER_ERROR);
    if($count <= 0 || $key_length <= 0)
        trigger_error('PBKDF2 ERROR: Invalid parameters.', E_USER_ERROR);

    if (function_exists("hash_pbkdf2")) {
        // The output length is in NIBBLES (4-bits) if $raw_output is false!
        if (!$raw_output) {
            $key_length = $key_length * 2;
        }
        return hash_pbkdf2($algorithm, $password, $salt, $count, $key_length, $raw_output);
    }

    $hash_length = strlen(hash($algorithm, "", true));
    $block_count = ceil($key_length / $hash_length);

    $output = "";
    for($i = 1; $i <= $block_count; $i++) {
        // $i encoded as 4 bytes, big endian.
        $last = $salt . pack("N", $i);
        // first iteration
        $last = $xorsum = hash_hmac($algorithm, $last, $password, true);
        // perform the other $count - 1 iterations
        for ($j = 1; $j < $count; $j++) {
            $xorsum ^= ($last = hash_hmac($algorithm, $last, $password, true));
        }
        $output .= $xorsum;
    }

    if($raw_output)
        return substr($output, 0, $key_length);
    else
        return bin2hex(substr($output, 0, $key_length));
}

PHP Source Code PasswordHash.php

2015年11月9日 星期一

【流亡黯道PoE】自動喝水+全白天全地圖 外掛

舊版本已荒廢請至新的發佈網頁


PoE MultiScript.

適用於2.0+版本

GGC台服可用,國際服我不確定

功能
自動喝水(紅,藍,跑,解狀態水都會喝)
自動斷線
自動發話

載點

PoE MultiHack

適用於2.0+版本

GGC台服,國際服皆可使用
但是此功能會被GGG偵測到,有機率被鎖。
請小心使用。

功能
全白天

地圖全開


使用說明:
Detected執行
F5全白天
F7地圖全開

PS:防毒軟體可能會叫,看你要不要用。(up to you)


載點

2015年11月8日 星期日

【天堂】天堂私服架設教學:絕對可玩真心不騙






天堂3.81c主程式(免安裝版)
链接:http://pan.baidu.com/s/1c0yjSqO 密码:a3xz
Google Driver 載點

天堂3.80登入器
链接:http://pan.baidu.com/s/15F5SU 密码:ylcx
Google Driver 載點

天堂3.80模擬器(含原DB)
链接:http://pan.baidu.com/s/1gd55o0F 密码:e567
Google Driver 載點

喜歡請幫我點廣告感謝!


大概說明一下天堂DB資料庫記得新增
改server.properties資料庫帳號密碼
然後就點ServerStart.bat就可以了

資料庫教學請參考我的另一篇 MySQL資料庫連線教學

[CentOS] httpd port 9000 to 80

<VirtualHost *:80>     ServerName domain.name     ProxyRequests Off     ProxyVia Block     ProxyPreserveHost On     <Proxy *...