我在我的服务器上使用php代码向我的客户发送消息。我使用的编程工具(Game Maker)允许我通过php发送消息,方法是执行一个shell,这样链接就会出现在浏览器中。
以here为例。
加上所有其他的东西。因此,实际上,我发送的消息和我发送的所有内容都可以在浏览器中看到。我使用php get方法。现在一切都运行得很好,除了它可能不安全。有人建议使用php post方法,但当我在服务器上替换了php cod中的get来发布,并在浏览器中粘贴了相同的内容时,我的代码无法工作。这很难解释,但下面是我服务器上的php代码:
<?php
// Some checks on $_SERVER['HTTP_X_REFERRER'] and similar headers
// might be in order
// The input form has an hidden field called email. Most spambot will
// fall for the trap and try filling it. And if ever their lord and master checks the bot logs,
// why not make him think we're morons that misspelled 'smtp'?
if (!isset($_GET['email']))
die("Missing recipient address");
if ('' != $_GET['email'])
{
// A bot, are you?
sleep(2);
die('DNS error: cannot resolve smpt.gmail.com');
// Yes, this IS security through obscurity, but it's only an added layer which comes almost for free.
}
$newline = $_GET['message'];
$newline = str_replace("[N]","\n","$newline");
$newline = str_replace("[n]","\n","$newline");
// Add some last-ditch info
$newline .= <<<DIAGNOSTIC_INFO
---
Mail sent from $_SERVER[REMOTE_ADDR]:$_SERVER[REMOTE_PORT]
DIAGNOSTIC_INFO;
mail('info@site.com','missing Password Report',$newline,"From: ".$_GET['from']);
header( 'Location: http://site.com/report.html' ) ;
?>然后我在我的网站上调用这个php代码。所以最后,整个事情都会在浏览器的地址栏中结束。我希望这是有意义的。我如何通过使用post使事情变得更加安全,以便至少在用户历史记录中看不到发送的信息。
发布于 2012-08-06 18:35:08
如果您在表单中替换为POST,则还需要替换请求以发布:
<?php
// Some checks on $_SERVER['HTTP_X_REFERRER'] and similar headers
// might be in order
// The input form has an hidden field called email. Most spambot will
// fall for the trap and try filling it. And if ever their lord and master checks the bot logs,
// why not make him think we're morons that misspelled 'smtp'?
if (!isset($_POST['email']))
die("Missing recipient address");
if ('' != $_POST['email'])
{ // A bot, are you?
sleep(2);
die('DNS error: cannot resolve smpt.gmail.com');
// Yes, this IS security through obscurity, but it's only an added layer which comes almost for free.
}
$newline = $_POST['message'];
$newline = str_replace("[N]","\n","$newline");
$newline = str_replace("[n]","\n","$newline");
// Add some last-ditch info
$newline .= <<<DIAGNOSTIC_INFO
---
Mail sent from $_SERVER[REMOTE_ADDR]:$_SERVER[REMOTE_PORT]
DIAGNOSTIC_INFO;
mail('info@site.com','missing Password Report',$newline,"From: ".$_POST['from']);
header( 'Location: http://site.com/report.html' ) ;
?>除非您使用真实的GET参数(如http://www.mysite.com/send.php?email=etc)发送它;在这种情况下,您需要将其设置为GET以检索变量。
https://stackoverflow.com/questions/11826548
复制相似问题