python
pwd_3
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python的socket编程
client of TCP # coding: utf-8 from socket import* HOST='127.0.0.1' PORT=44444 #建立socket对象 client=socket(AF_INET,SOCK_STREAM) #AF_INET表示将使用标准的ipv4地址或主机名 #SOCK_STREAM说明这是一个TCP客户端 client.connect((原创 2016-04-03 22:59:18 · 563 阅读 · 0 评论 -
pwnable之codemap
pwnable之codemap题目made by YourButterfly I have a binary that has a lot information inside heap. How fast can you reverse-engineer this? (hint: see the information inside EAX,EBX when 0x403E65 is execute原创 2017-07-21 11:53:35 · 775 阅读 · 0 评论
分享