高贵自行车

文章
5
资源
0
加入时间
3年0月8天

sqlmap如何跑base64加密了的注入点

其实http://www.cnblogs.com/xishaonian/p/6276799.html这个就是一个案例了。但是不得不重写一篇文章来记载。因为这是一个姿势。很好的姿势。保存为xishaonian.php<?php $id = base64_encode("id=".$_GET['id']);echo file_get_contents("http...

SpringBoot使用easyexcel打印数据1.初始化SpringBoot项目2.编写实体类Person.java 3.编写自定义工具类ExcelUtil.java4.编写控制器实现接口调用PersonController.java5.测试6.代码结构

1.初始化SpringBoot项目(1)在SpringBoot官网(https://start.spring.io/)初始化一个Springboot工程,然后点击Generate:(2)在IDEA中导入该项目,初始目录如下:(3)在pom.xml中添加easyexcel需要的依赖:<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel --><dependency> ..