Some can query IP location, identity card location, mobile phone ownership of the interface.
Because some interfaces need to provide routing, the following code if JS can not directly read, you can return the results through PHP, and then through JS call back the results of the page.
Source Code and Demo: source code Source Demo source
03 |
Sina's IP query interface: |
04 |
Sina's: Http://counter.sina.com.cn/ip?ip=IP address |
05 |
Back to the JS data, the feeling is not very accurate, you can put the question mark after the removal, directly return to the corresponding IP location of the machine |
07 |
Youdao IP Query Interface: |
08 |
Return XML data: http://www.yodao.com/smartresult-xml/search.s?type=ip&q=0.0.0.0 |
09 |
Back to JSON data: http://www.yodao.com/smartresult-xml/search.s?jsFlag=true&type=ip&q=0.0.0.0 |
10 |
Replace 0.0.0.0 with the IP address you need to query, this should be a database of innocence |
12 |
Pacific Internet IP Query interface: |
13 |
http://whois.pconline.com.cn/?ip=0.0.0.0 |
14 |
Change the 0.0.0.0 to IP address, there are other irrelevant content on the page, which is to tell us which interfaces can be invoked, interface call parameters and usage methods, etc. |
16 |
Search mobile phone number attribution to the interface: |
17 |
Return XML data: http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13888880000 |
18 |
Back to JSON data: http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=13888880000 |
20 |
ID Card Query Interface: |
21st |
Return XML data: http://www.youdao.com/smartresult-xml/search.s?type=id&q= ID number |
22 |
Back to JSON data: http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=id&q= ID number |
24 |
echo file_get_contents ("Interface URL and Parameters"); |