C语言格式化漏洞 Posted on 2018-10-29 | Post modified: 2018-10-29 | Visitors: Words count in article: 2,750 格式化字符串漏洞实验 在线实验环境:格式化字符串漏洞实验 文章转载自:https://github.com/shiyanlou/seedlab/blob/master/formatstring.md 一、 实验描述格式化字符串漏洞是由像printf(user_input)这样的代码引起的,其中us ... Read more »
10年後の私へ Posted on 2018-10-19 | Post modified: 2018-10-19 | Visitors: Words count in article: 0 Read more »
ubuntu重置密码出现的问题 Posted on 2018-02-23 | Post modified: 2018-02-23 | Visitors: Words count in article: 111 忘记ubuntu的密码之后,按照网上的一般方式进入recovery mode,然后选择drop to root shell prompt,但是进去之后提示Give root password for maintenance (要输入密码,可是自己就是要通过这种方式找回密码的),网上找了许久,发现以下 ... Read more »
利用vps搭建ss服务器 Posted on 2018-02-22 | Post modified: 2018-02-23 | Visitors: Words count in article: 253 参考别人的文件发现搭建一个ss(shadowsocks)服务器是很简单的,利用vps(virtual private server)就可以,此文以 vultr的vps为例: 注册账号,然后充值(支持支付宝) 然后点击Servers,再点击图片中的加号添加服务器 之后就是登录服务器部署,登录之前先 ... Read more »
hexo搭建博客中出现的问题以及解决方法 Posted on 2017-12-20 | Post modified: 2017-12-20 | Visitors: Words count in article: 72 hexo对html的table标签不兼容写文章时使用html的table做表格会发现文章被渲染出多个<br>,导致表格与其前面有很多空白的地方,十分不美观, 解决方法: 在hexo目录下_config.yml添加 123marked: gfm: true break: fal ... Read more »
爬虫学习 Posted on 2017-12-19 | Post modified: 2018-02-10 | Visitors: Words count in article: 459 Python2.X和Python3.X调用urllib库常见的变化 Python2.X Python3.X import urllib2 import urllib.request,urllib.error import urllib import urllib.request,ur ... Read more »
函数与栈 Posted on 2017-12-04 | Post modified: 2017-12-04 | Visitors: Words count in article: 727 程序使用栈内存来记住函数返回的位置,每一个c程序都由栈控制其函数执行的流程。几乎所有计算机编程语言都采用这个方案。 栈的调用规则①当一个函数被调用时,这条调用之后的行编号就被压入调用栈。这个行编号就是“返回位置”(RL),这是在调用函数结束后(即返回)之后程序继续执行的地方。 ②如果相同的函数在不同 ... Read more »
寄存器与指令 Posted on 2017-10-19 | Post modified: 2018-03-14 | Visitors: Words count in article: 312 最近看汇编语言,顺便整理一下学了的指令以及寄存器,后面会逐步整理整理完善 寄存器(register)通用寄存器(General Purpose Registers,8个)通用寄存器是一种通用型寄存器,用于传送和暂存数据,也可以参与算术逻辑运算,并保存运算结果。 table th:firs ... Read more »
linux Posted on 2017-10-14 | Post modified: 2017-10-14 | Visitors: Words count in article: 749 ## Directories Found On Linux Systems Directory Comments / The root directory. Where everything begins. /bin Contains binaries (programs) that ... Read more »
hello world Posted on 2017-08-05 | Post modified: 2017-09-08 | Visitors: Words count in article: 9 I’m new here.This is my first article. Read more »