Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoltSecurities authored Mar 3, 2024
1 parent d9ae174 commit 9f976fd
Show file tree
Hide file tree
Showing 48 changed files with 137,242 additions and 0 deletions.
Empty file added __init__.py
Empty file.
Empty file added probuster/__init__.py
Empty file.
Binary file added probuster/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Empty file.
Binary file added probuster/__pycache__/handler.cpython-311.pyc
Binary file not shown.
Binary file added probuster/__pycache__/probuster.cpython-311.pyc
Binary file not shown.
Empty file added probuster/modules/__init__.py
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
48 changes: 48 additions & 0 deletions probuster/modules/banner/banner.py
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.
Loading

0 comments on commit 9f976fd

Please sign in to comment.