php include的妙用,实现路径加密

 2025-01-16  阅读 272  评论 8  点赞 495

摘要:1、中转程序include.inc 复制代码 代码如下: index.php与include.inc同目录 复制代码 代码如下: 2、修改程序中的链接() 复制代码 代码如下: "index.php?".encrypt("path=/test/test.php&test=123&test2=4321") 3、修改程序中的post表单 form都提交到为 index.php 中间加一个隐
1、中转程序include.inc
复制代码 代码如下:

<?
include_once 'include/base.php';
$path = '';
$url = isbase::decrypt(urldecode($_server['query_string']));
parse_str($url); //获取通过url地址get传递过来的变量
if(!empty($_post['path'])){ //获取post传递过来的变量
$path = $_post['path'];
$path = isbase::decrypt(urldecode($path));
}
//解析真实路径
if(empty($path)){
//header("location: login.php");
exit;
}
if(!preg_match("/(^http:\/)|([?|&|=])/",$path)){
//跳转到实际执行文件的路径
chdir(dirname($path));
include_once basename($path);
exit;
}
?>

index.php与include.inc同目录
复制代码 代码如下:

<?
include include.inc;
?>

2、修改程序中的链接()
复制代码 代码如下:

"index.php?".encrypt("path=/test/test.php&test=123&test2=4321")

3、修改程序中的post表单
form都提交到为 index.php
中间加一个隐藏表单 <hidden name=path value="/test/test.php">

4、修改前端html页面的路径
baseref=/test

5、加解密函数,朋友们自己动手写吧。

总结:
用这种方法比较繁琐,只能隐藏后台脚本的路径,前端的脚本路径仍然可以在源文件中看得到(baseref) 在地址栏上看到的地址都是index.php?xxxxxxxx

标签:phpphp教程

评论列表:

  •   tg7187037109
     发布于 2天前回复该评论
  • 又学到了新知识!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0280秒, 内存占用1.94 MB, 访问数据库31次

冀ICP备19034377号