background picture of the home page

Hi,Friends.This is Dralon's blog.

Valve内存马

什么是Valve Valve也可以直接按照字面意思去理解为阀门。我们知道,在生活中可以看到每个管道上面都有阀门,Pipeline和Valve关系也是一样的。Valve代表管道上的阀门,可以控制管道的流向,当然每个管道上可以有多个阀门。 Filter Chain 当中任意添加 Filter;那么 Va

thumbnail of the cover of the post

Filter内存马

javaweb服务请求会先触发Filter,然后再到达Servlet 过程分析 这里自行创建了一个Filter拦截器,然后设置断点进行Debuge,查看程序运行情况。 如果想要创建Filter内存马,那么就需要将Filter像之前的Servlet一样加载到tomcat服务中。 这里通过查看程序的运行

thumbnail of the cover of the post

Java反射

准备工作 创建一个Person类 package com.oop.demo9; public class Person { public String name; int age; } 创建两个接口,一个Move接口一个Study接口,接口中定义方法。 Move.java,该文件中定

thumbnail of the cover of the post

SeaCMS(CVE-2024-42599)漏洞复现

环境搭建 使用PHPStudy进行快速搭建 源码下载地址 下载后将文件中的Upload文件夹放入WWW目录下也可以再创建一个文件夹,这里自行创建了一个SeaCMS文件夹,将Upload文件夹放入其中。

thumbnail of the cover of the post

Servlet内存马

前置知识 Tomcat由四大容器组成,分别是Engine、Host、Context、Wrapper。这四个组件是负责关系,存在包含关系。 例如https://manage.xxx.com:8080/user/list的请求过程: JSP代码实现

thumbnail of the cover of the post

Listener内存马

Tomcat版本:10.1.40 Jdk版本:java11 Listener监听器 Listener监听器,常见的监听器: 类型 触发事件

thumbnail of the cover of the post

Emqx后台插件命令执行漏洞

影响版本 漏洞影响版本:5.8.6 版本以前 环境搭建 使用docker进行启动: docker pull emqx/emqx-enterprise:5.5.1 docker run -d --name emqx-enterprise -p 1883:1883 -p 8083:8083 -p 808

thumbnail of the cover of the post

encrypt-labs 明文加签(easy版)

选择明文加签进行登录后,修改密码时就会报类似签名不正确。 先查看原请求包: 修改密码后再进行发送请求:(报签名不正确) 这时如果我们想进行爆破的话就需要知道签名是怎么生成的,这时我们可以定位js提交数据的位置然后设置断点。

thumbnail of the cover of the post