Skip to content

Instantly share code, notes, and snippets.

@jakbin
Created June 1, 2023 13:00
Show Gist options
  • Save jakbin/5177c977ecae37e708d0eb70eea358fc to your computer and use it in GitHub Desktop.
Save jakbin/5177c977ecae37e708d0eb70eea358fc to your computer and use it in GitHub Desktop.
generate samsung hotspot password

this code can generate samsung hotspot password but this takes more than 10 gb size 😂 😂 😂

# this code can generate samsung hotspot password but this takes more than 10 gb size
alfa = ['a','b','c','d','e','f','e','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
f = open('pass.txt' ,'a')
for i in alfa:
for i2 in alfa:
for i3 in alfa:
for i4 in alfa:
for i5 in range(10):
for i6 in range(10):
for i7 in range(10):
for i8 in range(10):
if i != i2 and i2 != i3 and i3 != i4 and i != i3 and i != i4 and i2 != i4 and i5 != i6 and i6 != i7 and i7 != i8 and i5 != i7 and i5 != i8 and i6 != i8:
f.write(f"{i}{i2}{i3}{i4}{i5}{i6}{i7}{i8}\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment