added xploit payloads, move things to util folder, tool needs alot of work, scanner cleaned up, bunch of database features
This commit is contained in:
10
Util/passgen.src
Normal file
10
Util/passgen.src
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
if not params then exit("Usage: " + program_path.split("/")[-1] + " [length]")
|
||||
length = to_int(params[0])
|
||||
if typeof(length) != "number" or length <= 0 then exit("Length must be a positive integer.")
|
||||
pass = ""
|
||||
while length > 0
|
||||
pass = pass + "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"[floor(rnd * 62)]
|
||||
length = length - 1
|
||||
end while
|
||||
print(pass)
|
||||
Reference in New Issue
Block a user