2023-03-11 21:07:57 17KB lib cap
1
能解析cap文件并发送原始数据报文,并进行统计 片段: static int send_init(socket_message_t *socket_msg, char *dev_name) { memset(&socket_msg->addr, 0, sizeof(struct sockaddr_ll)); if(-1 == (socket_msg->sd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_IP)))){ //创建套接字 SOCK_RAW为原始套接字 return -2; } socket_msg->addr.sll_ifindex = inject_pkt_interface_index(socket_msg->sd, dev_name); //获取eth0接口的序号 if(socket_msg->addr.sll_ifindex < 1) { return -3; } return 0; }
2023-01-13 16:06:52 11KB 发送 linux 数据包 cap
1
一个非常经典的密码学验证工具。虽然比较旧,但仍然很有用。几乎可以验证现代密码学中所有的密码学方案,如古典密码、公钥密码、对称密码等。此外还有一些小工具。
2022-12-12 14:00:50 5.15MB 密码学 实验 工具
1
华硕p9x79ws支持M2 PCIe转Nvme启动的BIOS,主要测试三星常规存储,可以有效支持目前的最新CPU,使用前建议备份原来bios里面的内容,建议用编写工具直接烧入,usb flash 有时不能用。
2022-12-11 21:42:01 8MB 华硕 x79
1
wifi破解——近源攻击 近源攻击,在攻防演练期间,攻击队队员使用无人机悬停监听技术,成功抓取到了某核电办公网络的Wifi握手包,现在正在进行紧张的破解,你能破解该密码吗? 据得到的信息显示,该办公室设置的密码比较简单,可能是wifi名字和弱口令的组合。flag格式: flag{} + 密码 例如: flag{12345678}
2022-10-23 20:23:12 627KB CTF wifi aircrack-ng
1
目录 Wireshark抓包全集(85种协议、类别的抓包文件) R1_to_R2.cap R1_to_R3.cap R1_to_R4.cap R3_to_R4.cap 802.1D_spanning_tree.cap 802.1Q_tunneling.cap 3560_CDP.cap BGP_notification.cap EIGRP_adjacency.cap ......
2022-10-21 09:05:10 19.33MB HCIE-Security
ping命令cap-set-proc报错.不允许的操作
2022-10-17 19:00:43 15KB ping
1
CaP Dataset 是被用于磁共振成像 MRI 诊断和判定前列腺癌的数据集。
2022-07-13 11:05:10 400.83MB 数据集
Spanner is Google’s highly available global SQL database [CDE+12]. It manages replicated data at great scale, both in terms of size of data and volume of transactions. It assigns globally consistent real-time timestamps to every datum written to it, and clients can do globally consistent reads across the entire database without locking. This leads to three kinds of systems: CA, CP and AP, based on what letter you leave out. Note that you are not entitled to 2 of 3, and many systems have ...
2022-07-12 20:05:18 150KB 数据库 Spanner CAP TrueTime
1
DB - Consistency Tradeoffs in Modern Distributed Database System Design The CAP theorem’s impact on modern distributed database system design is more limited than is often perceived. Another tradeoff—between consistency and latency —has had a more direct influence on several well-known DDBSs. A proposed new formulation, PACELC, unifies this tradeoff with CAP.
2022-07-11 14:07:34 562KB 数据库 CAP 分布式一致性协议
1