0
Need help understanding this python code
currentTime = int(time.time()) for x in range(0, 300): plaintext = fileName + str(currentTime - x) md5hash = hashlib.md5(plaintext).hexdigest() url = BaseUrl+md5hash+'.php' print url
1 Odpowiedź
- 1
This is not full code. You not define x var, BaseUrl, time, fileName... and you have mistakes in code