Projects STRLCPY cupp Commits 00f7c3ee
🤬
  • ■ ■ ■ ■ ■ ■
    .bumpversion.cfg
     1 +[bumpversion]
     2 +current_version = 3.3.0
     3 +commit = True
     4 +tag = True
     5 + 
     6 +[bumpversion:file:cupp.py]
     7 + 
     8 + 
  • ■ ■ ■ ■ ■ ■
    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 43 lines
    107 110   
    108 111   * Andrea Giacomo
    109 112   https://github.com/codepr
     113 + 
     114 + * quantumcore
     115 + https://github.com/quantumcore
     116 +
    110 117   
    111 118   
  • ■ ■ ■ ■ ■
    cupp.py
    skipped 39 lines
    40 40  import urllib.error
    41 41  import urllib.parse
    42 42  import urllib.request
     43 +import time
    43 44   
    44  -__author__ = "Muris Kurgas"
     45 +__author__ = "Mebus"
    45 46  __license__ = "GPL"
    46  -__version__ = "3.2.5-alpha"
     47 +__version__ = "3.3.0"
    47 48   
    48 49  CONFIG = {}
    49 50   
    skipped 83 lines
    133 134   + str(lines)
    134 135   + " words.\033[1;m"
    135 136   )
     137 + inspect = input("> Hyperspeed Print? (Y/n) : ").lower()
     138 + if inspect == "y":
     139 + try:
     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")
     146 + except Exception as e:
     147 + print("[ERROR]: " + str(e))
     148 + else:
     149 + pass
     150 + 
    136 151   print(
    137 152   "[+] Now load your pistolero with \033[1;31m"
    138 153   + filename
    skipped 3 lines
    142 157   
    143 158  def print_cow():
    144 159   print(" ___________ ")
    145  - print(" \033[07m cupp.py! \033[27m # Common")
    146  - print(" \ # User")
    147  - print(" \ \033[1;31m,__,\033[1;m # Passwords")
    148  - print(" \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # Profiler")
     160 + print(" \033[07m cupp.py! \033[27m # \033[07mC\033[27mommon")
     161 + print(" \ # \033[07mU\033[27mser")
     162 + print(" \ \033[1;31m,__,\033[1;m # \033[07mP\033[27masswords")
     163 + print(
     164 + " \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # \033[07mP\033[27mrofiler"
     165 + )
    149 166   print(" \033[1;31m(__) )\ \033[1;m ")
    150 167   print(
    151 168   " \033[1;31m ||--|| \033[1;m\033[05m*\033[25m\033[1;m [ Muris Kurgas | [email protected] ]"
    skipped 928 lines
  • screenshots/cupp-example.gif
Please wait...
Page is in error, reload to recover