Uploaded part of new BAC update

Release soon <3
This commit is contained in:
KittyNeverDies 2023-06-03 16:41:43 +00:00 committed by GitHub
parent 3889f19161
commit 1c0948baf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

23
launch.py Normal file
View File

@ -0,0 +1,23 @@
import argparse
from bucket import launch
def parse_args():
args = argparse.ArgumentParser(
prog='',
description='Detecting DLL injection into application',
epilog='Please be accurate with arguments!',
)
args.add_argument("apppath")
args.add_argument("logspath")
args.add_argument("--protect", help="Protects selected application",
default="Protect",
action="store_true", required=False)
gotten_args = args.parse_args()
return gotten_args
if __name__ == '__main__':
launch(parse_args())

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
psutil~=5.9.5