Hi, it is possible to verify the name of the computer of some person that connected in door 10009 using VB application? Thanks :P
Printable View
Hi, it is possible to verify the name of the computer of some person that connected in door 10009 using VB application? Thanks :P
for a remote admin Tool?Quote:
Originally Posted by -Guh-
What's that?Quote:
Originally Posted by -Guh-
it is possible to catch the name of the computer of who connects in door 10009 of mine host? (using application LOCAL and not remote)Quote:
Originally Posted by RhinoBull
Sorry my bad english rsrs
You can get the computer name with this:
Don't know what a door isCode:Public Declare Function GetComputerName Lib "kernel32.dll" Alias "GetComputerNameA" _
(ByVal lpBuffer As String, nSize As Long) As Long
Public Function GetComputer() As String
Dim retVal As Long
On Error GoTo e
'Create a string buffer for the computer name
Dim strCompName As String
strCompName = space$(255)
'Retrieve the Computer name
retVal = GetComputerName(strCompName, 255)
'Remove the trailing null character from the string
GetComputer = Left$(strCompName, InStr(strCompName, vbNullChar) - 1)
Exit Function
I don't know what that is. :confused: So, what is it?Quote:
Originally Posted by -Guh-
PORT.... he wants to get the name of the computer that is connecting via port 10009 (do the ports go that high?) to his server.... the answer is, I don't know... I'd think at best you could get an IP address... but I don't know.
-tg
SORRY!Quote:
Originally Posted by RhinoBull
Dont is DOOR! IS PORT! haha
Port 10009!!! :lol:
I also thought of port but number kind of looks large...
Whould this sample work for you?
yes, but I am Brazilian, and 90% of the Brazilians use dynamic IP, therefore necessary of the name of the computer (never change)Quote:
Originally Posted by techgnome
Very interesting, this example catches the IP and name of the computer connecting in all the !!!POOORRRTTTT!!! of host? hheheQuote:
Originally Posted by RhinoBull