06 2022 档案
springboot 分页插件
摘要:全局配置 旧版本 创建一个配置类 加上注解 @Configuration @Bean public PaginationInterceptor paginationInterceptor(){ PaginationInterceptor paginationInterceptor = new Pag
【报错】Error creating bean with name ‘dataSource‘: Unsatisfied dependency expressed through field
摘要:Error creating bean with name ‘dataSource’: Unsatisfied dependency expressed through field ‘basicProperties’; 新建的springboot项目没有导入这个包 <!-- jdbc--> <dep
Vue 访问路径开启history 模式
摘要:router 里面的index.js配置里面 // 引用 Vue 和路由组件 import Vue from 'vue'; import VueRouter from 'vue-router' // 使用路由组件 Vue.use(VueRouter) // 引入路由页面 import Home fr
【逆向】c++中使用__asm内联汇编
摘要:一条普通的弹出信息框代码: MessageBoxA(NULL, "欢迎", "提示框", MB_OK); 需要是4个参数 #include <windows.h> 需要导入该头文件,因为MessageBoxA函数需要 现在不用这种方式弹出信息框,改用asm汇编方式 使用 __asm{} char s
【逆向】使用CE进行AOB注入修改程序call函数
摘要:准备: 1.CE 2.测试用软件一个 软件每次点击攻击,血量会减少6 开始 先4字节找到血量的地址 当前血量 238,搜索238,攻击一下,血量减少6,搜索232 血量变为232 剩下一个地址就是我们要的。 查看是什么修改了该地址,前面的sub是我们要找的 减值操作 点击显示反汇编代码 我们需要注入
【逆向】使用E语言读写植物大战僵尸阳光
摘要:准备: nb模块5.1 E语言5.9 1.使用指针扫描找出阳光基址 基址:游戏基址+001BA578+18+1C+555C 2.E语言读取阳光的值 pid为全局变量 .版本 2 .支持库 spec .局部变量 阳光地址, 长整数型 pid = 进程一名取PID (“PlantsVsZombies.e
sprinboot url显示本地图片资源
摘要:方式1: 配置文件: spring.mvc.static-path-pattern=/image/** spring.resources.static-locations=file:C:/Users/zwl/Desktop/wxhook/imgs/ 设置本地图片资源路径和请求路径前缀 请求地址: 1