This post is by a banned member (Grayzcale) - Unhide
OP 13 September, 2019 - 09:50 AM
Reply
This post is by a banned member (K1NG9IN) - Unhide
13 September, 2019 - 09:58 AM
Reply
(13 September, 2019 - 09:50 AM)AIphaZ Wrote: Show Moreread title....
Code: import subprocess
def GetUUID():
cmd = 'wmic csproduct get uuid'
uuid = str(subprocess.check_output(cmd))
pos1 = uuid.find("\\n")+2
uuid = uuid[pos1:-15]
return uuid
print(GetUUID())
This post is by a banned member (Grayzcale) - Unhide
OP 13 September, 2019 - 11:24 AM
Reply
(13 September, 2019 - 09:58 AM)K1NGPIN Wrote: Show More (13 September, 2019 - 09:50 AM)AIphaZ Wrote: Show Moreread title....
Code: import subprocess
def GetUUID():
cmd = 'wmic csproduct get uuid'
uuid = str(subprocess.check_output(cmd))
pos1 = uuid.find("\\n")+2
uuid = uuid[pos1:-15]
return uuid
print(GetUUID())
My code:
Code: import requests
import subprocess
def GetUUID():
cmd = 'wmic csproduct get uuid'
uuid = str(subprocess.check_output(cmd))
pos1 = uuid.find("\\n")+2
uuid = uuid[pos1:-15]
return uuid
url="https://cracked.to/auth.php"
postData={
"a":"auth",
"k":"MY AUTH KEY",
"hwid":None
}
postData["hwid"]=GetUUID()
response=requests.post(url,postData).json()
print(response)
Output:
Code: {'error': 'invalid hwid'}
This post is by a banned member (Grayzcale) - Unhide
OP 14 September, 2019 - 05:10 PM
(This post was last modified: 14 September, 2019 - 05:10 PM by Grayzcale.)
Reply
This is a bump
(13 September, 2019 - 09:58 AM)K1NGPIN Wrote: Show More (13 September, 2019 - 09:50 AM)AIphaZ Wrote: Show Moreread title....
Code: import subprocess
def GetUUID():
cmd = 'wmic csproduct get uuid'
uuid = str(subprocess.check_output(cmd))
pos1 = uuid.find("\\n")+2
uuid = uuid[pos1:-15]
return uuid
print(GetUUID())
Can you solve the problem?
This post is by a banned member (LeFrenchFrog) - Unhide
This post is by a banned member (Grayzcale) - Unhide
OP 22 September, 2019 - 01:11 AM
Reply
(19 September, 2019 - 05:39 PM)LeFrenchFrog Wrote: Show More (14 September, 2019 - 05:10 PM)AIphaZ Wrote: Show MoreThis is a bump
(13 September, 2019 - 09:58 AM)K1NGPIN Wrote: Show MoreCode: import subprocess
def GetUUID():
cmd = 'wmic csproduct get uuid'
uuid = str(subprocess.check_output(cmd))
pos1 = uuid.find("\\n")+2
uuid = uuid[pos1:-15]
return uuid
print(GetUUID())
Can you solve the problem? Use the code he gave you, for his answer you get the UUID more info :
https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct?redirectedfrom=MSDN
But how would I get the HWID of the user with Python to add auth to my projects?
This post is by a banned member (LeFrenchFrog) - Unhide
22 September, 2019 - 08:42 PM
Reply
(22 September, 2019 - 01:11 AM)AIphaZ Wrote: Show More (19 September, 2019 - 05:39 PM)LeFrenchFrog Wrote: Show More (14 September, 2019 - 05:10 PM)AIphaZ Wrote: Show MoreThis is a bump
Can you solve the problem? Use the code he gave you, for his answer you get the UUID more info :
https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct?redirectedfrom=MSDN
But how would I get the HWID of the user with Python to add auth to my projects?
I think you don't get how HWID works, there isn't a "general HWID". It's a term you use to get something that identifies the persons computer. Think of the machine ID or CPU ID , GPU serial , Motherboard Serial etc
This post is by a banned member (Grayzcale) - Unhide
OP 23 September, 2019 - 03:09 AM
(This post was last modified: 23 September, 2019 - 03:09 AM by Grayzcale.)
Reply
(22 September, 2019 - 08:42 PM)LeFrenchFrog Wrote: Show More (22 September, 2019 - 01:11 AM)AIphaZ Wrote: Show More (19 September, 2019 - 05:39 PM)LeFrenchFrog Wrote: Show More
But how would I get the HWID of the user with Python to add auth to my projects?
I think you don't get how HWID works, there isn't a "general HWID". It's a term you use to get something that identifies the persons computer. Think of the machine ID or CPU ID , GPU serial , Motherboard Serial etc
I understand that but how would this work-out in one of my projects?
|