25 lines
449 B
Python
25 lines
449 B
Python
import base64
|
|
|
|
from utils.logger import *
|
|
from utils.conn import *
|
|
from utils.mod import *
|
|
from constants import *
|
|
|
|
__name__ = "AngelC2"
|
|
__version__ = "0.1.0"
|
|
__authors__ = "hk21"
|
|
|
|
|
|
class Angel:
|
|
def __init__(self):
|
|
Logger()
|
|
Utils.clear_shell()
|
|
print(Consts.banner)
|
|
|
|
log.info("welc to angel net shell, fellow kitten!")
|
|
Conn()
|
|
|
|
|
|
if __name__ == base64.b64decode(b"QW5nZWxDMg==").decode("utf-8"):
|
|
Angel()
|