Splendid_MineCraft 题目标题就已经暗示这题是SMC了(self-modifying code)。 工具:exeinfo,x32dbg和IDA7.0 先丢进exeinfo里查看相关信息: 用IDA打开: 根据可以字符串“Wrong!\n”直接锁定sub_401080为main函数。 ...
分类:
其他好文 时间:
2020-10-26 11:52:23
阅读次数:
27
一、分页查询 因为PagingAndSortingRepository,我们总是可以传入Sort和Pageable对查询结果进行排序和分页(支持命名查询、Example查询和Query查询)。 // 当查询方法中有多个参数的时候,Pageable/Sort建议做为最后一个参数传入 @Query("s ...
分类:
编程语言 时间:
2020-07-22 11:10:55
阅读次数:
237
Given an array nums with n integers, your task is to check if it could become non-decreasing by modifying at most 1 element. We define an array is non ...
分类:
其他好文 时间:
2020-07-15 01:12:51
阅读次数:
60
Reverse String (E) 题目 Write a function that reverses a string. The input string is given as an array of characters char[]. Do not allocate extra space ...
分类:
其他好文 时间:
2020-06-27 10:04:20
阅读次数:
50
JPA 使用@Query注释更新数据库 @Transactional @Modifying(clearAutomatically = true) @Query(value ="update user set gender=:gender,phone=:phone,email=:email,updat ...
分类:
编程语言 时间:
2020-06-23 19:34:28
阅读次数:
52
During my time with Zotero, I've really enjoyed its various features and the 300MB of file sync space is able to be extended by modifying the path to ...
博客转自:http://www.lighthouse3d.com/tutorials/glut-tutorial/modifying-a-menu/ 有些状况下,需要修改菜单。GLUT允许我们修改和删除菜单输入。切换菜单输入 void glutChangeToMenuEntry(int entry, ...
分类:
其他好文 时间:
2020-05-23 00:39:09
阅读次数:
63
Problem : Given a sorted array nums, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate ...
分类:
其他好文 时间:
2020-03-26 01:03:12
阅读次数:
78
SpringData系列四 @Query注解及@Modifying注解 https://www.cnblogs.com/zhaobingqing/p/6864223.html ...
分类:
编程语言 时间:
2019-12-11 17:30:42
阅读次数:
71
@Query注解查询适用于所查询的数据无法通过关键字查询得到结果的查询。这种查询可以摆脱像关键字查询那样的约束,将查询直接在相应的接口方法中声明,结构更为清晰,这是Spring Data的特有实现。 索引参数与命名参数 1、索引参数如下所示,索引值从1开始,查询中"?X"个数需要与方法定义的参数个数 ...
分类:
编程语言 时间:
2019-12-07 00:55:07
阅读次数:
117