-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9ae174
commit 9f976fd
Showing
48 changed files
with
137,242 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env python3 | ||
from colorama import Fore,Back,Style | ||
from art import * | ||
import random | ||
import random | ||
|
||
|
||
|
||
red = Fore.RED | ||
|
||
green = Fore.GREEN | ||
|
||
magenta = Fore.MAGENTA | ||
|
||
cyan = Fore.CYAN | ||
|
||
mixed = Fore.RED + Fore.BLUE | ||
|
||
blue = Fore.BLUE | ||
|
||
yellow = Fore.YELLOW | ||
|
||
white = Fore.WHITE | ||
|
||
reset = Style.RESET_ALL | ||
|
||
bold = Style.BRIGHT | ||
|
||
colors = [ green, cyan, blue] | ||
|
||
random_color = random.choice(colors) | ||
|
||
|
||
def banner(): | ||
|
||
tool_name = "ProBuster" | ||
|
||
fonts = ["big", "ogre", "shadow", "script", "colossal" , "smslant", "graffiti", "slant"] | ||
selected_font = random.choice(fonts) | ||
banner = text2art(f"{tool_name}", font=selected_font) | ||
|
||
banner = f"""{banner} | ||
{bold}{white}Author : D.SanjaiKumar @CyberRevoltSecurities{reset}\n""" | ||
|
||
|
||
|
||
return banner |
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Oops, something went wrong.