Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > PHP > PHP Forum > สอบถามครับ จาก url = test.php?value=1234 เราจะสามารถซ่อน ?value=1234 ได้ยังไงครับ ปัจจุบันผมส่งค่าจากลิ้ง <a href="test.php?value=1234">



 

สอบถามครับ จาก url = test.php?value=1234 เราจะสามารถซ่อน ?value=1234 ได้ยังไงครับ ปัจจุบันผมส่งค่าจากลิ้ง <a href="test.php?value=1234">

 



Topic : 102813



โพสกระทู้ ( 318 )
บทความ ( 0 )



สถานะออฟไลน์




สอบถามครับ จาก url = test.php?value=1234 เราจะสามารถซ่อน ?value=1234 ได้ยังไงครับ ไม่ให้มันเห็นในช่อง Address

ให้มันเห็นแต่ test.php ในช่อง address ครับ

ถ้าทำได้แล้ว การรับค่าในหน้าถัดไป ต้องรับแบบไหนครับ

เช่นผมมี ลิ้ง

<a href="test.php?value=1234">คลิกที่นี่</a>

ครับ



Tag : PHP, MySQL, JavaScript, Ajax









ประวัติการแก้ไข
2013-11-19 10:11:28
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-11-19 10:02:52 By : angelkiller9 View : 4127 Reply : 12
 

 

No. 1



โพสกระทู้ ( 5,105 )
บทความ ( 4 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ที่เค้าพูด ๆ กันก็ให้ใช้ mod rewrite
แต่ผมทำไม่เป็น....

เลยซ่อนค่าที่ว่า โดยการเข้า md5 เลย (ลองทำเล่น ๆ ยังไม่ได้อัพขึ้น host) ก็ดีเหมือนกัน อิอิ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 10:14:26 By : apisitp
 


 

No. 2



โพสกระทู้ ( 318 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 1 เขียนโดย : apisitp เมื่อวันที่ 2013-11-19 10:14:26
รายละเอียดของการตอบ ::
ถ้าเข้ารหัส md5 แต่หน้าต่อไป ผมจะรับค่ายังไงอ่ะครับ เพราะมันถอดรหัสไม่ได้อ่าาา

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 10:22:53 By : angelkiller9
 

 

No. 3



โพสกระทู้ ( 1,666 )
บทความ ( 0 )



สถานะออฟไลน์


เอา AES ไปดีกว่าครับ md5 ต้องยึดโยงกับฐานข้อมูลด้วย เพราะมันเข้าทางเดียว
เอ้าไปลองดู 2 ไฟล์สำหรับ AES . . .ไฟล์ AES.class.php ไม่ต้องไปสนใจมันครับ มันเป็นอัลกอรึทึมของเค้า T__T
เราสนแึค่ show_xx.php ตรงการตั้งกุญแจ($z) และ include "AES.class.php"; เท่านั้นพอ


1. show_xx.php
<?php
include "AES.class.php";
// ด้านล่างเป็นการกำหนด Key ในการเข้ารหัส ซึ่งสามารถเลือกได้ว่าจะใช้กี่ bit (จะต้องตั้งให้มีจำนวนหลักเท่าที่กำหนด ห้ามขาดไปแม้แต่ตัวเดียว)
//*********************** กุญแจสามารถปรับเปลี่ยนได้ตามใจชอบ ******************************
$z = "abcdefgh0123456z"; // 128-bit key
//$z = "abcdefghijkl012345678901"; // 192-bit key
//$z = "abcdefghijuklmno0123456789012345"; // 256-bit key
$aes = new AES($z);
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?
$plain_text = "วันนี้อากาศดี"; // ตัวแปร $plain_text ใช้เก็บข้อความต้นฉบับ
$cipher_text = $aes->encrypt($plain_text); // ตัวแปร $cipher_text ใช้เก็บข้อความที่เข้ารหัสแล้ว
$decrypt_text = $aes->decrypt($cipher_text); // ตัวแปร $decrypt_text ใช้เก็บข้อความที่ถอดรหัสแล้ว
?>

<center>:: หน้าตัวอย่าง การเข้ารหัส/ถอดรหัส ด้วย AES ::</center>
<br><br>


<b>ต้นฉบับ :</b> <?=$plain_text; ?>
<br>
<b>เข้าได้ :</b> <?=$cipher_text; ?>
<br>
<b>ถอดได้ :</b> <?=$decrypt_text; ?>

</body>

</html>


2. AES.class.php
<?php

class AES {
        // The number of 32-bit words comprising the plaintext and columns comrising the state matrix of an AES cipher.
        private static $Nb = 4;
        // The number of 32-bit words comprising the cipher key in this AES cipher.
        private $Nk;
        // The number of rounds in this AES cipher.
        private $Nr;

        // The S-Box substitution table.
        private static $sBox = array(
                0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5,
                0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76,
                0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
                0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0,
                0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc,
                0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
                0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a,
                0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75,
                0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
                0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84,
                0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b,
                0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
                0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85,
                0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8,
                0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
                0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2,
                0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17,
                0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
                0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88,
                0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb,
                0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
                0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79,
                0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9,
                0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
                0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6,
                0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a,
                0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
                0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e,
                0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94,
                0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
                0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68,
                0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16
        );

        // The inverse S-Box substitution table.
        private static $invSBox = array(
                0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38,
                0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb,
                0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87,
                0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb,
                0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d,
                0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e,
                0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2,
                0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25,
                0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16,
                0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92,
                0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda,
                0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84,
                0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a,
                0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06,
                0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02,
                0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b,
                0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea,
                0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73,
                0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85,
                0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e,
                0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89,
                0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b,
                0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20,
                0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4,
                0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31,
                0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f,
                0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d,
                0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef,
                0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0,
                0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61,
                0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26,
                0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d
        );

        // Log table based on 0xe5
        private static $ltable = array(
                0x00, 0xff, 0xc8, 0x08, 0x91, 0x10, 0xd0, 0x36,
                0x5a, 0x3e, 0xd8, 0x43, 0x99, 0x77, 0xfe, 0x18,
                0x23, 0x20, 0x07, 0x70, 0xa1, 0x6c, 0x0c, 0x7f,
                0x62, 0x8b, 0x40, 0x46, 0xc7, 0x4b, 0xe0, 0x0e,
                0xeb, 0x16, 0xe8, 0xad, 0xcf, 0xcd, 0x39, 0x53,
                0x6a, 0x27, 0x35, 0x93, 0xd4, 0x4e, 0x48, 0xc3,
                0x2b, 0x79, 0x54, 0x28, 0x09, 0x78, 0x0f, 0x21,
                0x90, 0x87, 0x14, 0x2a, 0xa9, 0x9c, 0xd6, 0x74,
                0xb4, 0x7c, 0xde, 0xed, 0xb1, 0x86, 0x76, 0xa4,
                0x98, 0xe2, 0x96, 0x8f, 0x02, 0x32, 0x1c, 0xc1,
                0x33, 0xee, 0xef, 0x81, 0xfd, 0x30, 0x5c, 0x13,
                0x9d, 0x29, 0x17, 0xc4, 0x11, 0x44, 0x8c, 0x80,
                0xf3, 0x73, 0x42, 0x1e, 0x1d, 0xb5, 0xf0, 0x12,
                0xd1, 0x5b, 0x41, 0xa2, 0xd7, 0x2c, 0xe9, 0xd5,
                0x59, 0xcb, 0x50, 0xa8, 0xdc, 0xfc, 0xf2, 0x56,
                0x72, 0xa6, 0x65, 0x2f, 0x9f, 0x9b, 0x3d, 0xba,
                0x7d, 0xc2, 0x45, 0x82, 0xa7, 0x57, 0xb6, 0xa3,
                0x7a, 0x75, 0x4f, 0xae, 0x3f, 0x37, 0x6d, 0x47,
                0x61, 0xbe, 0xab, 0xd3, 0x5f, 0xb0, 0x58, 0xaf,
                0xca, 0x5e, 0xfa, 0x85, 0xe4, 0x4d, 0x8a, 0x05,
                0xfb, 0x60, 0xb7, 0x7b, 0xb8, 0x26, 0x4a, 0x67,
                0xc6, 0x1a, 0xf8, 0x69, 0x25, 0xb3, 0xdb, 0xbd,
                0x66, 0xdd, 0xf1, 0xd2, 0xdf, 0x03, 0x8d, 0x34,
                0xd9, 0x92, 0x0d, 0x63, 0x55, 0xaa, 0x49, 0xec,
                0xbc, 0x95, 0x3c, 0x84, 0x0b, 0xf5, 0xe6, 0xe7,
                0xe5, 0xac, 0x7e, 0x6e, 0xb9, 0xf9, 0xda, 0x8e,
                0x9a, 0xc9, 0x24, 0xe1, 0x0a, 0x15, 0x6b, 0x3a,
                0xa0, 0x51, 0xf4, 0xea, 0xb2, 0x97, 0x9e, 0x5d,
                0x22, 0x88, 0x94, 0xce, 0x19, 0x01, 0x71, 0x4c,
                0xa5, 0xe3, 0xc5, 0x31, 0xbb, 0xcc, 0x1f, 0x2d,
                0x3b, 0x52, 0x6f, 0xf6, 0x2e, 0x89, 0xf7, 0xc0,
                0x68, 0x1b, 0x64, 0x04, 0x06, 0xbf, 0x83, 0x38
        );

        // Inverse log table
        private static $atable = array(
                0x01, 0xe5, 0x4c, 0xb5, 0xfb, 0x9f, 0xfc, 0x12,
                0x03, 0x34, 0xd4, 0xc4, 0x16, 0xba, 0x1f, 0x36,
                0x05, 0x5c, 0x67, 0x57, 0x3a, 0xd5, 0x21, 0x5a,
                0x0f, 0xe4, 0xa9, 0xf9, 0x4e, 0x64, 0x63, 0xee,
                0x11, 0x37, 0xe0, 0x10, 0xd2, 0xac, 0xa5, 0x29,
                0x33, 0x59, 0x3b, 0x30, 0x6d, 0xef, 0xf4, 0x7b,
                0x55, 0xeb, 0x4d, 0x50, 0xb7, 0x2a, 0x07, 0x8d,
                0xff, 0x26, 0xd7, 0xf0, 0xc2, 0x7e, 0x09, 0x8c,
                0x1a, 0x6a, 0x62, 0x0b, 0x5d, 0x82, 0x1b, 0x8f,
                0x2e, 0xbe, 0xa6, 0x1d, 0xe7, 0x9d, 0x2d, 0x8a,
                0x72, 0xd9, 0xf1, 0x27, 0x32, 0xbc, 0x77, 0x85,
                0x96, 0x70, 0x08, 0x69, 0x56, 0xdf, 0x99, 0x94,
                0xa1, 0x90, 0x18, 0xbb, 0xfa, 0x7a, 0xb0, 0xa7,
                0xf8, 0xab, 0x28, 0xd6, 0x15, 0x8e, 0xcb, 0xf2,
                0x13, 0xe6, 0x78, 0x61, 0x3f, 0x89, 0x46, 0x0d,
                0x35, 0x31, 0x88, 0xa3, 0x41, 0x80, 0xca, 0x17,
                0x5f, 0x53, 0x83, 0xfe, 0xc3, 0x9b, 0x45, 0x39,
                0xe1, 0xf5, 0x9e, 0x19, 0x5e, 0xb6, 0xcf, 0x4b,
                0x38, 0x04, 0xb9, 0x2b, 0xe2, 0xc1, 0x4a, 0xdd,
                0x48, 0x0c, 0xd0, 0x7d, 0x3d, 0x58, 0xde, 0x7c,
                0xd8, 0x14, 0x6b, 0x87, 0x47, 0xe8, 0x79, 0x84,
                0x73, 0x3c, 0xbd, 0x92, 0xc9, 0x23, 0x8b, 0x97,
                0x95, 0x44, 0xdc, 0xad, 0x40, 0x65, 0x86, 0xa2,
                0xa4, 0xcc, 0x7f, 0xec, 0xc0, 0xaf, 0x91, 0xfd,
                0xf7, 0x4f, 0x81, 0x2f, 0x5b, 0xea, 0xa8, 0x1c,
                0x02, 0xd1, 0x98, 0x71, 0xed, 0x25, 0xe3, 0x24,
                0x06, 0x68, 0xb3, 0x93, 0x2c, 0x6f, 0x3e, 0x6c,
                0x0a, 0xb8, 0xce, 0xae, 0x74, 0xb1, 0x42, 0xb4,
                0x1e, 0xd3, 0x49, 0xe9, 0x9c, 0xc8, 0xc6, 0xc7,
                0x22, 0x6e, 0xdb, 0x20, 0xbf, 0x43, 0x51, 0x52,
                0x66, 0xb2, 0x76, 0x60, 0xda, 0xc5, 0xf3, 0xf6,
                0xaa, 0xcd, 0x9a, 0xa0, 0x75, 0x54, 0x0e, 0x01
        );

        // The key schedule in this AES cipher.
        private $w;
        // The state matrix in this AES cipher with Nb columns and 4 rows
        private $s;
        // Determines the lenght of key z
        private $keyLength;


        /** constructs an AES cipher using a specific key.
        */
        public function __construct($z) {
               $this->Nk = strlen($z)/4;
               $this->Nr = $this->Nk + self::$Nb + 2;

               if ($this->Nk != 4 && $this->Nk != 6 && $this->Nk != 8)
                    die("Key is " . ($this->Nk*32) . " bits long. *not* 128, 192, or 256.");

               $this->Nr = $this->Nk+self::$Nb+2;
               $this->w = array(); // Nb*(Nr+1) 32-bit words
               $this->s = array(array());  // 2-D array of Nb colums and 4 rows

               $this->KeyExpansion($z); // places expanded key in w
        }

        /** Encrypts an aribtrary length String.
        *   @params plaintext string
        *   @returns ciphertext string
        *   Whenever possible you should stream your plaintext through the
        *   encryptBlock() function directly, as the amount of time required
        *   to encrypt is linear to the size of the ciphertext.
        **/
        public function encrypt($x) {
                $t = ""; // 16-byte block
                $y = ""; // returned cipher text;

                // put a 16-byte block into t
                $xsize = strlen($x);
                for ($i=0; $i<$xsize; $i+=16) {
                        for ($j=0; $j<16; $j++) {
                                if (($i+$j)<$xsize) {
                                        $t[$j] = $x[$i+$j];
                                }
                                else
                                        $t[$j] = chr(0);
                        }

                        $y .= $this->encryptBlock($t);
                }
                return $y;
        }

        /** Decrypts an aribtrary length String.
        *   @params ciphertext string
        *   @returns plaintext string
        *   Whenever possible you should stream your ciphertext through the
        *   decryptBlock() function directly, as the amount of time required
        *   to decrypt is linear to the size of the ciphertext.
        **/
        public function decrypt($y) {
                $t = ""; // 16-byte block
                $x = ""; // returned plain text;

                // put a 16-byte block into t
                $ysize = strlen($y);
                for ($i=0; $i<$ysize; $i+=16) {
                        for ($j=0; $j<16; $j++) {
                                if (($i+$j)<$ysize)
                                        $t[$j] = $y[$i+$j];
                                else
                                        $t[$j] = chr(0);
                        }
                        $x .= $this->decryptBlock($t);
                }
                return $x;
        }

        /** Encrypts the 16-byte plain text.
        *   @params 16-byte plaintext string
        *   @returns 16-byte ciphertext string
        **/
        public function encryptBlock($x) {
                $y = ""; // 16-byte string

                // place input x into the initial state matrix in column order
                for ($i=0; $i<4*self::$Nb; $i++) {
                        // we want integerger division for the second index
                        $this->s[$i%4][($i-$i%self::$Nb)/self::$Nb] = ord($x[$i]);
                }

                // add round key
                $this->addRoundKey(0);

                for ($i=1; $i<$this->Nr; $i++) {
                        // substitute bytes
                        $this->subBytes();

                        // shift rows
                        $this->shiftRows();

                        // mix columns
                        $this->mixColumns();

                        // add round key
                        $this->addRoundKey($i);
                }

                // substitute bytes
                $this->subBytes();

                // shift rows
                $this->shiftRows();

                // add round key
                $this->addRoundKey($i);

                // place state matrix s into y in column order
                for ($i=0; $i<4*self::$Nb; $i++)
                       $y .= chr($this->s[$i%4][($i-$i%self::$Nb)/self::$Nb]);
                return $y;
        }

        /** Decrypts the 16-byte cipher text.
        *   @params 16-byte ciphertext string
        *   @returns 16-byte plaintext string
        **/
        public function decryptBlock($y) {
                $x = ""; // 16-byte string

                // place input y into the initial state matrix in column order
                for ($i=0; $i<4*self::$Nb; $i++)
                        $this->s[$i%4][($i-$i%self::$Nb)/self::$Nb] = ord($y[$i]);

                // add round key
                $this->addRoundKey($this->Nr);

                for ($i=$this->Nr-1; $i>0; $i--) {
                        // inverse shift rows
                        $this->invShiftRows();

                        // inverse sub bytes
                        $this->invSubBytes();

                        // add round key
                        $this->addRoundKey($i);

                        // inverse mix columns
                        $this->invMixColumns();
                }

                // inverse shift rows
                $this->invShiftRows();

                // inverse sub bytes
                $this->invSubBytes();

                // add round key
                $this->addRoundKey($i);

                // place state matrix s into x in column order
                for ($i=0; $i<4*self::$Nb; $i++) {
                       // Used to remove filled null characters.
                       $x .= ($this->s[$i%4][($i-$i%self::$Nb)/self::$Nb] == chr(0) ? "" : chr($this->s[$i%4][($i-$i%self::$Nb)/self::$Nb]));
                }

                return $x;
        }

        public function __destruct() {
                unset($this->w);
                unset($this->s);
        }

        /** makes a big key out of a small one
        *   @returns void
        **/
        private function KeyExpansion($z) {
                // Rcon is the round constant
                static $Rcon = array(
                        0x00000000,
                        0x01000000,
                        0x02000000,
                        0x04000000,
                        0x08000000,
                        0x10000000,
                        0x20000000,
                        0x40000000,
                        0x80000000,
                        0x1b000000,
                        0x36000000,
                        0x6c000000,
                        0xd8000000,
                        0xab000000,
                        0x4d000000,
                        0x9a000000,
                        0x2f000000
                );

                $temp = 0; // temporary 32-bit word

                // the first Nk words of w are the cipher key z
                for ($i=0; $i<$this->Nk; $i++) {
                        $this->w[$i] = 0;
                        // fill an entire word of expanded key w
                        // by pushing 4 bytes into the w[i] word
                        $this->w[$i] = ord($z[4*$i]); // add a byte in
                        $this->w[$i] <<= 8; // make room for the next byte
                        $this->w[$i] += ord($z[4*$i+1]);
                        $this->w[$i] <<= 8;
                        $this->w[$i] += ord($z[4*$i+2]);
                        $this->w[$i] <<= 8;
                        $this->w[$i] += ord($z[4*$i+3]);
                }


                for (; $i<self::$Nb*($this->Nr+1); $i++) {
                        $temp = $this->w[$i-1];

                        if ($i%$this->Nk == 0)
                                $temp = $this->subWord($this->rotWord($temp)) ^ $Rcon[$i/$this->Nk];
                        else if ($this->Nk > 6 && $i%$this->Nk == 4)
                                $temp = $this->subWord($temp);

                        $this->w[$i] = $this->w[$i-$this->Nk] ^ $temp;

               	       self::make32BitWord($this->w[$i]);
                }
        }

        /** adds the key schedule for a round to a state matrix.
        *   @returns void
        **/
        private function addRoundKey($round) {
                $temp = "";

                for ($i=0; $i<4; $i++) {
                        for ($j=0; $j<self::$Nb; $j++) {
                                // place the i-th byte of the j-th word from expanded key w into temp
                                $temp = $this->w[$round*self::$Nb+$j] >> (3-$i)*8;
                                // Cast temp from a 32-bit word into an 8-bit byte.
                                $temp %= 256;
                                // Can't do unsigned shifts, so we need to make this temp positive
                                $temp = ($temp < 0 ? (256 + $temp) : $temp);

                                $this->s[$i][$j] ^= $temp; // xor temp with the byte at location (i,j) of the state
                        }
                }
        }

        /** unmixes each column of a state matrix.
        *   @returns void
        **/
        private function invMixColumns() {
                $s0 = $s1 = $s2 = $s3= '';

                // There are Nb columns
                for ($i=0; $i<self::$Nb; $i++) {
                        $s0 = $this->s[0][$i]; $s1 = $this->s[1][$i]; $s2 = $this->s[2][$i]; $s3 = $this->s[3][$i];

                        $this->s[0][$i] = $this->mult(0x0e, $s0) ^ $this->mult(0x0b, $s1) ^ $this->mult(0x0d, $s2) ^ $this->mult(0x09, $s3);
                        $this->s[1][$i] = $this->mult(0x09, $s0) ^ $this->mult(0x0e, $s1) ^ $this->mult(0x0b, $s2) ^ $this->mult(0x0d, $s3);
                        $this->s[2][$i] = $this->mult(0x0d, $s0) ^ $this->mult(0x09, $s1) ^ $this->mult(0x0e, $s2) ^ $this->mult(0x0b, $s3);
                        $this->s[3][$i] = $this->mult(0x0b, $s0) ^ $this->mult(0x0d, $s1) ^ $this->mult(0x09, $s2) ^ $this->mult(0x0e, $s3);

                }
        }

        /** applies an inverse cyclic shift to the last 3 rows of a state matrix.
        *   @returns void
        **/
        private function invShiftRows() {
                $temp = "";
                for ($i=1; $i<4; $i++) {
                        for ($j=0; $j<self::$Nb; $j++)
                                $temp[($i+$j)%self::$Nb] = $this->s[$i][$j];
                        for ($j=0; $j<self::$Nb; $j++)
                                $this->s[$i][$j] = $temp[$j];
                }
        }

        /** applies inverse S-Box substitution to each byte of a state matrix.
        *   @returns void
        **/
        private function invSubBytes() {
                for ($i=0; $i<4; $i++)
                        for ($j=0; $j<self::$Nb; $j++)
                                $this->s[$i][$j] = self::$invSBox[$this->s[$i][$j]];
        }

        /** mixes each column of a state matrix.
        *   @returns void
        **/
        private function mixColumns() {
                $s0 = $s1 = $s2 = $s3= '';

                // There are Nb columns
                for ($i=0; $i<self::$Nb; $i++) {
                        $s0 = $this->s[0][$i]; $s1 = $this->s[1][$i]; $s2 = $this->s[2][$i]; $s3 = $this->s[3][$i];

                        $this->s[0][$i] = $this->mult(0x02, $s0) ^ $this->mult(0x03, $s1) ^ $this->mult(0x01, $s2) ^ $this->mult(0x01, $s3);
                        $this->s[1][$i] = $this->mult(0x01, $s0) ^ $this->mult(0x02, $s1) ^ $this->mult(0x03, $s2) ^ $this->mult(0x01, $s3);
                        $this->s[2][$i] = $this->mult(0x01, $s0) ^ $this->mult(0x01, $s1) ^ $this->mult(0x02, $s2) ^ $this->mult(0x03, $s3);
                        $this->s[3][$i] = $this->mult(0x03, $s0) ^ $this->mult(0x01, $s1) ^ $this->mult(0x01, $s2) ^ $this->mult(0x02, $s3);
                }
        }

        /** applies a cyclic shift to the last 3 rows of a state matrix.
        *   @returns void
        **/
        private function shiftRows() {
                $temp = "";
                for ($i=1; $i<4; $i++) {
                        for ($j=0; $j<self::$Nb; $j++)
                                $temp[$j] = $this->s[$i][($j+$i)%self::$Nb];
                        for ($j=0; $j<self::$Nb; $j++)
                                $this->s[$i][$j] = $temp[$j];
                }
        }
        /** applies S-Box substitution to each byte of a state matrix.
        *   @returns void
        **/
        private function subBytes() {

                for ($i=0; $i<4; $i++) {
                        for ($j=0; $j<self::$Nb; $j++)
                                $this->s[$i][$j] = self::$sBox[$this->s[$i][$j]];
                }
        }

        /** multiplies two polynomials a(x), b(x) in GF(2^8) modulo the irreducible polynomial m(x) = x^8+x^4+x^3+x+1
        *   @returns 8-bit value
        **/
        private static function mult($a, $b) {
                $sum = self::$ltable[$a] + self::$ltable[$b];
                $sum %= 255;
                // Get the antilog
                $sum = self::$atable[$sum];
                return ($a == 0 ? 0 : ($b == 0 ? 0 : $sum));
        }

        /** applies a cyclic permutation to a 4-byte word.
        *   @returns 32-bit int
        **/
        private static function rotWord($w) {
                $temp = $w >> 24; // put the first 8-bits into temp
                $w <<= 8; // make room for temp to fill the lower end of the word
                self::make32BitWord($w);
                // Can't do unsigned shifts, so we need to make this temp positive
                $temp = ($temp < 0 ? (256 + $temp) : $temp);
                $w += $temp;

                return $w;
        }

        /** applies S-box substitution to each byte of a 4-byte word.
        *   @returns 32-bit int
        **/
        private static function subWord($w) {
                $temp = 0;
                // loop through 4 bytes of a word
                for ($i=0; $i<4; $i++) {
                        $temp = $w >> 24; // put the first 8-bits into temp
                        // Can't do unsigned shifts, so we need to make this temp positive
                        $temp = ($temp < 0 ? (256 + $temp) : $temp);
                        $w <<= 8; // make room for the substituted byte in w;
                        self::make32BitWord($w);
                        $w += self::$sBox[$temp]; // add the substituted byte back
                }

                self::make32BitWord($w);

                return $w;
        }

        /** reduces a 64-bit word to a 32-bit word
        *   @returns void
        **/
        private static function make32BitWord(&$w) {
                // Reduce this 64-bit word to 32-bits on 64-bit machines
	       $w &= 0x00000000FFFFFFFF;
        }
}
?>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 10:34:16 By : meannerss
 


 

No. 4



โพสกระทู้ ( 318 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 1 เขียนโดย : apisitp เมื่อวันที่ 2013-11-19 10:14:26
รายละเอียดของการตอบ ::
เด๋วลองศึกษา mod rewrite ดูด้วยครับ เริ่มเห็นแนวๆ ละ ครับ


ตอบความคิดเห็นที่ : 3 เขียนโดย : meannerss เมื่อวันที่ 2013-11-19 10:34:16
รายละเอียดของการตอบ ::
Ohh ! โหดแท้ ขอบคุณครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 11:06:01 By : angelkiller9
 


 

No. 5



โพสกระทู้ ( 1,666 )
บทความ ( 0 )



สถานะออฟไลน์


AES อาจดูเหมือนของยาก แต่พอลองเข้าดูแล้ว บร๊มันง่ายนิดเดียว แค่ตั้งคีย์แล้วเก็บเป็นความลับก็ได้ผลลัพท์.. . . แล้วคนที่ถอดได้โดยไม่มีคีย์เนี่ยมันคงต้องเป็นปรมาจารย์ด้าน Secure อันดับต้นๆของโลกแน่นอน ก็คงต้องยอมมัน
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 11:18:36 By : meannerss
 


 

No. 6



โพสกระทู้ ( 5,105 )
บทความ ( 4 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ตอบความคิดเห็นที่ : 2 เขียนโดย : angelkiller9 เมื่อวันที่ 2013-11-19 10:22:53
รายละเอียดของการตอบ ::
เค้าลองเล่นเฉย ๆ มันทำได้แต่วุ่นวายมาก
1.ค่าที่ส่งไป มันมีอยู่ใน DB แปลงเป็น md5 แล้วส่งไป
2.เพจต่อไป ก็ดึงจาก DB มาแปลงเป็น md5 แล้วเอามาเทียบกับ md5 ที่ส่งมา หรือ อะไรก็ว่าไป ...555+


- ดู AES ก็น่าจะเวิร์ค จะลองเอาไปเล่นดูบ้าง
-ส่วน mod rewrite ที่ผมไม่ได้ทำ เพราะ ผมไม่ยากไปยุ่งกับ server ทำไรไปขึ้นมา web อื่นเป็นไรซวยอีก (เรื่อง server ผมไม่ได้เลยอ่ะ)
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 11:29:23 By : apisitp
 


 

No. 7



โพสกระทู้ ( 2,311 )
บทความ ( 1 )



สถานะออฟไลน์


หรือไม่ก็ส่งไป 2 ค่าครับ
1. ค่าที่เราจะใช้ประโยชน์ เช่น ดึงข้อมูลจากฐานข้อมูล
2. ค่าเช็ค ซึ่งจะเข้ารหัสไว้ ตัวอย่างค่านี้ผมจะเข้ารหัสแบบ md5 ละกันครับ

Ex...
หน้าส่ง
<?PHP
$id = '1234'; #สมมติว่านี่คือค่าที่เราต้องการส่งไป
?>
<a href="test.php?value=<?PHP echo $id;?>&check=<?PHP echo md5($id.'check');?>">คลิกที่นี่</a>


หน้ารับและเช็คความถูกต้อง
if(!empty($_GET['value']) && !empty($_GET['check']) &&($_GET['check']==md5($_GET['value'].'check'))){
    #คำสั่งต่อไป...................
}


ลองดูครับวิธีนี้เป็นการเช็คได้อีกวิธีนึง แต่จะใช้ประโยชน์ในการทำ SEO ไม่ได้ ถ้าอยากได้เรื่อง SEO ด้วย ต้องใช้ mod rewrite ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 11:30:08 By : arm8957
 


 

No. 8



โพสกระทู้ ( 47 )
บทความ ( 0 )



สถานะออฟไลน์


เพิ่มเติมนิดนึงครับ AES ไม่ต้องใช้ code ยืดยาวแล้วนะครับ PHP version ใหม่ สามารถทำได้แล้วครับ


ประมาณนี้

mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $str, MCRYPT_MODE_CBC,$iv)
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 11:57:41 By : wirote_se
 


 

No. 9

Guest


ถ้าไม่ได้สนใจ security อะไรมากมาย
อยากให้แค่ส่ง url test.php เฉยๆ ผมจะส่งไปเป็นแบบ post ครับ ง่ายดี
เช่น

<script language="JavaScript">
function func_submitData(val){

document.frm_1.val_1.value = val;
document.frm_1.submit();

}
</script>



<form name="frm_1" method="post" action="test.php">

<a href="#" onclick="func_submitData('1234')">คลิกที่นี่___1</a>
<a href="#" onclick="func_submitData('5678')">คลิกที่นี่___2</a>
<input name="val_1" id="val_1" value="" />
</form>


หน้ารับ ก็ รับ $_POST ธรรมดา

ปล. ความคิดเห็นส่วนตัวนะครับ ผิดพลาดไง ขออภัยด้วย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 13:09:25 By : gumix
 


 

No. 10



โพสกระทู้ ( 1,994 )
บทความ ( 10 )



สถานะออฟไลน์
Facebook Blogger

ผมว่าเก็บเป็น $_SESSION ไปเลยดีกว่า

เช่น เปิดแบบฟอร์มแก้ไขของ ID = 12345
ก็เก็บ $_SESSION['ID_EDIT'] = 12345;

พอแก้ไขกดบันทึก หรือลิงค์ไปหน้าต่อไป

ก็ดึงมาใช้

$id = $_SESSION['ID_EDIT'];

แต่ถ้ากลัวว่าผู้ใช้ 1 คนอาจจะแก้ข้อมูลหลายแบบฟอร์ม

ก็ใส่เป็นอาร์เรย์ 2 มิติไป

$_SESSION['FORM_CUSTOMER']['ID_EDIT'] = 12345;

เวลาไปหน้าอื่นก็ดึงมาใช้

$id = $_SESSION['FORM_CUSTOMER']['ID_EDIT']
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-11-19 13:30:17 By : {Cyberman}
 


 

No. 11



โพสกระทู้ ( 318 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณทุกคนมากเรยครับ ได้ความรู้มากมาย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-01-06 09:11:39 By : angelkiller9
 


 

No. 12



โพสกระทู้ ( 318 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 7 เขียนโดย : arm8957 เมื่อวันที่ 2013-11-19 11:30:08
รายละเอียดของการตอบ ::
ขอบคุณครับ กับการทำ md5


ตอบความคิดเห็นที่ : 8 เขียนโดย : wirote_se เมื่อวันที่ 2013-11-19 11:57:41
รายละเอียดของการตอบ ::
ช่วยบอกรายละเอียดเกี่ยวกับ วิธีนี้หน่อยสิครับ
mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $str, MCRYPT_MODE_CBC,$iv)
การนำมาใช้ เข้ารหัส ถอดรหัส

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-01-06 09:14:30 By : angelkiller9
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถามครับ จาก url = test.php?value=1234 เราจะสามารถซ่อน ?value=1234 ได้ยังไงครับ ปัจจุบันผมส่งค่าจากลิ้ง <a href="test.php?value=1234">
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่