在ubuntu下安装应用程序的时候总是提示 解决办法输入: sudo dpkg configure a ...
分类:
系统相关 时间:
2020-05-18 14:22:12
阅读次数:
110
下载附件后,就是一个可执行文件,经查壳后,没发现有壳!呃,先执行下可执行文件,结果如下: 乱按一通,发现直接闪退啦,拖到IDA(32bits)进行反编译分析,F5进入主函数,发现 while ( 1 ) { puts("you can choose one action to execute"); ...
分类:
其他好文 时间:
2020-05-18 00:45:37
阅读次数:
113
dmg 转 cdr 1、打开dmg,拖拽到 应用程序 中 2、创建一个大小比app镜像大约大500M的dmg镜像hdiutil create -o /tmp/Install_macOS_Catalina -size 8700m -layout SPUD -fs HFS+J 3、挂载刚刚创建的dmg镜 ...
分类:
系统相关 时间:
2020-05-18 00:40:43
阅读次数:
157
报错: The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver ...
分类:
数据库 时间:
2020-05-17 16:12:10
阅读次数:
192
先查壳: 无壳,跑一下看看: 没有输入的地方,根据这句"Can you find me?"我们大致推测,数据是被藏起来了,通过正常手法应该找不到。 拖进IDA看看,main函数并没什么用。 打开strings窗口看看,挨个点了一圈也没什么有用的数据。 最后在这个_ques函数里面找到了: 分析一波,... ...
分类:
其他好文 时间:
2020-05-17 13:24:41
阅读次数:
68
参考: If you want to keep Spring Boot MVC features and you want to add additional MVC configuration (interceptors, formatters, view controllers, and oth ...
分类:
编程语言 时间:
2020-05-17 01:33:09
阅读次数:
91
题意描述 给定一个非负整数数组,找出其中累加和的最大值,并且相邻元素不能进行累加。 测试用例 Input: [1,2,3,1] Output: 4 Explanation: Total amount you can rob = 1 + 3 = 4. Input: [2,7,9,3,1] Output ...
分类:
其他好文 时间:
2020-05-17 01:20:57
阅读次数:
63
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2020-05-17 01:18:46
阅读次数:
53
练习要求: 1.1搭建项目(ubuntu): 终端操作(搭建前端项目): cd ./Desktop //进入桌面 moluo@ubuntu:~/Desktop$ mkvirtualenv homework //创建虚拟环境 (homework) moluo@ubuntu:~/Desktop$ mkd ...
分类:
其他好文 时间:
2020-05-16 16:33:57
阅读次数:
61
Design a data structure that supports the following two operations: void addWord(word) bool search(word) search(word) can search a literal word or a r ...
分类:
其他好文 时间:
2020-05-16 10:40:41
阅读次数:
67