mirror of
https://github.com/Bw3ll/ShellWasp
synced 2026-06-08 10:31:49 +00:00
72 lines
2.6 KiB
Python
72 lines
2.6 KiB
Python
import colorama
|
|
|
|
colorama.init()
|
|
|
|
|
|
red ='\u001b[31;1m'
|
|
gre = '\u001b[32;1m'
|
|
yel = '\u001b[33;1m'
|
|
blu = '\u001b[34;1m'
|
|
mag = '\u001b[35;1m'
|
|
cya = '\u001b[36;1m'
|
|
whi = '\u001b[37m'
|
|
res = '\u001b[0m'
|
|
res2 = '\u001b[0m'
|
|
|
|
|
|
def showOptions():
|
|
pass
|
|
|
|
def splash():
|
|
|
|
|
|
splash=yel+"""
|
|
|
|
" , ,
|
|
", ,
|
|
"" _---. ..;%%%;, .
|
|
"" .", , .==% %%%%%%% ' .
|
|
"", %%% =%% %%%%%%; ; ;-_
|
|
%; %%%%% .;%;%%%"%p ---; _ '-_
|
|
%; %%%%% __;%%;p/; O --_ "-,_
|
|
q; %%% /v \;%p ;%%%%%;--__ "'-__'-.__
|
|
//\\" // \ % ;%%%%%%%;',/%\_ __ "'-_'\__
|
|
\ / // \/ ;%% %; %;/\%%%%;;;;\ "- _\
|
|
," %; %%; %%;;' ';% -\-__
|
|
-=\=" __% %%;_ |;; %%%\ \
|
|
_/ _= \==_;;,_ %%%; % -_ /
|
|
/ /- =%- ;%%%%; %%; "--__/
|
|
//= ==%-%%; %; %
|
|
/ _=_- d ;%; ;%; :F_P:
|
|
\ =,-" d%%; ;%%;
|
|
// % ;%%;
|
|
// d%%%"
|
|
\ %%
|
|
v """+res
|
|
splash2=cya+""" _____ _ _ ___ __
|
|
/ ____| | | | \ \ / /
|
|
| (___ | |__ ___| | |\ \ /\ / /_ _ ___ _ __
|
|
\___ \| '_ \ / _ \ | | \ \/ \/ / _` / __| '_ \
|
|
____) | | | | __/ | | \ /\ / (_| \__ \ |_) |
|
|
|_____/|_| |_|\___|_|_| \/ \/ \__,_|___/ .__/
|
|
| |
|
|
Syscall Shellcode for WoW64, 32-bit |_|
|
|
|
|
"""+res
|
|
author=yel+" v.2.0: Bramwell Brizendine, 2022-2023"+res
|
|
print (splash)
|
|
print (splash2)
|
|
print (author)
|
|
|
|
oldSlash2=cya+"""
|
|
_____ _____ _ _ _ _
|
|
/ ___| / ___| | | | | | |
|
|
\ `--. _ _ ___ \ `--.| |__ ___| | | ___ ___ __| | ___
|
|
`--. \ | | / __| `--. \ '_ \ / _ \ | |/ __/ _ \ / _` |/ _ \
|
|
/\__/ / |_| \__ \/\__/ / | | | __/ | | (_| (_) | (_| | __/
|
|
\____/ \__, |___/\____/|_| |_|\___|_|_|\___\___/ \__,_|\___|
|
|
__/ |
|
|
|___/ Syscall Shellcode for WoW64, 32-bit
|
|
|
|
|
|
""" |