上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: https://github.com/giantbranch/pwn-env-init giantbranch师傅的github https://blog.csdn.net/weixin_43899764/article/details/106382109 使用的一些tips git时gnutls_ 阅读全文
posted @ 2021-09-20 10:20 ATKevin 阅读(304) 评论(0) 推荐(0) 编辑
摘要: (7条消息) [BUUCTF]PWN21——ciscn_2019_s_3_mcmuyanga的博客-CSDN博客 https://blog.csdn.net/mcmuyanga/article/details/108441737?utm_medium=distribute.pc_relevant.n 阅读全文
posted @ 2021-09-18 15:15 ATKevin 阅读(51) 评论(0) 推荐(0) 编辑
摘要: patchelf更换搜索路径时,将二进制文件先复制到/home/pwn/glibc-all-in-one-master/libs/2.23-0ubuntu11.3_amd64(需要更换的libc文件里),然后在往/home/pwn(用户文件)中复制一份 利用 patchelf --set-inter 阅读全文
posted @ 2021-09-07 20:38 ATKevin 阅读(55) 评论(0) 推荐(0) 编辑
摘要: mprotect函数用于改变内存权限 exp: from pwn import * context.log_level = 'debug' #io = process("./get_started_3dsctf_2016") io = remote("node4.buuoj.cn",28786) e 阅读全文
posted @ 2021-08-20 11:40 ATKevin 阅读(53) 评论(0) 推荐(0) 编辑
摘要: ret2text ida中 x 可以看到那个函数调用了这个函数 ret2shellcode 1.无NX,有rwx 2.有NX 用mprotect函数修改bss权限 https://blog.csdn.net/qq_45691294/article/details/111387593 有时候系统默认开 阅读全文
posted @ 2021-07-21 12:11 ATKevin 阅读(79) 评论(0) 推荐(0) 编辑
摘要: print print(" ") #输出字符串 print(520) print(3+1) 输出到文件里 fp = open('D:/text.txt', 'a+') # 'a+'的意思是如果文件不存在就创建一个并输出,存在的话就在文件里输出一次 print("hello world", file 阅读全文
posted @ 2021-01-27 12:59 ATKevin 阅读(113) 评论(0) 推荐(0) 编辑
摘要: wire wire是一种信号类型,wire 的中文可以翻译为导线,但 Verilog 中的 wire 和现实中的导线不同,wire 应该理解为一个信号。 assign 注意与软件中的赋值操作做区分,Verilog 中的赋值是使用一条带有方向的导线连接了两个信号,所以 left_side 始终等于 r 阅读全文
posted @ 2021-01-16 16:58 ATKevin 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 一.sort函数 1.sort函数包含在头文件为#include<algorithm>的c++标准库中,调用标准库里的排序方法可以实现对数据的排序,但是sort函数是如何实现的,我们不用考虑! 2.sort函数的模板有三个参数: void sort (RandomAccessIterator fir 阅读全文
posted @ 2021-01-15 21:08 ATKevin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-14 20:48 ATKevin 阅读(67) 评论(0) 推荐(0) 编辑
摘要: leetcode 76.最小覆盖子串 https://leetcode-cn.com/problems/minimum-window-substring/submissions/ class Solution { public: string minWindow(string s, string t 阅读全文
posted @ 2021-01-13 21:50 ATKevin 阅读(42) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页