会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天生我材必有用,千金散尽还复来。 仰天大笑出门去,我辈岂是蓬蒿人。 大鹏一日同风起,扶摇直上九万里。 十步杀一人,千里不留行。 事了拂衣去,深藏身与名。 安能摧眉折腰事权贵,使我不得开心颜! 且乐生前一杯酒,何须身后千载名? 愿将腰下剑,直为斩楼兰。
Gudy
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
10
下一页
2019年6月16日
mysql
摘要: 1、打开日志: /etc/my.cnf文件,在[mysqld]下添加 重启服务 on表示打开。 2、查看二进制文件信息:
阅读全文
posted @ 2019-06-16 17:52 gudy
阅读(93)
评论(0)
推荐(0)
2019年6月13日
毛概复习资料spider
摘要: 为了复习,把毛概题库趴下来。 github:https://github.com/xzb123/-spider
阅读全文
posted @ 2019-06-13 23:09 gudy
阅读(195)
评论(0)
推荐(0)
2019年5月22日
pwnable - shollshock
摘要: step by step 漏洞连接: https://www.freebuf.com/articles/system/45390.html 检测到漏洞 换一下命令。
阅读全文
posted @ 2019-05-22 10:19 gudy
阅读(108)
评论(0)
推荐(0)
2019年5月21日
onvif
摘要: https://www.cnblogs.com/big-devil/p/7625752.html
阅读全文
posted @ 2019-05-21 18:48 gudy
阅读(84)
评论(0)
推荐(0)
2019年5月20日
pwnable - mistake
摘要: step by step 提示与运算符优先级有关 问题在这:比较运算符优先级大于赋值运算优先级,这里fd=0,read函数时,实际是在stdin读入数据,也就是我们输入的内容 然后与第二次输入的password异或相同就给flag (注意:这里输入是字符串,异或时也是字符串中字符的最低位改变,不是输
阅读全文
posted @ 2019-05-20 17:57 gudy
阅读(141)
评论(0)
推荐(0)
pwnable - leg
摘要: step by step leg.c: leg.asm: 和汇编有关。 这是arm汇编。 .c文件中看出,要满足条件: lr放到r3,lr存的是函数返回后要执行的指令地址。在这里也就是
阅读全文
posted @ 2019-05-20 17:31 gudy
阅读(233)
评论(0)
推荐(0)
pwnable - input
摘要: step by step https://pwnable.kr/play.php 连接上,查看文件 input.c内容: 看出来,要一关一关通过各种输入,然后可以执行system("/bin/cat flag")。 参考博客:https://r00tk1ts.github.io/2018/03/06
阅读全文
posted @ 2019-05-20 14:49 gudy
阅读(269)
评论(0)
推荐(0)
2019年5月17日
uva 11971
摘要: #include using namespace std; typedef long long ull; ull gcd(ull a,ull b){ if(b == 0) return a; return gcd(b,a%b); } int main(){ ull t,n,k,cnt = 0,temp,a,b,c; cin >> t; ...
阅读全文
posted @ 2019-05-17 17:50 gudy
阅读(134)
评论(0)
推荐(0)
2019年5月15日
uva 11582
摘要: #include typedef unsigned long long ull; using namespace std; ull kmod(ull x,ull n,ull mod){ ull res = 1; if(x == 1 || n == 0) return 1; while(n > 0){ if(n & 1) res = (r...
阅读全文
posted @ 2019-05-15 14:37 gudy
阅读(154)
评论(0)
推荐(0)
2019年4月15日
bof
摘要: 题目给出了一个可执行文件和一个.c文件 打开.c可以看到源程序: 需要让key==0xcafebabe,这里key是子函数的参数,被指定好,需要我们修改才可以成功。 函数调用时栈结构: 函数中有gets函数,可以由我们控制,输出长数据以至覆盖掉key,达到修改key目的。 问题变成需要多长数据? 用
阅读全文
posted @ 2019-04-15 11:55 gudy
阅读(381)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
10
下一页
公告