分类
排序
转-靶机精讲之Brainpan1
靶机精讲之Brainpan1,详细讲解缓冲区溢出漏洞的识别、重现,讲解定位eip、寄存器扩容、坏字节识别、jmp esp定位,payload生成等细节技术,从零开始手工编写漏洞利用代码,详细讲解编译器Immuni...
写一段监控网络的程序二
#写一段监控网络的程序 import psutil import os import time import datetime def net_monitor(): while True: print('=' * 50) print(datetime.datetime.now()) print(f'磁盘使用率为{psutil....
写一段隐写术测试代码,将字符串ABC写入可执行文件二
#写一段隐写术测试代码,将字符串ABC写入可执行文件 import os if __name__ == '__main__': path = os.getcwd() with open(path + '/test.py', 'w') as f: f.write('ABC') os.system('python tes...
画红心程序
#写一个画爱心程序 import turtle as t t.pensize(2) t.color('red') t.begin_fill() t.left(140) t.forward(180) t.circle(-90,200) t.setheading(60) t.circle(-90,200) t.forward(180) t.end...
论一只木马的自我修养(一)
免责声明本人于本论坛分享的技术均基于学术交流与技术探讨目的,旨在促进网络安全技术发展及行业进步。禁止非法用途:所有内容严禁用于任何违反法律法规、破坏网络安全或侵害他人合法权益的行为...
写一段封指定ip的程序二
#写一段封指定ip的程序 import socket import struct import struct import binascii def ip2int(ip): return struct.unpack('!I', socket.inet_aton(ip))[0] def int2ip(i): return socket.ine...