Text Only
|
Text with Attachments
QB64.org Forum
Active Forums => Programs => Topic started by: KingRat on October 25, 2018, 01:35:08 pm
Title:
Simple Port Scanner
Post by:
KingRat
on
October 25, 2018, 01:35:08 pm
I wrote this little code while I was reading the QB64 Wiki, just to figure out the _OPENCLIENT basics.
Code: QB64:
[Select]
'Simple scanner
'This could be a little faster :/
FOR
port
=
0
TO
65535
port$
=
STR$
(
port
)
_TITLE
(
"Scanning port "
+
port$
+
" of 35535"
)
p
=
_OPENCLIENT
(
"TCP/IP:"
+
port$
+
":localhost"
)
IF
p
THEN
PRINT
port$
+
" - listening!"
END
IF
CLOSE
p
NEXT
port
Title:
Re: Simple Port Scanner
Post by:
KingRat
on
October 25, 2018, 01:39:26 pm
Some considerations.
Im really excited about QB64, but I have to admit that this simple code became very slow, and TaskManager shows about 33 megs of RAM while execution.
Some tips for QB64 optimization?
Thanks!
Text Only
|
Text with Attachments