c 第4页

把Deepin塞进U盘,即插即用,小白都懂的Linux To Go教程

把Deepin塞进U盘,即插即用,小白都懂的Linux To Go教程-弘客联盟
上一篇我们讲了如何制作WinToGo的教程,那么我们今天就来讲讲LinuxToGo的教程。 安装准备 1.U盘/硬盘 我们需要准备两个U盘/硬盘(注意 !!!其中一个盘需要8G以上,用来存放Linux镜像,对速度...
入戏太深的头像-弘客联盟入戏太深3年前
03117

写一段隐写术测试代码,将字符串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...
狼毛的头像-弘客联盟狼毛3年前
01089

写一段隐写术测试代码,将字符串ABC写入可执行文件

//写一段隐写术测试代码,将字符串ABC写入可执行文件 #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { FILE *fp; char *str = 'ABC'; if((fp =...
狼毛的头像-弘客联盟狼毛3年前
0729

写一个usb的案例程序,插入U盘给个提示

//写一个usb的案例程序,插入U盘给个提示 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <...
狼毛的头像-弘客联盟狼毛3年前
011715

写一个挖掘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