I'm writing some python code to test a link with a bunch of different permutations of the possible characters heres my code:
from selenium import webdriver
driver = webdriver.chrome()
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
numatts = int(input("How Many Times To Attempt? >> "))
for i in range(numatts):
driver.open("LINKHERE" + "/" + "Each permutation")
#Code Stuff....
For Example, If LINKHERE is 'google.com', and numatts = 27, I want the output:
google.com/A
google.com/B
google.com/C
google.com/D
google.com/E
google.com/F
google.com/G
google.com/H
google.com/I
google.com/J
google.com/K
google.com/L
google.com/M
google.com/N
google.com/O
google.com/P
google.com/Q
google.com/R
google.com/S
google.com/T
google.com/U
google.com/V
google.com/W
google.com/X
google.com/Y
google.com/Z
google.com/AA
.
.
.
and for longer strings, like "test".
google.com/t
google.com/et
google.com/est
google.com/tset
(and more) would all be a part of the output