mIRC Home    About    Download    Register    News    Help

Print Thread
#146252 02/04/06 05:03 AM
Joined: Mar 2006
Posts: 19
A
adamb53 Offline OP
Pikka bird
OP Offline
Pikka bird
A
Joined: Mar 2006
Posts: 19
is there anyway to find out the info about a person if u have their ip address?

Last edited by adamb53; 02/04/06 05:06 AM.
#146253 02/04/06 07:54 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Depends on what information, of course, but realistically the answer is probably no.

#146254 02/04/06 03:51 PM
Joined: Mar 2006
Posts: 19
A
adamb53 Offline OP
Pikka bird
OP Offline
Pikka bird
A
Joined: Mar 2006
Posts: 19
like when you type /whois <name> it brings up w/e info it does or when you do the info for a name it tells me their info like their name, channels their in... etc... is there anyway to do this with only the ip address and not the name?

#146255 02/04/06 07:47 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
I don't think this is possible, or at least if it is, it's beyond my scripting knowledge. I just spent nearly 4 hours trying different possibilities that occured to me, all with no success.

Sorry.

#146256 02/04/06 09:08 PM
Joined: Mar 2006
Posts: 19
A
adamb53 Offline OP
Pikka bird
OP Offline
Pikka bird
A
Joined: Mar 2006
Posts: 19
k ty for trying

#146257 02/04/06 09:25 PM
Joined: Oct 2005
Posts: 1,741
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,741
I don't think you can directly whois someone using their IP. You may be able to use the /who command to locate all users who are on a certain IP, and then whois one of the nicks that are returned by /who.

Like this:

/who *@12.23.34.*

bob_smith is [email]bob@12.23.34.mask-1234[/email]

/whois bob_smith

bob_smith is [email]bob@12.23.34.mask-1234[/email]
bob_smith on #channel, #channel2
bob_smith idle 42 minutes

-genius_at_work

#146258 08/04/06 02:28 PM
Joined: Apr 2006
Posts: 14
O
Pikka bird
Offline
Pikka bird
O
Joined: Apr 2006
Posts: 14
I believe what you want is a script to do something like /iwhois 127.0.0.1 and have it do a /whois on all users on that IP? something like this would work
Code:
alias iwhois { if ($1) { %iw.ip = $1 | .who $1 } }
raw 352:*:{ if (%iw.ip) { .whois $6 $6 } }
raw 315:*:{ unset %iw.ip }
didnt test that code, and if you dont have oper on the network you might need a script that checks the ial instead.


Link Copied to Clipboard