Home  >  Article  >  Backend Development  >  How to use PHP to encrypt and transmit URL address parameters to improve website security

How to use PHP to encrypt and transmit URL address parameters to improve website security

不言
不言Original
2018-04-18 15:13:564709browse

This article introduces how to use PHP to encrypt and transmit URL address parameters to improve website security. It has certain reference value. Now I share it with you. Friends in need can refer to it

When people use PHP to submit data through GET or POST, they often pass parameters in the URL, such as www.mdaima.com/get.php?id=1&page=5, where the id number and page number are parameters. Passing, if it is transmitted directly in clear text, the parameters will be directly exposed to the user. If it is more important data, I think it is not safe to transmit it like this. Would it be better if the parameters were changed to the following?

1

www.mdaima.com/get.php?VGsAYQ96VzkEaF08DTxTLQIyDmsBIQtnVj0Fe1ciAD0EN1M0X2MHMQYxDDcAOwI%2FXToBPVM5ADxfag%3D%3D


Let’s further strengthen it by renaming get.php to get_mb.php, and then using static rules to map get.html to get_mb.php, so that even if the user tries to access get.php, they will not be able to find the real PHP. file, because the real PHP file is not get.php but get_mb.php. What are the following .htaccess rule settings?

利用加密再配合伪静态设置,最终效果就是下面这样了,即隐藏了真实php文件get_mb.php又将参数都加密传输了。

1


##

RewriteRule ^get.html$ get_mb.php?&%{QUERY_STRING}   #.htaccess伪静态规则的设置(加入到.htaccess里就行)


1

www.mdaima.com/get.html?VGsAYQ96VzkEaF08DTxTLQIyDmsBIQtnVj0Fe1ciAD0EN1M0X2MHMQYxDDcAOwI%2FXToBPVM5ADxfag%3D%3D


It's already a little better in comparison, at least it looks a lot better. So how to encrypt and decrypt it? Please look at the following function ( No need to look carefully, just take it and use it, focus on how to call )

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

//---------------以下为加密函数(复制过去就行了)-----------------
function keyED($txt,$encrypt_key){       
    $encrypt_key =    md5($encrypt_key);
    $ctr=0;       
    $tmp = "";       
    for($i=0;$i


以上这个是关键的加密与解密函数,下面看一下如何调用,我们举例说一下将表单action中参数id和page进行加密并加入时间戳一起,这样每次的链接地址都是动态的,而且可以在接收页面设置页面限制超时的有效期了。

1

" enctype="multipart/form-data">


上面就是如何加密参数。再看一下如何解密接收到的参数:

1

2

3

4

$url_info = geturl($_SERVER[QUERY_STRING],$key_url_md_5);//接收所有参数
$page=$url_info['page'];//解密对应参数
$id=$url_info['id'];
$time=$url_info['time'];//这个是时间戳,大家可以利用这个参数判断一下链接生成的时间,就可以判断是否超时了(此项如果不需要也可以忽略)


这样我们就得到了解密的$page和$id参数了,大家试一下吧,有问题也可以联系我!

转载出处:http://www.mdaima.com/jingyan/36.html


The above is the detailed content of How to use PHP to encrypt and transmit URL address parameters to improve website security. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn