#๐ python
30 messages ยท Page 1 of 1 (latest)
@zenith pike
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
Please show your code
import os
import random
import sys
import string
import time
logo = """
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฆโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฆโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
"""
def genSerials():
# Generate serials
serial = ''.join(random.choice(string.ascii_letters + string.digits) for i in range (16))
return serial
os.system("cls")
print(logo + "\n\n")
choice = input("[1] Spoof\n[2] Exit\n\n Enter your choice :")
if choice == "1":
# Spoofing
os.system("AMIDEWINx64.EXE /IVN "AMI"")
os.system("AMIDEWINx64.EXE /SP "System product name"")
os.system("AMIDEWINx64.EXE /SV "System product name"")
os.system("AMIDEWINx64.EXE /SS "" + genSerials() + """)
os.system("AMIDEWINx64.EXE /SU AUTO")
os.system("AMIDEWINx64.EXE /SK "To Be Filled By O.E.M"")
os.system("AMIDEWINx64.EXE /BM "AsRock"")
os.system("AMIDEWINx64.EXE /BP "*8560M-C"")
os.system("AMIDEWINx64.EXE /BS "" + genSerials() + """)
os.system("AMIDEWINx64.EXE /BT "Default String"")
os.system("AMIDEWINx64.EXE /BLC "Default String"")
os.system("AMIDEWINx64.EXE /CM "Default String"")
os.system("AMIDEWINx64.EXE /CV "Default String"")
os.system("AMIDEWINx64.EXE /CS "" + genSerials() + """)
os.system("AMIDEWINx64.EXE /CA "Default String"")
os.system("AMIDEWINx64.EXE /CSK "SKU"")
os.system("AMIDEWINx64.EXE /PSN "To Be Filled By O.E.M"")
os.system("AMIDEWINx64.EXE /PAT "To Be Filled By O.E.M"")
print("Spoofing Complete! Exiting...")
time.sleep(3)
sys.exit()
elif choice == "2":
print("Exiting!")
time.sleep(3)
sys.exit()
else:
print("Invalid choice! Exiting! ")
time.sleep(3)
sys.exit()
This is not something we'll assist with on this server
!rule 5
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
Read whole rule, not only last word ๐คฆ
Spoofing is absolutely malicious/inappropriate
what is spoofing?
disguising your connection. Like a more malicious vpn
where can you see that here? how can disguising your connection be malicious?
Well it says spoofing in their code for starters. There's also things in here about generating serials, which is also inappropriate
Certain devices might only accept trusted connections to allow access. Spoofing can grant unwarranted access
generating serials?
what is
also put your code between 2 set of triple ` next time
well it said in the code btw
some software uses serial codes to activate their products which you get legitimately when you make the purchase. Generating serials is using fake serial numbers to try and activate a product without purchasing
discord nitro codes ahh scam
yeah, that's one example
.
anyway, dont create hacks !1!11!!1
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.