参考并感谢 + 官方文档 "https://hub.docker.com/_/mongo" 下载mongo镜像(不带tag标签则表示下载latest版本) 启动 mongodb 容器 PS: + 启动容器之前,需要创建好对应的宿主机的文件目录,宿主机缺少文件会导致容器启动失败 《(八) Docker ...
分类:
数据库 时间:
2019-09-18 00:43:29
阅读次数:
107
信息显示命令 info address info registers info files info functions info line info registers info source info sources info symbol info types info variables i ...
分类:
数据库 时间:
2019-09-11 00:00:51
阅读次数:
149
1. 安装GDB增强工具 (gef) * GDB的版本大于7.7 * wget -q -O- https://github.com/hugsy/gef/raw/master/scripts/gef.sh | sh * 确保网络连通 并且成功更新ubuntu (更新source.list 使用apt- ...
分类:
数据库 时间:
2019-09-09 13:00:26
阅读次数:
117
Python提供类似于C++ gdb的调试工具pdb,我们可以在Linux下使用pdb在命令行下进行Python程序的调试。 官方参考网站: Python2: https://docs.python.org/2/library/pdb.html Python3: https://docs.pytho ...
分类:
编程语言 时间:
2019-09-03 18:10:16
阅读次数:
218
Data Analyst ExercisePlease be prepared to spend 45-60 minutes on this exercise. You will need access acomputer with internet connection and a SQL wor ...
分类:
其他好文 时间:
2019-09-01 20:12:18
阅读次数:
95
攻防世界中此题信息未给全,题目来源为[TWCTF-2016:Reverse] Reverse Box 网上有很多wp是使用gdb脚本,这里找到一个本地还原关键算法,然后再爆破的 https://www.megabeets.net/twctf-2016-reverse-reverse-box/ [TW ...
分类:
其他好文 时间:
2019-09-01 15:02:28
阅读次数:
582
重点是查看进程的线程中,哪个线程占用cpu过高,然后用gdb附加到进程,调试线程,看是否有死循环或者死锁等问题,步骤如下: 1 先用ps + grep找出该死的进程pid,比如 17062 top H p 1706,(top然后shift+H可以看出某个线程,左上角有提示:thread o ...
分类:
系统相关 时间:
2019-08-27 10:43:20
阅读次数:
127
测试文件:https://adworld.xctf.org.cn/media/task/attachments/5d4117b968684b9483d0d4464e0a6fea 这道题要使用到gdb文件调试,gdb调试相关知识:https://www.cnblogs.com/Mayfly-nymph ...
分类:
其他好文 时间:
2019-08-24 09:15:07
阅读次数:
187
No symbol table is loaded. Use the "file" command. gdb 1. 首先使用gcc -g .c文件 -o 可执行文件名 进行编译,再使用gdb + 可执行文件名进入gdb环境,进行调试。 命令如下如: (1) gcc -g test.c -o test ...
分类:
其他好文 时间:
2019-08-19 21:04:47
阅读次数:
84
https://blog.csdn.net/wzhwei1987/article/details/83414218 博主牛逼 如果要装gdb的话直接在MinGW中找到MinGWgdb bin 再下载下来再在cmd中运行 gdb -v就可以了。 (兄弟们我又回来了!!!) ...