Vanity-Exploit/Vanity-Exploit.py

25 lines
2.3 KiB
Python
Raw Normal View History

2020-11-18 04:18:45 +00:00
import clipboard
intro = """
"""
print(intro)
2020-11-19 06:04:55 +00:00
server = input("Server Invite:")
invite = input("New Invite Name:")
2020-11-18 04:18:45 +00:00
2020-11-19 06:04:55 +00:00
vanity = "discοrd.gg/" + invite + "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" + server
clipboard.copy(vanity)
2020-11-18 04:18:45 +00:00
2020-11-19 06:08:13 +00:00
print('Copied to Clipboard!\nPress Any Key to Exit')
2020-11-18 04:18:45 +00:00
input()
2020-11-19 06:08:13 +00:00
print()