- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在编写一个发送 arp 请求的小程序,该程序似乎可以工作,因为 wireshark 捕获了数据包,但有一些奇怪的地方;首先,目标主机没有收到数据包(我没有收到任何响应,甚至在目标上运行 wireshark 也没有显示任何内容),其次,数据包似乎包含与程序插入数据包本身的信息不同的信息。我更好地解释了自己:数据包应该有带有目标 mac 地址、源 mac 地址和协议(protocol)类型的以太网 header ,然后是 arp header 。 wireshark 无法识别 arp header ,它也显示了一些不同的东西而不是以太网 header ,我不明白为什么。有人可以帮帮我吗?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <net/ethernet.h>
#include <netpacket/packet.h>
#include <ifaddrs.h>
#define TRUE 1
/* in the arp header structure defined in the linux header files access to certain fields is prohibited
* so we define our own ARP packet with all the fields needed to send an ARP spoofed packet */
struct arp_packet{
unsigned char h_dest[ETH_ALEN]; /* destination ETH address (MAC address) */
unsigned char h_source[ETH_ALEN]; /* source ETH address (MAC address) */
unsigned short h_proto; /* packet protocol: ETH_P_ARP */
unsigned short ar_hrd; /* format of hardware address: ARPHDR_ETHER */
unsigned short ar_proto; /* format of protocol address: ETH_P_IP */
unsigned char ar_hlen; /* length of hardware address: 6 */
unsigned char ar_plen; /* length of protocol address: 4 */
unsigned short ar_op; /* type of ARP packet: ARPOP_REQUEST */
unsigned char ar_senderHaddr[ETH_ALEN]; /* sender MAC address */
unsigned char ar_senderIP[4]; /* sender IP address */
unsigned char ar_targetHaddr[ETH_ALEN]; /* target MAC address */
unsigned char ar_targetIP[4]; /* target IP address */
};
void mac_parser(char *mac_address, unsigned char *dest);
int main(int argc, char **argv){
/* for the following structure we need to fill the following fields
* sll_family: PF_PACKET
* sll_addr: MAC address of receiver
* sll_halen: ETHER_ADDR_LEN
* sll_ifindex: interface index number */
struct sockaddr_ll ll1 = {0}, ll2 = {0};
/* socket descriptor */
int fd;
/* structure for ioctl */
struct ifreq ifr = {0};
/* structure for getifaddrs */
struct ifaddrs *ifaddr, *ifa;
/* arp packets */
struct arp_packet A;
/* ip addresses */
struct in_addr A_ip, B_ip;
struct hostent *host;
if(argc < 3){
fprintf(stderr, "Usage: %s <IP address of host A> <MAC of host A> <IP address of host B> <MAC address of host B>\n", argv[0]);
exit(1);
}
/* access the data link layer with PF_PACKET */
if((fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ARP))) == -1){
fprintf(stderr, "%s\n", strerror(errno));
exit(2);
}
/* get a valid interface to use */
if(getifaddrs(&ifaddr) == -1){
fprintf(stderr, "%s\n", strerror(errno));
exit(3);
}
for(ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next){
if(ifa->ifa_flags & IFF_UP){
if(ifa->ifa_flags & IFF_RUNNING){
if(strcmp(ifa->ifa_name, "lo")){
strcpy(ifr.ifr_name, ifa->ifa_name);
break;
}
}
}
}
/* get the interface index number */
if(ioctl(fd, SIOCGIFINDEX, &ifr) == -1){
fprintf(stderr, "%s\n", strerror(errno));
exit(4);
}
/* Put ip addresses in the network format */
if((host = gethostbyname(argv[1])) == NULL){
fprintf(stderr, "%s\n", strerror(errno));
exit(5);
}
A_ip = *(struct in_addr *)host->h_addr;
printf("%s - %s\n", argv[1], inet_ntoa(A_ip));
if((host = gethostbyname(argv[3])) == NULL){
fprintf(stderr, "%s\n", strerror(errno));
exit(6);
}
B_ip = *(struct in_addr *)host->h_addr;
/* fill lls structures */
ll1.sll_family = PF_PACKET;
ll1.sll_halen = ETHER_ADDR_LEN;
ll1.sll_ifindex = ifr.ifr_ifindex;
mac_parser(argv[2], ll1.sll_addr);
/* fill arp_packets */
memcpy(A.h_dest, ll1.sll_addr, ETH_ALEN);
mac_parser(argv[4], ll2.sll_addr);
memcpy(A.h_source, ll2.sll_addr, ETH_ALEN);
A.h_proto = htons(ETH_P_ARP);
A.ar_hrd = htons(ARPHRD_ETHER);
A.ar_proto = htons(ETH_P_IP);
A.ar_hlen = 6;
A.ar_plen = 4;
A.ar_op = htons(ARPOP_REQUEST);
memcpy(A.ar_senderHaddr, A.h_source, ETH_ALEN);
memcpy(A.ar_targetHaddr, A.h_dest, ETH_ALEN);
memcpy(A.ar_senderIP, &B_ip, 4);
memcpy(A.ar_targetIP, &A_ip, 4);
A.pool = 0;
/* send packets in a loop */
while(TRUE){
if(sendto(fd, &A, sizeof(A), 0, (struct sockaddr *)&ll1, sizeof(ll1)) == -1){
fprintf(stderr, "%s\n", strerror(errno));
exit(6);
}
sleep(1);
}
return 0;
}
void mac_parser(char *mac_address, unsigned char *dest){
unsigned transition;
int i = 0;
char *token = strtok(mac_address, ":");
while(token){
sscanf(token, "%x", &transition);
dest[i] = (unsigned char)transition;
token = strtok(NULL, ":");
i++;
}
}
这是wireshark截图
最佳答案
将线路上数据包的“数据”部分与 ARP 数据包示例进行比较,您可以验证所有必要的字节实际上都已就位。问题发生在帧的以太网 header 中,其中协议(protocol)标识符是 0x0000 而不是 0x0806。这就是为什么 Wireshark 甚至不尝试将数据包解码为 ARP,而是将其显示为原始数据。
看起来您错过了 ll1
的部分初始化。添加此行似乎可以解决问题:
ll1.sll_protocol = htons(ETH_P_ARP);
关于c - 未收到 ARP 请求,wireshark 无法读取 arp header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53119883/
我在让“@header”或任何其他@规则在ANTLR中工作时遇到麻烦。具有非常基本的语法,如下所示: grammar test; options { language = CSharp2;
我对来源和寄宿有疑问 我有一个ajax页面“Page A”,它将称为ajax提要“Page B” 我看到来自ajax调用的“页面B”的请求 header 具有源“http://mydomain.com
我在 pandas 中使用了数据透视表并获得了所需的数据框格式,但现在我有两行标题。数据透视表后的结果数据框如下: scenario Actual Plan
我在 pandas 中使用了数据透视表并获得了所需的数据框格式,但现在我有两行标题。数据透视表后的结果数据框如下: scenario Actual Plan
我想在主机将它们发送到网络之前修改数据包头(IP 头、TCP 头)。 例如,如果我使用 firefox 进行浏览,那么我想拦截所有来自 firefox 的数据包并修改 IP/TCP header ,然
我的 header 内容被包装到#header 中,但是当我设置边框显示结构时,它显示我的#header 的内容出现在#header 本身之后。可能是什么问题?这是我的代码: #header { bo
我是一名 Web 开发人员,使用过 PHP 和 .NET。有一年多的 Web 工作经验,我一直无法彻底了解浏览器缓存功能,希望这里的 Web Gurus 可以帮助我。我心中的问题是: 浏览器实际上是如
伙计们,我有一个问题,我不知道如何在一个 header 中连接多个 header ,我们称它为“主 header ”并使用该 header 中的函数,例如 // A.h #include class
我有一个包含 SOAP 消息的 XMLHTTPRequest。 我想添加用于标识消息并将由 C# Web 服务使用的 guid。 GUID 的目标是识别特定用户,并应护送所有用户请求以在服务器上进行身
我一直在阅读粘性标题,这是我目前所发现的。第一个粘性 header 效果很好,但是当它遇到第一个 header 时,我如何向上滚动第一个 header 并使第二个 header 卡住? http://
我想将当前基于 TableView 的数据网格转换为新的 UICollectionView 类。 这就是我当前的网格的样子: 我的网格有两个标题: 年份(2006a、2007a 等)和 类型(“收入”
我目前正在使用 Apollo 服务器。我正在尝试在响应 header 中设置一个属性。并且此属性是从客户端 graphQL 请求 header 中检索的。 我在网上查了一下。并看到了诸如使用插件或扩展
我的 Controller 的方法需要设置一个标题,例如X-Authorization .创建新对象( store Action )后,我执行转发以显示新创建的对象( show Action ): $
我正在研究一些关于 VLAN 的事情,发现了 VLAN 标签 和 header 。 如果我们有标准 802.3 以太网帧 的 MTU(1518 字节), header 802.3 中包含什么? 另外,
我是放心和 Java 的新手,我正在尝试做一个非常基本的测试来检查 API 的响应是否为 200 ok。 谁能告诉我我需要在下面的脚本中更改什么才能传递多个 header Id、Key 和 ConId
在我的项目中,我需要知道 zlib header 是什么样的。我听说它相当简单,但我找不到 zlib header 的任何描述。 例如,它是否包含魔数(Magic Number)? 最佳答案 zlib
我正在使用 JMeter 测试 HTTP 服务器,该服务器接受并验证 APIKey 并在成功时返回一个有时限的 token 。如果我有 token ,我想发送一个 token ;如果没有,我想发送一个
以太网 header 是什么样的? 是吗: 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|
我们的应用程序支持 CORS 配置 header 。我在两个不同的主机上分别配置了 testApp。两种设置都相互独立工作。host1 上的应用程序配置有 CORS header Access-Con
tlhelp32.h 不包含 windows.h 本身是有原因的吗?我一直在与大量的编译器错误作斗争,因为我在包含 tlhelp32.h 之后包含了 windows.h。这是设计决定还是出于什么原因?
我是一名优秀的程序员,十分优秀!