开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 458|回复: 3
收起左侧

[完成] POST防火墙返回

 关闭 [复制链接]
结帖率:69% (43/62)
发表于 2024-4-21 23:18:26 | 显示全部楼层 |阅读模式   陕西省西安市
30精币
<!DOCTYPE html>
<html lang="zh-cn">

<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="data-spm" content="a3c0e" />
  <title>405</title>
  <style>
    html, body, div, a, h2, p { margin: 0; padding: 0;  }
    a { text-decoration: none; color: #3b6ea3;  }
    .container { width: 1000px; margin: auto; color: #696969; }
    .header { padding: 50px 0; }
    .header .message { height: 36px; padding-left: 120px; background: url() no-repeat 0 -128px; line-height: 36px; }
    .main { padding: 50px 0; background: #f4f5f7; }
    .main img { position: relative; left: 120px; }
    .footer { margin-top: 30px; text-align: right; }
    .footer a { padding: 8px 30px; border-radius: 10px; border: 1px solid #4babec; }
    .footer a:hover { opacity: .8; }
    .alert-shadow { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #999; opacity: .5; }
    .alert { display: none; position: absolute; top: 200px; left: 50%; width: 600px; margin-left: -300px; padding-bottom: 25px; border: 1px solid #ddd; box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .1); background: #fff; font-size: 14px; color: #696969; }
    .alert h2 {  margin: 0 2px; padding: 10px 15px 5px 15px; font-size: 14px; font-weight: normal; border-bottom: 1px solid #ddd; }
    .alert a { display: block; position: absolute; right: 10px; top: 8px; width: 30px; height: 20px; text-align: center; }
    .alert p {  padding: 20px 15px; }
  </style>
</head>

<body data-spm="7663354">
  <div data-spm="1998410538">
    <div class="header">
      <div class="container">
        <div class="message">
          很抱歉,由于您访问的URL有可能对网站造成安全威胁,您的访问被阻断。
          <div>您的请求ID是: <strong>
b65cfd3017137122428461611e7736</strong></div>
        </div>
      </div>
    </div>
    <div class="main">
      <div class="container">
        <img src="https://errors.aliyun.com/images/TB15QGaHpXXXXXOaXXXXia39XXX-660-117.png" />
      </div>
    </div>
    <div class="footer">
      <div class="container">
        <a target="_blank" id="report" href="javascript:;" data-spm-click="gostr=/waf.123.123;locaid=d001;">误报反馈</a>
      </div>
    </div>
  </div>
  <div id="alertShadow" class="alert-shadow"></div>
  <div id="alertContainer" class="alert">
    <h2>提示:<a href="javascript:;" title="关闭" id="closeAlert">X</a></h2>
    <p>感谢您的反馈,应用防火墙会尽快进行分析和确认。</p>
  </div>
  <script>
    function show() {
      var g = function(ele) { return document.getElementById(ele); };
      var reportHandle = g('report');
      var alertShadow = g('alertShadow');
      var alertContainer = g('alertContainer');
      var closeAlert = g('closeAlert');
      var own = {};
      own.report = function() {
        // SPM
        own.alert();
      };
      own.alert = function() {
        alertShadow.style.display = 'block';
        alertContainer.style.display = 'block';
      };
      own.close = function() {
        alertShadow.style.display = 'none';
        alertContainer.style.display = 'none';
      };
    };
  </script>
</body>

</html>


POST发出返回的,是不是          <div>您的请求ID是: <strong>
b65cfd3017137122428461611e7736</strong></div>        的问题,  这个id指的是什么?这个问题怎么解决?

最佳答案

查看完整内容

精易模块的问题。部分UA,发起https请求,会出现问题,只能发起http, 要解决这个问题,更换UA或者更换访问方式。 补充内容 (2024-4-22 18:27): 鱼刺也有这个问题。 易语言的RS支持库,node.js,Py,这些能访问正常 这边建议换一个UA,
结帖率:93% (248/268)

签到天数: 23 天

发表于 2024-4-21 23:18:27 | 显示全部楼层   广西壮族自治区崇左市
xulei123 发表于 2024-4-22 08:48
问题     不一样

精易模块的问题。部分UA,发起https请求,会出现问题,只能发起http,

要解决这个问题,更换UA或者更换访问方式。


补充内容 (2024-4-22 18:27):
鱼刺也有这个问题。

易语言的RS支持库,node.js,Py,这些能访问正常

这边建议换一个UA,
回复

使用道具 举报

结帖率:93% (248/268)

签到天数: 23 天

发表于 2024-4-22 03:27:30 | 显示全部楼层   广西壮族自治区崇左市
一个人几个号么??

怎么一直在问?
回复

使用道具 举报

结帖率:69% (43/62)
 楼主| 发表于 2024-4-22 08:48:13 | 显示全部楼层   河北省石家庄市
果心豆腐酱 发表于 2024-4-22 03:27
一个人几个号么??

怎么一直在问?

问题     不一样
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表