PDA

Click to See Complete Forum and Search --> : Create Your Local Server Now (No Apache After Now)


diekick
Jun 14th, 2006, 04:23 PM
Hi everyone ,
I'm a new user in this excellent site and forums

and I registered here to share my talent in VB6.0 to everyone in the world

No much speech, Let's Start:

download the Attachment File ( VB Project Ver. 6.00 E.E )

and open it the run the script. I think it's easy to understand.

for example you want to send something to any computer try to reach yours on port 21

http://www.vbforums.com/attachment.php?attachmentid=48556&stc=1

then Click Listen Button

http://www.vbforums.com/attachment.php?attachmentid=48557&stc=1

Now Goto FTP Command ( Start -> Run. Print 'ftp -n' . Then OK )
and Print 'open X'.

Replace X with your IP Address Or Your Host Name(Your Computer Name On Network)

then press 'Enter'

you will see the following

http://www.vbforums.com/attachment.php?attachmentid=48558&stc=1


Go to the Program and don't surprise
http://www.vbforums.com/attachment.php?attachmentid=48559&stc=1



Now, What do you think ??????????

diekick
Jun 15th, 2006, 12:21 AM
For Port 80 (IE HTML Port) Change The Port Number to 80

Type In Msg. Box The Header of Connection: {
HTTP/1.1 200 OK
Server: Port Spy 80/3s (PS80/3s)
Accept-Ranges: bytes
Content-Length: %VVV%
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/html

}

You must keep the last line in the header empty

Now:
You want to write your HTML Code to show it on IE

Write it after header but remember to change %VVV% to your HTML Code Length ( To Get Length: Copy HTML Code To Len. Box and do -Lost Focus Event- MsgBox will show Length

For Example:
Print in Msg. Box the following :-
HTTP/1.1 200 OK
Server: Port Spy 80/3s (PS80/3s)
Accept-Ranges: bytes
Content-Length: 527
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/html

<html dir="rtl">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>PS 80/3s Test Page</title>
</head>

<body>

<p dir="ltr"><b><font size="5">Love VBForums = Winner</font></b></p>
<p dir="ltr"><b><font size="5">Hate VBForums = Loser</font></b></p>
<p dir="ltr">&nbsp;</p>
<p dir="ltr"><font size="5"><b>Best Wishes,</b></font></p>
<p dir="ltr"><font size="5"><b>Port Spy 80/3s SERVER</b></font></p>

</body>

</html>

Now Close any local server that used Port 80 Like Apache , IIS , ect...
Change Port Number to 80

Click 'Listen'

go to IE browes and Point to your IP address you will see the HTML Code that you printed after header in Msg. Box

goto program you will see your address ( IP's List is to show all IPs Address that reached your computer While Program was running )