|
-
Oct 9th, 2008, 04:15 PM
#1
Thread Starter
Lively Member
Name of computer
Hi, it is possible to verify the name of the computer of some person that connected in door 10009 using VB application? Thanks :P
I am from BRAZIL, Sorry my bad English 
-
Oct 9th, 2008, 04:20 PM
#2
Member
Re: Name of computer
 Originally Posted by -Guh-
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?
-
Oct 9th, 2008, 04:22 PM
#3
Re: Name of computer
 Originally Posted by -Guh-
...that connected in door 10009...
What's that?
-
Oct 9th, 2008, 04:59 PM
#4
Thread Starter
Lively Member
Re: Name of computer
 Originally Posted by RhinoBull
What's that?
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)
Sorry my bad english rsrs
I am from BRAZIL, Sorry my bad English 
-
Oct 9th, 2008, 05:59 PM
#5
Re: Name of computer
You can get the computer name with this:
Code:
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
Don't know what a door is
Waiting for a full featured smart phone with out marrying a provider
Go Android
Go raiders 
-
Oct 9th, 2008, 06:34 PM
#6
Re: Name of computer
 Originally Posted by -Guh-
...door 10009...
I don't know what that is. So, what is it?
-
Oct 9th, 2008, 06:38 PM
#7
Re: Name of computer
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
-
Oct 9th, 2008, 06:41 PM
#8
Thread Starter
Lively Member
Re: Name of computer
 Originally Posted by RhinoBull
I don't know what that is.  So, what is it?
SORRY!
Dont is DOOR! IS PORT! haha
Port 10009!!!
I am from BRAZIL, Sorry my bad English 
-
Oct 9th, 2008, 06:42 PM
#9
Re: Name of computer
I also thought of port but number kind of looks large...
-
Oct 9th, 2008, 06:46 PM
#10
Re: Name of computer
Whould this sample work for you?
-
Oct 9th, 2008, 06:51 PM
#11
Thread Starter
Lively Member
Re: Name of computer
 Originally Posted by techgnome
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
yes, but I am Brazilian, and 90% of the Brazilians use dynamic IP, therefore necessary of the name of the computer (never change)
I am from BRAZIL, Sorry my bad English 
-
Oct 9th, 2008, 06:56 PM
#12
Thread Starter
Lively Member
Re: Name of computer
 Originally Posted by RhinoBull
Very interesting, this example catches the IP and name of the computer connecting in all the !!!POOORRRTTTT!!! of host? hhehe
I am from BRAZIL, Sorry my bad English 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|