This commit is contained in:
caster0x00 2025-10-14 14:04:14 +04:00
parent 42b829db83
commit 93f970d6eb
4 changed files with 8 additions and 8 deletions

View file

@ -7,7 +7,7 @@ RouterOS configuration analyzer to find security misconfigurations and vulnerabi
``` ```
RouterOS Security Inspector. Designed for security engineers RouterOS Security Inspector. Designed for security engineers
Author: Magama Bazarov, <magamabazarov@mailbox.org> Author: Mahama Bazarov, <mahamabazarov@mailbox.org>
Alias: Caster Alias: Caster
Version: 1.2 Version: 1.2
``` ```
@ -237,10 +237,10 @@ options:
# Copyright # Copyright
Copyright (c) 2025 Magama Bazarov. This project is licensed under the Apache 2.0 License Copyright (c) 2025 Mahama Bazarov. This project is licensed under the Apache 2.0 License
# Outro # Outro
MikroTik devices are widely used around the world. Sara is designed to help engineers improve security - use it wisely. MikroTik devices are widely used around the world. Sara is designed to help engineers improve security - use it wisely.
E-mail for contact: magamabazarov@mailbox.org E-mail for contact: mahamabazarov@mailbox.org

View file

@ -1,6 +1,6 @@
# Auxiliary module cve_analyzer.py for searching CVE using the NIST NVD database # Auxiliary module cve_analyzer.py for searching CVE using the NIST NVD database
# Copyright (c) 2025 Magama Bazarov # Copyright (c) 2025 Mahama Bazarov
# Licensed under the Apache 2.0 License # Licensed under the Apache 2.0 License
# This project is not affiliated with or endorsed by MikroTik # This project is not affiliated with or endorsed by MikroTik

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Copyright (c) 2025 Magama Bazarov # Copyright (c) 2025 Mahama Bazarov
# Licensed under the Apache 2.0 License # Licensed under the Apache 2.0 License
# This project is not affiliated with or endorsed by MikroTik # This project is not affiliated with or endorsed by MikroTik
@ -25,7 +25,7 @@ def banner():
# Display the program banner and metadata # Display the program banner and metadata
print(banner_text) print(banner_text)
print(" " + Fore.YELLOW + "RouterOS Security Inspector. Designed for security engineers") print(" " + Fore.YELLOW + "RouterOS Security Inspector. Designed for security engineers")
print(" " + Fore.YELLOW + "Author: " + Style.RESET_ALL + "Magama Bazarov, <magamabazarov@mailbox.org>") print(" " + Fore.YELLOW + "Author: " + Style.RESET_ALL + "Mahama Bazarov, <mahamabazarov@mailbox.org>")
print(" " + Fore.YELLOW + "Alias: " + Style.RESET_ALL + "Caster") print(" " + Fore.YELLOW + "Alias: " + Style.RESET_ALL + "Caster")
print(" " + Fore.YELLOW + "Version: " + Style.RESET_ALL + "1.2") print(" " + Fore.YELLOW + "Version: " + Style.RESET_ALL + "1.2")
print(" " + Fore.YELLOW + "Documentation & Usage: " + Style.RESET_ALL + "https://github.com/caster0x00/Sara\n") print(" " + Fore.YELLOW + "Documentation & Usage: " + Style.RESET_ALL + "https://github.com/caster0x00/Sara\n")

View file

@ -4,8 +4,8 @@ setup(
name="sara", name="sara",
version="1.2", version="1.2",
url="https://github.com/caster0x00/Sara", url="https://github.com/caster0x00/Sara",
author="Magama Bazarov", author="Mahama Bazarov",
author_email="magamabazarov@mailbox.org", author_email="mahamabazarov@mailbox.org",
scripts=['sara.py'], scripts=['sara.py'],
description="RouterOS Security Inspector", description="RouterOS Security Inspector",
long_description=open('README.md', encoding="utf8").read(), long_description=open('README.md', encoding="utf8").read(),