2023年11月30日
摘要: 用户密码扫描 不能点保存!! 利用录制登录序列进行扫描 定制cookie扫描 填写完一点要点右边的加号,页面信息一定要填准确 阅读全文
posted @ 2023-11-30 17:12 na2co3- 阅读(5) 评论(0) 推荐(0) 编辑
  2023年11月22日
摘要: 攻防世界https://adworld.xctf.org.cn/challenges/list?rwNmOdr=1700636488236 只要将序列化里的1改成任意数字都可以绕过wakeup魔法函数 http://61.147.171.105:63515/?code=O:4:%22xctf%22: 阅读全文
posted @ 2023-11-22 15:17 na2co3- 阅读(10) 评论(0) 推荐(0) 编辑
  2023年11月21日
摘要: JSP的缺点 阅读全文
posted @ 2023-11-21 20:49 na2co3- 阅读(1) 评论(0) 推荐(0) 编辑
摘要: JSP原理 阅读全文
posted @ 2023-11-21 19:21 na2co3- 阅读(6) 评论(0) 推荐(0) 编辑
  2023年11月20日
摘要: 代码优化 String resource = "mybatis-config.xml";InputStream inputStream = Resources.getResourceAsStream(resource);SqlSessionFactory sqlSessionFactory = ne 阅读全文
posted @ 2023-11-20 20:42 na2co3- 阅读(9) 评论(0) 推荐(0) 编辑
摘要: regiseter.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> < 阅读全文
posted @ 2023-11-20 16:58 na2co3- 阅读(1) 评论(0) 推荐(0) 编辑
  2023年11月18日
摘要: 所有坐标 <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> </plug 阅读全文
posted @ 2023-11-18 21:19 na2co3- 阅读(7) 评论(0) 推荐(0) 编辑
  2023年11月16日
摘要: 将一个对象转化为字符称为序列化 调用serialize方法 其他序列化格式 反序列化的过程可以修改类中的值 阅读全文
posted @ 2023-11-16 21:21 na2co3- 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Response响应字符数据 //text/html解码html,charset解码汉字response.setContentType("text/html;charset=utf-8");//1、获取字符输入流PrintWriter writer = response.getWriter();wr 阅读全文
posted @ 2023-11-16 20:45 na2co3- 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Response设置响应数据功能 Response完成重定向 重定向(Redirect):一种资源跳转方式 *redirect一定地址是8080往后补的,一定要写全 也可以是外部地址 路径问题: 动态获取虚拟目录 //动态获取虚拟目录String contextPath = request.getC 阅读全文
posted @ 2023-11-16 19:03 na2co3- 阅读(7) 评论(0) 推荐(0) 编辑