Python共6篇
Python常用单词-弘客联盟

Python常用单词

Python最常用的单词 20240531164504733-Python常用单词.xlsx下载xlsx文件18.8K 
王浩宇的头像-弘客联盟王浩宇3个月前
0667
画红心程序-弘客联盟

画红心程序

#写一个画爱心程序 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...
狼毛的头像-弘客联盟狼毛1年前
0988
转-靶机精讲之Brainpan1-弘客联盟

转-靶机精讲之Brainpan1

靶机精讲之Brainpan1,详细讲解缓冲区溢出漏洞的识别、重现,讲解定位eip、寄存器扩容、坏字节识别、jmp esp定位,payload生成等细节技术,从零开始手工编写漏洞利用代码,详细讲解编译器Immuni...
写一段隐写术测试代码,将字符串ABC写入可执行文件二-弘客联盟

写一段隐写术测试代码,将字符串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...
狼毛的头像-弘客联盟狼毛1年前
0879
写一段封指定ip的程序二-弘客联盟

写一段封指定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...
狼毛的头像-弘客联盟狼毛1年前
0665
写一段监控网络的程序二-弘客联盟

写一段监控网络的程序二

#写一段监控网络的程序 import psutil import os import time import datetime def net_monitor(): while True: print('=' * 50) print(datetime.datetime.now()) print(f'磁盘使用率为{psutil....
狼毛的头像-弘客联盟狼毛1年前
0899