Handle "Open TCP port scan" via proxy set in config.php

nocte

Member
Reactions
5
In config.php you can set a proxy:

$config['http']['proxy'] =

Wouldn't it make sense to use this proxy for "Open TCP port scan" instead of running a script on an external server?

Bildschirmfoto 2022-11-02 um 18.10.34.png


P.S. same for "Hostname" lookup (for which is no script provided).
 
In config.php you can set a proxy:

$config['http']['proxy'] =

Wouldn't it make sense to use this proxy for "Open TCP port scan" instead of running a script on an external server?

View attachment 10873
The port scan script directly uses sockets to make multiple requests at once instead of a connection at a time which it could do via the standard http proxy.

So for technically reasons this isn't really suitable.

P.S. same for "Hostname" lookup (for which is no script provided).
This just uses standard DNS lookups, you can easily setuip a DNS recursor locally for it to use.
 

Users who are viewing this thread

Back
Top