[7.902][QUESTION][ANSWERED] search result

Hello Friends !

i try to get some details from ip  61.17.x.x  
i was expected 61.17 seach result will give me some ip details like 61.17.2.2 or 61.17.2.5 and so on but is is giveing me 61017 ,61617 ,61317 some thing like that 

please check image 

thanks
Parents
  • This is probably due to the fact that the search string is parsed as a regexp.

    The . is interpreted as "any character" and thus the ports match (since they are 61x17).

    Have you tried searching for 61\.17? This _should_ change the meaning of . from the regexp one to "yes, this is really the character . I am searching for".

    Christian
Reply
  • This is probably due to the fact that the search string is parsed as a regexp.

    The . is interpreted as "any character" and thus the ports match (since they are 61x17).

    Have you tried searching for 61\.17? This _should_ change the meaning of . from the regexp one to "yes, this is really the character . I am searching for".

    Christian
Children