2020宁波市第三届网络安全大赛,比赛分行业组和院校组进行团体赛。感觉这次比赛还是很不错的~ 值得参加。 Easy_SSRF <?php show_source(__FILE__); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $_GET["ur ...
分类:
Web程序 时间:
2020-07-07 21:04:32
阅读次数:
428
方式一 float+ text-align:center <div class="w clearfix tc mt10"> <el-button class="fll" type="primary" plain>刷新</el-button> <el-button type="primary" pla ...
分类:
其他好文 时间:
2020-07-07 17:42:32
阅读次数:
67
这里主要是有一点: 1 Math.ceil(d1) ceil 方法上有这么一段注释:If the argument value is less than zero but greater than -1.0, then the result is negative zero 如果参数小于0且大于-1 ...
分类:
其他好文 时间:
2020-07-07 13:28:09
阅读次数:
80
lscpu 显示 CPU 的架构信息 lscpu 从 sysfs 和 proc/cpuinfo 中收集信息。这个命令的输出是规范的可以用来解析,或者给人来阅读。该命令显示的信息包括,CPU 的数量,线程 (thread),核心 (core),Socket 还有 Non-Uniform Memory ...
分类:
其他好文 时间:
2020-07-06 20:16:46
阅读次数:
136
08 SESSION验证绕过 源代码为: <?php ? $flag = "flag"; ? session_start(); if (isset ($_GET['password'])) { if ($_GET['password'] == $_SESSION['password']) die ( ...
分类:
Web程序 时间:
2020-07-05 15:11:58
阅读次数:
86
启动集群及监控 进入目录 cd /usr/local/hadoop-2.6.5/sbin/ 启动整个集群组件 ./start-dfs.sh 启动yarn集群 ./start-yarn.sh 启动日志服务 ./mr-jobhistory-daemon.sh start historyserver 查看 ...
分类:
其他好文 时间:
2020-07-04 16:57:27
阅读次数:
64
匿名内部类 示例代码 接口: public interface Usb { void service(); } 实现类: public class Mouse implements Usb { @Override public void service() { System.out.println( ...
分类:
其他好文 时间:
2020-07-04 13:38:41
阅读次数:
56
MNIST数据集介绍 MNIST数据集官网:http://yann.lecun.com/exdb/mnist/ MNIST数据库是非常经典的一个数据集,就像你学编程起初写一个“Hello Word”的程序一样,学Deep Learning你就会写识别MNIST数据集的Model。 MNIST数据集是 ...
分类:
其他好文 时间:
2020-07-04 13:25:53
阅读次数:
88
简单安装为了集成 SpringBoot,真实使用,增加增加更多配置,比如将log映射出来 1.安装 zookeeper [root@centos-linux ~]# docker pull wurstmeister/zookeeper [root@centos-linux ~]# docker pu ...
分类:
其他好文 时间:
2020-07-03 23:42:13
阅读次数:
296
介绍 一种模式匹配语言,可以使永远筛选数据以查找特定的内容,可以应用在vim、grep、less、perl、python中 基础 .(点) 匹配除 \n 之外的任何单个字符,若要匹配包括 \n ,则应使用 [.\n] [xyz] 匹配所包含的任意一个字符 例如: [abc] 可以匹配“plain”中 ...
分类:
系统相关 时间:
2020-07-02 13:44:46
阅读次数:
91