Results 1 to 4 of 4

Thread: getting other persons IP

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    is it possible to get a persons IP (If i don't know mine, since it always changes)? Maybe I can get there IP address from aol...

  2. #2
    Guest
    There is no actual way to send the person an Instant Message and get their IP, or at least, not that I know of. Bit you can get an aol bas file which has a sub or function for you to send email. Than use Winsock (Winsock.Localip) or this code to get the other person IP address.

    Code:
    Public Const WS_VERSION_REQD = &H101
    Public Const WS_VERSION_MAJOR = WS_VERSION_REQD \ &H100  And &HFF&
    Public Const WS_VERSION_MINOR = WS_VERSION_REQD And &HFF&
    Public Const MIN_SOCKETS_REQD = 1
    Public Const SOCKET_ERROR = -1
    Public Const WSADescription_Len = 256
    Public Const WSASYS_Status_Len = 128
    
    Public Type HOSTENT
        hName As Long
        hAliases As Long
        hAddrType As Integer
        hLength As Integer
        hAddrList As Long
    End Type
    
    Public Type WSADATA
        wversion As Integer
        wHighVersion As Integer
        szDescription(0 To WSADescription_Len) As Byte
        szSystemStatus(0 To WSASYS_Status_Len) As Byte
        iMaxSockets As Integer
        iMaxUdpDg As Integer
        lpszVendorInfo As Long
    End Type
    
    Public Declare Function WSAGetLastError Lib "WSOCK32.DLL" () As Long
    Public Declare Function WSAStartup Lib "WSOCK32.DLL" (ByVal wVersionRequired&, lpWSAData As WSADATA) As Long
    Public Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long
    Public Declare Function gethostname Lib "WSOCK32.DLL" (ByVal hostname$, ByVal HostLen As Long) As Long
    Public Declare Function gethostbyname Lib "WSOCK32.DLL" (ByVal hostname$) As Long
    Public Declare Sub RtlMoveMemory Lib "kernel32" (hpvDest As Any, ByVal hpvSource&, ByVal cbCopy&)
    
    Function hibyte(ByVal wParam As Integer)
        hibyte = wParam \ &H100  And &HFF&
    End Function
    
    
    Function lobyte(ByVal wParam As Integer)
        lobyte = wParam And &HFF&
    End Function
    
    
    Sub SocketsInitialize()
        Dim WSAD As WSADATA
        Dim iReturn As Integer
        Dim sLowByte As String, sHighByte As String, sMsg As String
        iReturn = WSAStartup(WS_VERSION_REQD, WSAD)
    
    
        If iReturn <> 0 Then
            MsgBox "Winsock.dll Error."
            End
        End If
        If lobyte(WSAD.wversion) < WS_VERSION_MAJOR Or (lobyte(WSAD.wversion) = _
            WS_VERSION_MAJOR And hibyte(WSAD.wversion) < WS_VERSION_MINOR) Then
            sHighByte = Trim$(Str$(hibyte(WSAD.wversion)))
            sLowByte = Trim$(Str$(lobyte(WSAD.wversion)))
            sMsg = "Windows Sockets version " & sLowByte & "." & sHighByte
            'sMsg = sMsg & " winsock.dll tarafindan desteklenmiyor. "
            MsgBox sMsg
            End
        End If
    
    End Sub
    
    Public Function CurrentIP(ReturnExternalIP As Boolean)
        Dim hostname As String * 256
        Dim hostent_addr As Long
        Dim host As HOSTENT
        Dim hostip_addr As Long
        Dim temp_ip_address() As Byte
        Dim i As Integer
        Dim ip_address As String
        Dim IP As String
    
        If gethostname(hostname, 256) = SOCKET_ERROR Then
            MsgBox "Windows Socket Error " & Str(WSAGetLastError())
            Exit Function
        Else
            hostname = Trim$(hostname)
        End If
        hostent_addr = gethostbyname(hostname)
    
    
        If hostent_addr = 0 Then
            MsgBox "Winsock.dll error."
            Exit Function
        End If
        RtlMoveMemory host, hostent_addr, LenB(host)
        RtlMoveMemory hostip_addr, host.hAddrList, 4
       
        Do
            ReDim temp_ip_address(1 To host.hLength)
            RtlMoveMemory temp_ip_address(1), hostip_addr, host.hLength
    
    
            For i = 1 To host.hLength
                ip_address = ip_address & temp_ip_address(i) & "."
            Next
            ip_address = Mid$(ip_address, 1, Len(ip_address) - 1)
            
            Internal = TheIP        ' Send ONLY the External IP to the CurrentIP Function
            EXTERNAL = ip_address   ' Send the External IP to the  function parameter External
            TheIP = ip_address      ' Send LAN IP to the function para Internal
         
            ip_address = ""
            host.hAddrList = host.hAddrList + LenB(host.hAddrList)
            RtlMoveMemory hostip_addr, host.hAddrList, 4
        Loop While (hostip_addr <> 0)
        
        
    If ReturnExternalIP = True Then
        CurrentIP = EXTERNAL
    Else
        CurrentIP = Internal
    End If
    End Function
    
    Sub SocketsCleanup()
        Dim lReturn As Long
        lReturn = WSACleanup()
    
    
        If lReturn <> 0 Then
            MsgBox "Socket Error " & Trim$(Str$(lReturn)) & " occurred In Cleanup "
            End
        End If
    End Sub
    
    Usage:
    
    Private Sub Form_Load()
    SocketsInitialize
    Text1.Text = CurrentIP(True)
    'And for the AOL Bas, something like:
    'Call SendEmail("[email protected]", "IP Address", "" & Text1.text & "")
    End Sub
    And through aol, they can always unsend it, so you should use a hotmail account or email address over the Internet. Unfortunately, they can find out by going into the Sent Mail and check. You'll probably get a lot of people mad at you for it though.

  3. #3
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Canada
    Posts
    264
    if you mean in ASP, it is very easy, just put this on your ASP page:

    response.write Request.ServerVariables("REMOTE_ADDR")

    this will show the ip address on the screen, if you want you can just use it to put it in a DB or something or put it inside a text file that the ASP page creates and modifies each time someone gets in..
    In the beginning the universe was created. This has made a lot of people very angry and is generally regarded as a bad idea.

    - Douglas Adams
    The Hitchhiker's Guide to the Galaxy

  4. #4

    Thread Starter
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    Thanks matthew, thats what I thought, but I was just thinking "heck, why not. Maybe someone knows a way."

    Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width