首页 > 代码库 > C# socket获取对等方mac地址
C# socket获取对等方mac地址
1 [DllImport("Iphlpapi.dll")] 2 private static extern int SendARP(Int32 dest, Int32 host, ref Int64 mac, ref Int32 length); 3 4 public static string getRemoteMac(string remoteIP) 5 { 6 var addr = IPAddress.Parse(remoteIP); 7 int ip4 = BitConverter.ToInt32((addr.GetAddressBytes()), 0); 8 9 try 10 { 11 long macinfo = 0; 12 int len = 6; 13 int res = SendARP(ip4, 0, ref macinfo, ref len); 14 return Convert.ToString(macinfo, 16); 15 } 16 catch (Exception err) 17 { 18 Console.WriteLine("Error:{0}", err.Message); 19 } 20 return 0.ToString(); 21 } 22 23 static void Main(string[] args) 24 { 25 Console.WriteLine(getRemoteMac("192.168.0.150")); 26 Console.ReadLine(); 27 }
注意这种方式,很多大公司都有不同的防火墙,这种方式用arp攻击来实现的,但是有的防火墙会屏蔽arp攻击,这种方式不是很稳定
C# socket获取对等方mac地址
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。