import requests from requests import request import json from collections import OrderedDict url = 'https://zabbix-xn.test.bestpay.net/api_jsonrpc.php ...
ctfshow 大吉大利杯 先进行一波简单审计 extract函数作用 extract() 函数从数组中将变量导入到当前的符号表。 $str = file_get_contents("php://input") php://input 可以读取不管是POST方式或者GET方法提交过来的数据 ...
分类:
Web程序 时间:
2021-05-24 16:41:52
阅读次数:
0
数据库配置请根据自己的数据库文件来修改。 <?php header('Content-type:text/html;charset=utf-8');define('DB_HOST','localhost');define('DB_USER','数据库用户名');define('DB_PASSWORD ...
分类:
其他好文 时间:
2021-05-24 15:10:20
阅读次数:
0
往期周报汇总地址:http://www.armbbs.cn/forum.php?mod=forumdisplay&fid=12&filter=typeid&typeid=104 1、Arduino为STM32H7做的开源工控底板 原理图是开源的,大家有兴趣看看有没有值得借鉴的地方。 这个底板是为他们 ...
分类:
其他好文 时间:
2021-05-24 15:04:54
阅读次数:
0
第一步:将下载的源码包上传到你的网站根目录下面;打开网站如果出现Dir ,把install_lock.txt删掉,再把有.bak的重命名删除即可。 第二步:打开浏览器 输入http://你的网址/install/index.php 当打开安装页面的时候,你就会看到以下页面 如 果没有出现该页面,而是 ...
分类:
其他好文 时间:
2021-05-24 14:49:41
阅读次数:
0
<?php class A{ function index (){ echo '我是A的index'; } } class B{ function index (){ echo '我是B的index'; } } class C{ function index (){ echo '我是C的index' ...
分类:
Web程序 时间:
2021-05-24 14:24:42
阅读次数:
0
static::、self::、new self()、new static() <?php class Father{ protected static $name = "大头"; public static function father_self(){ echo self::$name."\n" ...
分类:
其他好文 时间:
2021-05-24 14:21:29
阅读次数:
0
1.提高 Webpack 打包速度 (1)优化loader的文件搜索范围 Babel 是编写下一代 JavaScript 的编译器 对于 Loader 来说,影响打包效率首当其冲必属 Babel 了。因为 Babel 会将代码转为字符串生成 AST,然后对 AST 继续进行转变最后再生成新的代码,项 ...
分类:
Web程序 时间:
2021-05-24 14:18:33
阅读次数:
0
由于目前负责公司 DevOps 平台的前端开发工作的原因,工作中会经常遇到 nginx 服务器相关的维护工作,通过学习和工作实践积累了一些 nginx 服务器的相关配置经验和知识积累。 在之前的《前端性能优化 – 启用 GZip 压缩》一文中就给大家介绍过如何在 nginx 中开启 gzip。并且也 ...
分类:
其他好文 时间:
2021-05-24 14:01:55
阅读次数:
0
<?php class One{ private static $_one; private function __construct(){} private function __clone(){} public static function getOne(){ if(!self::$_one ...
分类:
Web程序 时间:
2021-05-24 13:36:59
阅读次数:
0