c 第8页

如何登录您的Linux云服务器并安装宝塔面板

如何登录您的Linux云服务器并安装宝塔面板-弘客联盟
如果您不想自己登录服务器做繁琐的安装操作,在下方图片指引中,直接输入服务器的登录资料即可在线一键安装宝塔面板,全自动安装无需任何人为操作。系统兼容性顺序:Centos7.x > Debian10 &g...
情观音的头像-弘客联盟情观音3年前
08911

华为Meta9手机使用adb的方法

华为Meta9手机使用adb的方法-弘客联盟
我在华为Meta9下设置的adb能用。。。 1、点一下设置,在搜索框里输入hdb.点击允许通过HDB连接设备。将选项选上。。。 2、在设置界面向下拉。点击系统----关于手机--在版本号数字上点七下,就...
狼毛的头像-弘客联盟狼毛3年前
0896

写一段封指定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

转-靶机精讲之Brainpan1

靶机精讲之Brainpan1,详细讲解缓冲区溢出漏洞的识别、重现,讲解定位eip、寄存器扩容、坏字节识别、jmp esp定位,payload生成等细节技术,从零开始手工编写漏洞利用代码,详细讲解编译器Immuni...
狼毛的头像-弘客联盟狼毛3年前
08110

一文看懂误植域名的威胁和对策

一文看懂误植域名的威胁和对策-弘客联盟
        你熟悉“误植域名”(typosquatting)这个术语吗?这是一种域名抢注,可能会损害你的品牌和声誉。我们在这篇博文中将探讨误植域名是什么、它与域名抢注的区别,并...
HUC-ChenXi的头像-弘客联盟HUC-ChenXi3年前
07310

strings工具

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

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

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

写一段封指定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

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

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