09 2020 档案

摘要:在看一致代码段和非一致代码段的时候,感觉不理解,所以自己动手做了下实验 非一致代码段 在我用3环的非一致代码段的时候,并且用jmp far 0x48:0x401930它是可以跳过去的,如图: 运行前 运行后 可以发现cs从1b变成了4b,就是说rpl为3,在看看段描述符dpl也是3 接下来我们把dp 阅读全文
posted @ 2020-09-25 20:20 PYozo_free 阅读(308) 评论(0) 推荐(0)
摘要:查阅资料: https://www.anquanke.com/post/id/181019#h3-16 https://blog.csdn.net/orbit/article/details/1497457 https://blog.csdn.net/qq_41071646/article/deta 阅读全文
posted @ 2020-09-24 22:16 PYozo_free 阅读(772) 评论(0) 推荐(0)
摘要:最近在写一道BUUCTF的题目[SCTF2019]creakme这道题,查看了wp后,发现是aes加密,便上网查了部分资料 如下: AES加密的五种模式 ECB模式:https://blog.csdn.net/ncncff51131420/article/details/84875851 CBC模式 阅读全文
posted @ 2020-09-24 21:13 PYozo_free 阅读(387) 评论(0) 推荐(0)
摘要:本来是不想写的,但几个月过后,再次翻阅这本书的习题时,发现都是非常基础的东西,很适合来练手 Chapter2: 2.61写一个C表达式,在下列描述的条件下产生1,而在其他情况下得到0。假设x是int类型。A.x的任何位都等于1。B.x的任何位都等于0。C.x的最高有效字节中的位都等于1。D.x的最低 阅读全文
posted @ 2020-09-14 22:26 PYozo_free 阅读(1282) 评论(0) 推荐(0)
摘要:需要注意的点就是不要导入宏,要导入函数名称 话不多说,插入自己的代码 VOID Injection(DWORD Pid, LPSTR DllPath) { HANDLE pro=OpenProcess(PROCESS_ALL_ACCESS, FALSE, Pid); if (!pro) { Mess 阅读全文
posted @ 2020-09-13 19:10 PYozo_free 阅读(250) 评论(0) 推荐(0)
摘要:最近总是遇到这个指令,在百度上查也没看明白,但我先把百度的贴下来 后来我打开od调试,使用了一下这个指令发现,eax,ecx,ebx,edx都会变,便推测这是获取cpu的信息指令,不过由于逆向是一个很严谨又需要大胆的推测,所以我只能猜出一个ecx可能存储的就是处理器是多少位的 执行前: 执行后 阅读全文
posted @ 2020-09-11 23:40 PYozo_free 阅读(212) 评论(0) 推荐(0)
摘要:You are going to be given a word. Your job is to return the middle character of the word. If the word's length is odd, return the middle character. If 阅读全文
posted @ 2020-09-11 16:13 PYozo_free 阅读(308) 评论(0) 推荐(0)
摘要:情景模拟题 假设系统中有两个帐号,分别是alex与arod,这两个人除了自己用户组之外还共同支持一个名为project的用户组。假设这两个用户需要共同拥有/srv/ahmoe/目录的使用权,且该目录不许其他人进入查看。请问该目录的权限设置应该是什么?请以传统权限先说明,再以SGID的功能说明。 目标 阅读全文
posted @ 2020-09-09 11:00 PYozo_free 阅读(197) 评论(0) 推荐(0)
摘要:早期的Uinx系统文件最多允许14个字符,而新的Uinx与linux中,文件名最多可以使用多少个字符? 答: 若我需要更改一个文件的拥有者与用户组,应该用什么命令? 答:chgrp修改文件所属用户组 chown从修改文件拥有者 请问下面的目录主要放置什么数据: /etc/、/boot、/usr/bi 阅读全文
posted @ 2020-09-09 10:36 PYozo_free 阅读(196) 评论(0) 推荐(0)
摘要:In this Kata, you will be given a string that may have mixed uppercase and lowercase letters and your task is to convert that string to either lowerca 阅读全文
posted @ 2020-09-08 18:03 PYozo_free 阅读(265) 评论(0) 推荐(0)
摘要:Description: My grandfather always predicted how old people would get, and right before he passed away he revealed his secret! In honor of my grandfat 阅读全文
posted @ 2020-09-08 17:09 PYozo_free 阅读(239) 评论(0) 推荐(0)
摘要:Your task is to split the chocolate bar of given dimension n x m into small squares. Each square is of size 1x1 and unbreakable. Implement a function 阅读全文
posted @ 2020-09-08 13:21 PYozo_free 阅读(148) 评论(0) 推荐(0)
摘要:Description: Deoxyribonucleic acid (DNA) is a chemical found in the nucleus of cells and carries the "instructions" for the development and functionin 阅读全文
posted @ 2020-09-07 16:49 PYozo_free 阅读(210) 评论(0) 推荐(0)