IP Address Lookup in a Firefox Extension

2019-03-30 09:21发布

I'm writing a Firefox extension and I need to find the ip address of the currently loaded page. I can get the hostname of the page with window.location.host, but is there any way to find the ip for that hostname?

I tried looking for the answer at the Mozilla Developer Center but was unable to find anything.

EDIT: I would use something like PHP to do this, but cannot, because it's a firefox extension, running on the client side only. I have no web server to do back end PHP.

3条回答
闹够了就滚
2楼-- · 2019-03-30 09:33

If not a PHP Lookup, do a simple nslookup, or dig for hostname string.

查看更多
手持菜刀,她持情操
3楼-- · 2019-03-30 09:51

You could look at how the ShowIP Firefox extension does it.

查看更多
走好不送
4楼-- · 2019-03-30 09:51
var cls = Cc['@mozilla.org/network/dns-service;1'];
var iface = Ci.nsIDNSService;
var dns = cls.getService(iface); //dns object

var nsrecord = dns.resolve(HOSTNAME_HERE, true); //resolve hostname
while (nsrecord && nsrecord.hasMore()){
   alert(nsrecord.getNextAddrAsString()); //here you are
}
查看更多
登录 后发表回答