Luv{Flag}
article thumbnail
반응형

 

from itertools import product
import string

strings = string.ascii_letters + string.digits	

for length in range(1, 5):	# length 1 to 4
	to_attempt = product(strings, repeat=length)
	for attempt in to_attempt:
		bruteforce = ''.join(attempt)
		print(bruteforce)

 

적절히 커스텀하여 파이썬으로 문자열 brute force를 할 경우 사용하자.

 

 

반응형

'Web > Python' 카테고리의 다른 글

파이썬 requests 모듈 사용법 정리 (Python requests)  (0) 2023.05.17

검색 태그

loading