Advertisement
westor

/IPL - IP Lookup addon for JuanAM (v2.0)

Nov 18th, 2014
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 3.93 KB | None | 0 0
  1. alias ipl {
  2.   if (!$1) { echo -a 10 You must enter the IP address to find, in this format 12 $+ /ip 111.111.111.111 | return }
  3.   if ($remove($1,.) !isnum) { echo -a Error: Your IP address is not correct, try again! | return }
  4.   var %s = InfoIP_ $+ $ticks $+ _ $+ $rand(1,10000000)
  5.   if ($sock(%s)) { sockclose %s }
  6.   echo -a ***** Searching informations for IP:  $+ $1 $+  *****
  7.   sockopen %s geoip.flagfox.net 80
  8.   sockmark %s $1
  9. }
  10.  
  11. ON *:SOCKOPEN:InfoIP_*: {
  12.   if ($sockerr) { echo -a ERROR: Connection problem, Could not connect to the page! | sockclose $sockname | return }
  13.   sockwrite -nt $sockname GET /?ip= $+ $sock($sockname).mark HTTP/1.1
  14.   sockwrite -nt $sockname User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
  15.   sockwrite -nt $sockname Accept-Language: *
  16.   sockwrite -nt $sockname Host: $sock($sockname).addr
  17.   sockwrite -nt $sockname Connection: close
  18.   sockwrite -nt $sockname $crlf
  19. }
  20.  
  21. ON *:SOCKREAD:InfoIP_*: {
  22.   if ($sockerr) { echo -a ERROR: Connection reading problem, Could not read from the page! | sockclose $sockname | return }
  23.   var %r
  24.   sockread %r
  25.   var %r = $remove(%r,$chr(9),$chr(10),$chr(13))
  26.   ; echo -a READ: %r
  27.   if ($sockbr == 0) { return }
  28.   if (*<a href="http://en.wikipedia.org/wiki/* iswm %r) && ($left(%r,2) == <a) && (*target="_blank" title="Wikipedia entry for* iswm %r) { echo -a 12Continent:1 $httpstrip(%r) $+  }
  29.   if (*<span style="white-space: nowrap"><a href="http://en.wikipedia.org/wiki/* iswm %r) && (*target="_blank" title="* iswm %r) { echo -a 12Country:1 $httpstrip(%r) $+  }
  30.   if (*var myLatLng* iswm %r) {
  31.     echo -a 12Latitude & Longitude:1 $remove($gettok(%r,2,40),$chr(41),;) $+ 
  32.   }
  33.   if ($left(%r,8) == content:) && (*<br>* iswm %r) {
  34.     echo -a 12Hostname:1 $gettok($gettok(%r,2,39),1,60) $+ 
  35.     var %city = $remove($gettok($gettok(%r,2,39),3,60),br>)
  36.     if ($chr(44) isin %city) { var %city = $gettok(%city,1,44) }
  37.     echo -a 12City:1 %city $+ 
  38.   }
  39.   if (*<span style="white-space: nowrap">* iswm %r) && (*</span></td>* iswm %r) {
  40.     echo -a 12Metropolis Area:1 $httpstrip(%r) $+ 
  41.   }
  42.   if (%time_ [ $+ [ $sockname ] ]) && (<td align="left" >* iswm %r) { return }
  43.   if (%time_ [ $+ [ $sockname ] ]) { echo -a 12Local Time:1 $httpstrip(%r) $+  | unset %time_ [ $+ [ $sockname ] ] }
  44.   if ($left(%r,5) == Local) && (*</td>* iswm %r) { set -e %time_ [ $+ [ $sockname ] ] 1 }
  45.  
  46.  
  47.   if (%code_ [ $+ [ $sockname ] ]) && (<td align="left" >* iswm %r) { return }
  48.   if (%code_ [ $+ [ $sockname ] ]) { echo -a 12Country Code:1 $httpstrip(%r) $+  | unset %code_ [ $+ [ $sockname ] ] }
  49.   if (*<td align="left">Country Code</td>* iswm %r) { set -e %code_ [ $+ [ $sockname ] ] 1 }
  50.  
  51.   if (%reg_ [ $+ [ $sockname ] ]) && (<td align="left" >* iswm %r) { return }
  52.   if (%reg_ [ $+ [ $sockname ] ]) { echo -a 12Region:1 $httpstrip(%r) $+  | unset %reg_ [ $+ [ $sockname ] ] }
  53.   if (*<td align="left">Region</td>* iswm %r) { set -e %reg_ [ $+ [ $sockname ] ] 1 }
  54.  
  55.   if (%post_ [ $+ [ $sockname ] ]) && (<td align="left" >* iswm %r) { return }
  56.   if (%post_ [ $+ [ $sockname ] ]) { echo -a 12Postal Code:1 $httpstrip(%r) $+  | unset %post_ [ $+ [ $sockname ] ] }
  57.   if (*<td align="left">Postal Code</td>* iswm %r) { set -e %post_ [ $+ [ $sockname ] ] 1 }
  58.  
  59.   if (%isp_ [ $+ [ $sockname ] ]) { echo -a 12ISP:1 $httpstrip(%r) $+  | unset %isp_ [ $+ [ $sockname ] ] }
  60.   if (*<td align="left" width="33%">* iswm %r) { set -e %isp_ [ $+ [ $sockname ] ] 1 }
  61. }
  62.  
  63. ON *:SOCKCLOSE:InfoIP_*: { echo -a ***** End of  $+ $sock($sockname).mark $+  IP lookup ***** }
  64.  
  65. alias httpstrip {
  66.   var %xx = $replace($1-,&#x26;,$chr(38),$chr(124),-,$chr(125),-,&#125;,-,&#124;,-,&quot;,$chr(34),&amp;,&,&lt;,<,&gt;,>,&nbsp;,$chr(32),&#x26;#039;,$chr(39),$chr(13),$chr(32))
  67.   var %x = $remove(%xx,<![CDATA[,]]>,$chr(2),$chr(4),$chr(9),$chr(31),$chr(22),$chr(29),$chr(10),$chr(13))
  68.   var %i = $regsub(%x,/(^[^<]*>|<[^>]*>|<[^>]*$)/g,$null,%x)
  69.   return %x
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement