22.02.2023, 14:27
(22.02.2023, 14:18)admin Wrote: Yes but I doubt that you need to execute them all the time.
if i have a collection of 30 domain names that should be tunneled, i need to refresh them from time to time, for that i need to do 30 lookups one after another in a single run. Ok thanks for the info, i think i've got an idea
Here's the code i'm using and after that i need to parse response
Code:
handle = io.popen('nslookup domainname.com')
str = handle:read('*a')
handle:close()
log(str)