服务器端包含

发布于 2024-08-01 14:40:43 字数 63 浏览 4 评论 0 原文

是否可以使用服务器端包含来访问服务器外部的文件?

如果不是,还有什么其他选择可以做到这一点?

Is it possible to use a server side include to access files that are outside of the server?

If not what are some other options to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

眉黛浅 2024-08-08 14:40:43

使用 cURL 获取域外的数据。 如果您想执行收到的数据,请继续使用 eval() 。 但是,请预先警告,这将获得页面的“输出”。 这意味着如果它是一个像“.php”页面一样的执行页面,您将获得处理后产生的数据。

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);
?>

对于 file_get_contents()fopen()

如果您想获取文件的“实际”内容,您需要在另一台服务器上设置某种代理。 (您不能在服务器上执行此操作,因为这将成为服务器端脚本工作方式的安全缺陷)。

<?php

// Read the requested file out
readfile($_GET['file']);

这将为您提供您请求的任何文件的内容:

http://test.com/handler.php?file=handler.php

但是,如果其他人找到它,则可能会很危险。

Use cURL to get data outside of the domain. If you want to then execute the data you receive, go ahead and eval() it. But, be forewarned that this will get the 'output' of the page. Meaning if it is an executed page like a '.php' page, you will get the data that comes out as a result of it being processed.

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);
?>

The same is true for file_get_contents(), and fopen()

If you wanted to grab the 'actual' contents of the file, you would want to set up a proxy of sorts on the other server. (You can't do it on your server because then it would be a security flaw in how server-side-scripting works).

<?php

// Read the requested file out
readfile($_GET['file']);

That will give you the contents of any file you request:

http://test.com/handler.php?file=handler.php

But, if anyone else finds it, it could be dangerous.

甜点 2024-08-08 14:40:43

您没有提到服务器软件,但我假设 Apache,其中 SSI 由 mod_include 模块的手册页。 include 元素不允许远程文件。 但是,您有exec,它允许执行任何外部工具; 您可以使用它来调用 wget 或您选择的任何其他命令。

然而,事情可能没那么复杂。 如果您可以在本地系统中挂载远程目录,则可以创建一个普通的符号链接并使用常规的include

或者,正如已经建议的那样,PHP 使用起来非常简单。

You don't mention the server software but I'll assume Apache, where SSI is provided by the mod_include module. The include element does not allow remote files. However, you have exec, which allows to execute any external tool; you can use it to call wget or any other command of your choice.

However, it might not be so complicate. If you can mount the remote directory in the local system, you can create a plain symlink and use a regular include.

Or, as already suggested, PHP is really simple to use.

伴我心暖 2024-08-08 14:40:43

你可以在 php 中执行类似 file_get_contents() 或 fopen() 的操作,例如

<?php
    echo file_get_contents('http://www.example.com/include');
?>

You can do something like file_get_contents() or fopen() to do this in php, e.g.

<?php
    echo file_get_contents('http://www.example.com/include');
?>
妄断弥空 2024-08-08 14:40:43

是的,nginx 的服务器端包含可以使用任何完整的 url,例如:

<!--# include virtual="http://www.stackoverflow.com/" -->

Yes, nginx's server side includes can use any full url eg:

<!--# include virtual="http://www.stackoverflow.com/" -->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文