上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: fd Pwn: Reason: 当fd为0的时候代表标准输入,也就是控制台,然后就可以实现buf=="LETMEWIN\n" , 编辑了一下fd.c-->命名为1.c用来测试,gcc编译指令“gcc 1.c -o 1” #include <stdio.h> #include <stdlib.h> # 阅读全文
posted @ 2020-02-18 19:14 东坡肉肉君 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 题解网上其他师傅已经写过了而且写的很详细,菜鸡只好写一下自己做题中的笔记 Payload : #coding:utf-8 from pwn import * context(log_level = 'debug', arch = 'i386', os = 'linux') p=remote('nod 阅读全文
posted @ 2020-02-17 19:30 东坡肉肉君 阅读(825) 评论(1) 推荐(1) 编辑
摘要: 这题算得上是python的使用 破解压缩包: from threading import Thread from unrar import rarfile def CreatePwd(): f = open('passdict.txt', 'w') for id in range(10000): p 阅读全文
posted @ 2020-02-10 21:02 东坡肉肉君 阅读(605) 评论(0) 推荐(0) 编辑
摘要: »2.5基本算法之搜索(36题) 1159:Maze #include<iostream> #include<cstring> #define MAX 22 /* 用dfs会出现先到达终点,但是钥匙没找完的情况 */ using namespace std; int dx[4]={1,-1,0,0} 阅读全文
posted @ 2020-02-08 11:05 东坡肉肉君 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 班级和学生级联显示 班级列表 班级列表可点击 点击之后显示本班的所有学生 要求 路径全都使用反向解析 在学生列表页面添加点击事件 点击学生可以进入学生详情 在详情中,存在删除按钮,点击删除 逻辑删除或物理删除都ok 在学生列表最后面,添加输入窗口,可以添加学生 github地址:https://gi 阅读全文
posted @ 2020-02-02 18:50 东坡肉肉君 阅读(153) 评论(0) 推荐(0) 编辑
摘要: »1.11编程基础之二分查找(10题) 01:查找最接近的元素 #include<iostream> #include<algorithm> #include<cmath> #define MAX 100004 using namespace std; int t[MAX]; int main() 阅读全文
posted @ 2020-02-01 12:31 东坡肉肉君 阅读(986) 评论(0) 推荐(1) 编辑
摘要: »1.8编程基础之多维数组(25题) 上次编辑的时候忘记保存了,前面几题就算了趴懒得 08:矩阵加法 #include<iostream> #define MAX 105 using namespace std; int table[MAX][MAX]; int main() { int n,m; 阅读全文
posted @ 2020-01-31 19:32 东坡肉肉君 阅读(1455) 评论(0) 推荐(0) 编辑
摘要: 字符串: 使用方法修改字符串的大小写: name = 'ada lovalace' print("首字母大写:",name.title()) print("全大写:",name.upper()) print("全小写:",name.lower()) 删除空白: name = ' ada lovala 阅读全文
posted @ 2020-01-24 12:10 东坡肉肉君 阅读(366) 评论(0) 推荐(0) 编辑
摘要: Python3 os.chown() 方法 概述 os.chown() 方法用于更改文件所有者,如果不修改可以设置为 -1, 你需要超级用户权限来执行权限修改操作。 只支持在 Unix 下使用。 语法 chown()方法语法格式如下: os.chown(path, uid, gid); 参数 pat 阅读全文
posted @ 2020-01-24 00:07 东坡肉肉君 阅读(147) 评论(0) 推荐(0) 编辑
摘要: default.php index.php view.html.php helper.php controller.php frontend.php backend.php colorConfig.ini.php config.php router.php view.php search.php u 阅读全文
posted @ 2020-01-22 14:46 东坡肉肉君 阅读(516) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页