hey
I got this tutorial :https://null-byte.wonderhowto.com/how-to/hack-like-pro-find-exact-location-any-ip-address-0161964/
and at the command: rec = gip.recordbyaddr ('xx .xxx.161.99)
I get an error: Traceback (most recent call last): File <stdin> line in one module sttribute Error geoip instance has no attribute 'recordbyaddr'
I hope that I'll get a response to my topic
and not like the first : - |
8 Responses
sorry for my bad english i hope you understand me
Did you include the underscores?
rec = gip.record_by_addr('xx.xxx.161.99')
how do you mean underscores ?
Type this:
rec = gip.record_by_addr('xx.xxx.161.99')
not:
rec = gip.recordbyaddr ('xx.xxx.161.99)
thanks bro
now i have a PROBLEM WITH >>>for key.val in rec.items():
... print "%s: %s" %(key,val)
"I found the problem.
On the following line you need to place a comma between key and val instead of a dot:
>>> for key.val in rec.items():
Or just leave out "key" in that line and than also in the following line:
... print "%s: %s" %(key,val)"
You really should be posting in the thread of the guide instead of a random one. That quote came from the comment section of said thread.
it dont works :S
Share Your Thoughts