Skip to content

Commit

Permalink
Merge pull request Mebus#58 from Mebus/quantumcore
Browse files Browse the repository at this point in the history
merge quantumcore's branch
  • Loading branch information
Mebus authored Jul 11, 2020
2 parents f986144 + 5fb45ec commit 00f7c3e
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[bumpversion]
current_version = 3.3.0
commit = True
tag = True

[bumpversion:file:cupp.py]

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ Quick start

CUPP has configuration file cupp.cfg with instructions.

## Example (Fast forwarded)

![cupp-example](screenshots/cupp-example.gif)

## License

Expand Down Expand Up @@ -108,3 +111,7 @@ to encourage further development of the tool.
* Andrea Giacomo
https://github.com/codepr

* quantumcore
https://github.com/quantumcore


29 changes: 23 additions & 6 deletions cupp.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@
import urllib.error
import urllib.parse
import urllib.request
import time

__author__ = "Muris Kurgas"
__author__ = "Mebus"
__license__ = "GPL"
__version__ = "3.2.5-alpha"
__version__ = "3.3.0"

CONFIG = {}

Expand Down Expand Up @@ -133,6 +134,20 @@ def print_to_file(filename, unique_list_finished):
+ str(lines)
+ " words.\033[1;m"
)
inspect = input("> Hyperspeed Print? (Y/n) : ").lower()
if inspect == "y":
try:
with open(filename, "r+") as wlist:
data = wlist.readlines()
for line in data:
print("\033[1;32m[" + filename + "] \033[1;33m" + line)
time.sleep(0000.1)
os.system("clear")
except Exception as e:
print("[ERROR]: " + str(e))
else:
pass

print(
"[+] Now load your pistolero with \033[1;31m"
+ filename
Expand All @@ -142,10 +157,12 @@ def print_to_file(filename, unique_list_finished):

def print_cow():
print(" ___________ ")
print(" \033[07m cupp.py! \033[27m # Common")
print(" \ # User")
print(" \ \033[1;31m,__,\033[1;m # Passwords")
print(" \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # Profiler")
print(" \033[07m cupp.py! \033[27m # \033[07mC\033[27mommon")
print(" \ # \033[07mU\033[27mser")
print(" \ \033[1;31m,__,\033[1;m # \033[07mP\033[27masswords")
print(
" \ \033[1;31m(\033[1;moo\033[1;31m)____\033[1;m # \033[07mP\033[27mrofiler"
)
print(" \033[1;31m(__) )\ \033[1;m ")
print(
" \033[1;31m ||--|| \033[1;m\033[05m*\033[25m\033[1;m [ Muris Kurgas | [email protected] ]"
Expand Down
Binary file added screenshots/cupp-example.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 00f7c3e

Please sign in to comment.