c 第4页

写一个挖掘linux系统里堆溢出的程序

//写一个挖掘linux系统里堆溢出的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #define ERR_EXIT(m) \ do \ { \ perror(m);...
狼毛的头像-弘客联盟狼毛3年前
0455

挖掘linux系统程序里栈溢出的程序(来自AI)

//挖掘linux系统程序里栈溢出的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <s...
狼毛的头像-弘客联盟狼毛3年前
04914

strings工具

查找程序中unicode字符串的程序。观察病毒木马必备,windows下使用。 90ed975967102826.zip下载zip文件534.7K来自:https://learn.microsoft.com/en-us/sysinternals/downloads/strings
狼毛的头像-弘客联盟狼毛3年前
07311

写一段封指定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...
狼毛的头像-弘客联盟狼毛3年前
0855

写一段封指定ip的程序

// 写一段封指定ip的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet...
狼毛的头像-弘客联盟狼毛3年前
06511

写一段对pe文件分析的程序(仅供参考,来自AI)

// 写一段对pe文件分析的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h...
狼毛的头像-弘客联盟狼毛3年前
0537

写一段vmp3.0脱壳的程序(来自AI)

// 写一段vmp3.0脱壳的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h&g...
狼毛的头像-弘客联盟狼毛3年前
08815

写一段监控网络的程序二

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

写一段监控网络包的程序

// 写一段监控网络包的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <arpa/ine...
狼毛的头像-弘客联盟狼毛3年前
09714

黑客最常用的10款黑客工具

黑客最常用的10款黑客工具-弘客联盟
注意: 以下所有这些工具都是捆绑在一起的Linux发行版,如Kali Linux或BackBox,所以我们一定会建议您安装一个合适的Linux黑客系统,使您的生活更轻松 - 尤其是因为这些黑客工具可以(自动)更...
入戏太深的头像-弘客联盟入戏太深3年前
6464627