Projects STRLCPY cupp Commits 8be8865d
🤬
  • cleanup after merging quantumcore's branch

  • Loading...
  • Mebus committed 4 years ago
    8be8865d
    1 parent 54180adb
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    README.md
    skipped 57 lines
    58 58   
    59 59   CUPP has configuration file cupp.cfg with instructions.
    60 60   
     61 +## Example (Fast forwarded)
     62 + 
     63 +![cupp-example](screenshots/cupp-example.gif)
    61 64   
    62 65  ## License
    63 66   
    skipped 44 lines
    108 111   * Andrea Giacomo
    109 112   https://github.com/codepr
    110 113   
    111  -### Example (Fast forwarded)
    112  -![cupp-example](https://github.com/lynxmk/cupp/blob/master/cupp-example.gif)
     114 + * quantumcore
     115 + https://github.com/quantumcore
     116 +
    113 117   
    114 118   
  • ■ ■ ■ ■ ■ ■
    cupp.py
    skipped 134 lines
    135 135   + " words.\033[1;m"
    136 136   )
    137 137   inspect = input("> Hyperspeed Print? (Y/n) : ").lower()
    138  - if(inspect == "y"):
     138 + if inspect == "y":
    139 139   try:
    140 140   with open(filename, "r+") as wlist:
    141  - data = wlist.readlines()
    142  - for line in data:
    143  - print("\033[1;32m["+filename+"] \033[1;33m" + line)
    144  - time.sleep(0000.1)
    145  - os.system("clear")
     141 + data = wlist.readlines()
     142 + for line in data:
     143 + print("\033[1;32m[" + filename + "] \033[1;33m" + line)
     144 + time.sleep(0000.1)
     145 + os.system("clear")
    146 146   except Exception as e:
    147  - print("[ERROR]: " +str(e))
     147 + print("[ERROR]: " + str(e))
    148 148   else:
    149 149   pass
    150 150   
    skipped 9 lines
    160 160   print(" \033[07m cupp.py! \033[27m # \033[07mC\033[27mommon")
    161 161   print(" \ # \033[07mU\033[27mser")
    162 162   print(" \ \033[1;31m,__,\033[1;m # \033[07mP\033[27masswords")
    163  - print(" \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # \033[07mP\033[27mrofiler")
     163 + print(
     164 + " \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # \033[07mP\033[27mrofiler"
     165 + )
    164 166   print(" \033[1;31m(__) )\ \033[1;m ")
    165 167   print(
    166 168   " \033[1;31m ||--|| \033[1;m\033[05m*\033[25m\033[1;m [ Muris Kurgas | [email protected] ]"
    167 169   )
    168 170   print(28 * " " + "[ Mebus | https://github.com/Mebus/]\r\n")
    169  - print("\033[27m\nYou are using Modified and Improved Version of CUPP.\n [ Fahad Mustafa | https://github.com/lynxmk ]")
    170 171   
    171 172   
    172 173  def version():
    skipped 923 lines
  • cupp-example.gif screenshots/cupp-example.gif
Please wait...
Page is in error, reload to recover