干货分享 第6页
提供各种资源干货分享。

web安全基础(1)揭秘黑客钓鱼网站的制作

web安全基础(1)揭秘黑客钓鱼网站的制作-弘客联盟
钓鱼网站的实验,我的目标是监听对方键盘且输入账号密码后自动跳转正常的网页(如:某邮箱某网站的客户登录界面,输入账号密码后记录,且跳转) 1、搭建环境 先在kali(服务器)上下载phpstudy...
蜂鸟的头像-弘客联盟蜂鸟3年前
03157

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

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

写一段隐写术测试代码,将字符串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年前
01049

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

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

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