1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-25 17:09:02 +00:00

Correct function name for rand.random.alpha. Closes #1449

This commit is contained in:
nnposter
2019-01-30 03:00:17 +00:00
parent 5c5ddcd7b8
commit 9ad1808726
4 changed files with 4 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ action = function(host, port)
-- Try to see what a nonexistent URL looks like
local status, response = fetch_url(
host, port, ("rtsp://%s/%s"):format(
stdnse.get_hostname(host), rand.rand_alpha(14))
stdnse.get_hostname(host), rand.random_alpha(14))
)
local status_404 = 404
if status then