Winrar Cracker - Python

Sapphire_Romance14

that one guy that actually goes on the forums
that one guy that actually goes on the forums
Member
Yeah, here is some no-bs source code for a python Winrar "Cracker".
Python 3.3.X

Code:
import os
 
a = open('C:\\Users\\' + os.getlogin() + '\\AppData\\Roaming\\WinRAR\\rarreg.key' , 'w')
print(a)
 
a.write('RAR registration data\nDigitalConduct\nUnlimited Company License\nUID=50ffc598a5a2f6862abb\n64122122502abbc84c39c3419cc42c830c7918bd06eb387ba39db0\nc2e20d6aee1b3d045ed860fce6cb5ffde62890079861be57638717\n7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565\nb41bcf56929486b8bcdac33d50ecf7739960a8bc2f89179193e346\n00ba2270daa5b65a7909ecfb8130b60452eabf07f1a805749a4b6b\n1571bc8a47789bc120ff2b6ae77e980ce8b5af8cd45d8be260f16e\n3df7bf450991bde61f43b36a2096f010e0d232d4331c1958956325')
print("Done!")
 
a.close()
 
Top