- 博客(12)
- 问答 (1)
- 收藏
- 关注
原创 pwn入门教程--0x01(必备知识)
pwn入门教程–0x01(必备知识)• Binary Exploitation• Pwn即Binary Exploitation,就是利用二进制漏洞来达到控制程序的工作流程(Control Flow)• 其目的就在于获得程序的控制权从而来控制程序所在主机• Binary Format即二进制文件的格式,如下:• 在Linux上叫做ELF(Executable and Linking Format)文件• 组成部分分为·rodata:read only data(只读数据)·data:数据节
2021-02-05 18:12:04 1005
原创 pwn入门教程--0x00(准备工作)
pwn入门教程–0x00本教材的题目和教材来自于:Youtube上的NTUSTISChttps://www.youtube.com/channel/UC4-PD2BdlYWd807BhJZkjIg一、准备教程中所用到的题目和exp都可以在下面的网盘链接中拿到网盘链接:https://pan.baidu.com/s/1BOG8ngZ-5_pC3hMarDQO8Q提取码:pwn0教程所用环境:本人用的是kali-linux amd64(因为kali中的工具很全),也可以用ubuntu二、工具安装
2021-02-05 18:10:29 649
原创 pip 【WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, st】问题
问题解决pip install XXXXXXX -i http://pypi.douban.com/simple --trusted-host pypi.douban.comXXXXXXX是你要安装的包
2021-01-19 09:21:00 830
转载 pwn入门教程
Linux pwn入门教程(1)——栈溢出基础URL:https://bbs.ichunqiu.com/forum.php?mod=viewthread&tid=42241&highlight=pwnLinux pwn入门教程(2)——shellcode的使用,原理与变形URL:https://bbs.ichunqiu.com/forum.php?mod=viewthread&tid=42285&highlight=pwnLinux pwn入门教程(3)——ROP技术
2021-01-01 11:46:31 914 2
原创 使用p64()时报错:TypeError: can only concatenate str (not “bytes“) to str
使用p64()时报错:TypeError: can only concatenate str (not “bytes”) to str解决:在后面加上 decode(‘unicode_escape’)如:p64(0x00400596).decode('unicode_escape')
2020-11-28 22:06:04 2015
转载 解决网站禁止复制内容或禁止右键的方法之一
已某文库举例。下面已谷歌浏览器为例。大部分网站通用。选择文字后不管是按CTRL + C 进行复制,或者使用右键点击复制。都是无法复制内容的。第一步:在无法复制的页面按F12,打开谷歌浏览器Google Chrome的开发者工具。第二步:选择Console,在下方输入document.body.contentEditable='true';作用:将页面body内元素全部设置为可编辑状态。第三步:选择内容,剪切(Ctrl + X)即可完成。解除禁止右键javascript:(functi
2020-11-14 21:24:17 1332 2
原创 python中 sys 模块的 sys.stdout 和 sys.stdin 的用法
1. sys.stdoutstdout的作用就相当于是把print输出重定向到另一个位置例如:import sysprint('奥力给')oldPrint = sys.stdout # 用于后期还原# 把输出重定向到文件f=open('outfile.log',"a+") sys.stdout=fprint('给力奥')sys.stdout = oldPrint # 还原输出位置运行结果:‘奥力给’会在屏幕中打印,而给力奥则会输出到outfile.log中,不会打印到屏幕
2020-11-14 20:43:39 6365
原创 python打印程序运行时间
使用time模块,推荐使用time.clock,只计算了改程序运行时间#只计算了程序运行CPU的时间import timestart =time.clock()#中间写代码end = time.clock()print('Running time: %s Seconds'%(end-start))#返回值是浮点数
2020-11-14 20:07:26 2785
原创 python打印当前时间
import timeprint(time.strftime('%H:%M:%S',time.localtime(time.time())))
2020-11-14 19:56:46 161
原创 py报错: UnicodeDecodeError: ‘gbk‘ code can‘t decode byte 0xbf in position 2:illegal multibyte sequence
python读取txt文件时报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xbf in position 2: illegal multibyte sequence这个报错的意思,是当内部编码转化成 gbk编码(默认)时出错,添加编码为utf-8就行了例如:with open('*.txt','r',encoding='utf-8') as file:...
2020-11-14 19:51:55 969 1
空空如也
如何实现网络透传功能
2022-07-10
TA创建的收藏夹 TA关注的收藏夹
TA关注的人