上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 124 下一页
摘要: hd study objdum -D study readelf -X study X可以是(h, l, S, g, t, e, s)等,前两者差不多,只不过是前者更加真实,后者更加容易理解而已。后面的就可以分块了。 阅读全文
posted @ 2023-12-31 18:06 叕叒双又 阅读(17) 评论(0) 推荐(0)
摘要: address:https://www.opensourceforu.com/2020/02/understanding-elf-the-executable-and-linkable-format/ Whenever we compile any code, the output that we 阅读全文
posted @ 2023-12-31 18:03 叕叒双又 阅读(63) 评论(0) 推荐(0)
摘要: 话不多说,直接上代码,为了验证elf的,编了了示例代码study.c 1 #include <stdio.h> 2 3 #define NUMBER_1 1 4 #define NUMBER_2 2 5 6 int main(int argc, char **argv) 7 { 8 int a; 9 阅读全文
posted @ 2023-12-30 21:39 叕叒双又 阅读(17) 评论(0) 推荐(0)
摘要: 代码如下program8_6.c: 1 #include <stdio.h> 2 3 int a = 0x55555555; 4 int b = 0x66666666; 5 int c = 0x77777777; 6 int d = 0x88888888; 7 8 int main() 9 { 10 阅读全文
posted @ 2023-12-30 17:52 叕叒双又 阅读(209) 评论(2) 推荐(0)
摘要: 使用命令readelf -l /usr/bin/chmod,结果: Elf file type is DYN (Position-Independent Executable file) Entry point 0x41e0 There are 13 program headers, startin 阅读全文
posted @ 2023-12-30 17:08 叕叒双又 阅读(31) 评论(0) 推荐(0)
摘要: 1 主要包括如下程序: sudo apt install lolcat aewan cowsay jp2a linuxlogo neoftechfortune pv cmatrix cbonsai 2 fortune:人们喜欢阅读随机的预测或说法,该工具用来缓解无聊的时光。 上边是没有lolcat的 阅读全文
posted @ 2023-12-30 11:24 叕叒双又 阅读(69) 评论(0) 推荐(0)
摘要: ffmpeg -i input.mp4 output.gif 输入文件:input.mp4,不止这种,可以是其他视频文件 输出文件:output.gif 阅读全文
posted @ 2023-12-30 10:48 叕叒双又 阅读(19) 评论(0) 推荐(0)
摘要: plugin=org.kde.plasma_applet_dict https://develop.kde.org/docs/plasma/scripting/keys/ org.kde.plasma_applet_dict General dictionary: (String, default: 阅读全文
posted @ 2023-12-29 15:48 叕叒双又 阅读(8) 评论(0) 推荐(0)
摘要: 前提条件就是已经安装了zotero软件。 1 下载zotero的翻译插件,网络可以的童鞋到这里下载,至于怎么才能下载,自己解决吧。 https://github.com/windingwind/zotero-pdf-translate/releases/tag/v1.0.25 2 安装插件,菜单中工 阅读全文
posted @ 2023-12-29 10:09 叕叒双又 阅读(5237) 评论(0) 推荐(0)
摘要: 我用的播放器是smplayer,快捷键设置如下: 播放列表上一个:Z 播放列表下一个:N 静音 :M 音量增 :. 音量减 :, 播放时间减一分 :X 播放时间增一分 :B 播放速度减半速 :V 播放速度真常 :A 播放列表 :/ 播放全屏 :F 播放/暂停 :空格 播放速度加半速 :C 截屏 :S 阅读全文
posted @ 2023-12-29 10:03 叕叒双又 阅读(48) 评论(0) 推荐(0)
摘要: 1 sudo apt remove plasma-dataengines-addons 2 sudo apt autoremove 3 sudo pkcon update 阅读全文
posted @ 2023-12-29 07:17 叕叒双又 阅读(21) 评论(0) 推荐(0)
摘要: 修改.bashrc文件即可 #PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' PS1='${debian_chroot:+($debia 阅读全文
posted @ 2023-12-28 14:41 叕叒双又 阅读(31) 评论(0) 推荐(0)
摘要: 原文链接:https://arvinhk.com/post/8.html 原文链接:https://arvinhk.com/post/8.htmlCString str; unsigned long s1,s2,s3,s4; __asm { mov eax,00h xor edx,edx cpuid 阅读全文
posted @ 2023-12-27 18:22 叕叒双又 阅读(80) 评论(0) 推荐(0)
摘要: 先看代码: 这里为了排版方便用的图片,也有行号,说明如下: 1. 80386的部分机器码如下: 其中 imm表示立即数 DDD表示用3位表示的目的寄存器标号, SSS表示用3位表示的源寄存器标号 机器码中将寄存器用三位表示,例如EDX: 010 EAX: 000 ECX: 001 因此,图中第三行代 阅读全文
posted @ 2023-12-27 18:19 叕叒双又 阅读(245) 评论(0) 推荐(0)
摘要: 1 github在2024年必须开启2AF认证,否则就不能用了,跟着向导进行,到扫描二维码的部分停下 2 安装个微软的authenticator APP扫描二维码后,输入扫描二维码后的密码即可 3 保存认证回复的恢复码,即可 可以看看:https://zhuanlan.zhihu.com/p/673 阅读全文
posted @ 2023-12-27 16:36 叕叒双又 阅读(255) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 124 下一页