Skip to content

Commit c35f95a

Browse files
Ran --dev and updated SECURITY.md
Also bug fix to ignore pyc files (pycache) from the --dev menu Signed-off-by: Shahm Najeeb <Nirt_12023@outlook.com>
1 parent 4776121 commit c35f95a

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

CODE/_dev.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ def _handle_file_operations() -> None:
118118
Handles file operations and logging for added, removed, and normal files.
119119
"""
120120
EXCLUDE_FILES = ["logicytics\\User_History.json.gz", "logicytics\\User_History.json"]
121-
files = Get.list_of_files(".", exclude_files=EXCLUDE_FILES, exclude_dirs=["SysInternal_Suite"])
121+
files = Get.list_of_files(".", exclude_files=EXCLUDE_FILES, exclude_dirs=["SysInternal_Suite"],
122+
exclude_extensions=[".pyc"])
122123
added_files, removed_files, normal_files = [], [], []
123124
clean_files_list = [file.replace('"', '') for file in CURRENT_FILES]
124125

CODE/config.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ save_preferences = true
2626
[System Settings]
2727
# Do not play with these settings unless you know what you are doing
2828
# Dev Mode allows a safe way to modify these settings!!
29-
version = 3.4.1
29+
version = 3.4.2
3030
files = "bluetooth_details.py, bluetooth_logger.py, browser_miner.ps1, cmd_commands.py, config.ini, dir_list.py, dump_memory.py, event_log.py, Logicytics.py, log_miner.py, media_backup.py, netadapter.ps1, network_psutil.py, packet_sniffer.py, property_scraper.ps1, registry.py, sensitive_data_miner.py, ssh_miner.py, sys_internal.py, tasklist.py, tree.ps1, vulnscan.py, wifi_stealer.py, window_feature_miner.ps1, wmic.py, logicytics\Checks.py, logicytics\Config.py, logicytics\Execute.py, logicytics\FileManagement.py, logicytics\Flag.py, logicytics\Get.py, logicytics\Logger.py, logicytics\User_History.json.gz, VulnScan\Model SenseMini .3n3.pth, VulnScan\README.md, VulnScan\Vectorizer .3n3.pkl"
3131
config_url = https://raw.githubusercontent.com/DefinetlyNotAI/Logicytics/main/CODE/config.ini
3232

@@ -100,15 +100,15 @@ max_retry_time = 30
100100
###################################################
101101
[VulnScan Settings]
102102
# Following extensions to be skipped by the model
103-
unreadable_extensions = .exe,.dll,.so,.zip,.tar,.gz,.7z,.rar,.jpg,.jpeg,.png,.gif,.bmp,.tiff,.webp,.mp3,.wav,.flac,.aac,.ogg,.mp4,.mkv,.avi,.mov,.wmv,.flv,.pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.odt,.ods,.odp,.bin,.dat,.iso,.class,.pyc,.o,.obj,.sqlite,.db,.ttf,.otf,.woff,.woff2,.lnk,.url
103+
unreadable_extensions = .exe, .dll, .so, .zip, .tar, .gz, .7z, .rar, .jpg, .jpeg, .png, .gif, .bmp, .tiff, .webp, .mp3, .wav, .flac, .aac, .ogg, .mp4, .mkv, .avi, .mov, .wmv, .flv, .pdf, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .odt, .ods, .odp, .bin, .dat, .iso, .class, .pyc, .o, .obj, .sqlite, .db, .ttf, .otf, .woff, .woff2, .lnk, .url
104104
# In MB, max file size that the model is allowed to scan, if commented out disables the limit, you can also just say None
105105
max_file_size_mb = None
106106
# Max workers to be used, either integer or use auto to make it decide the best value
107107
max_workers = auto
108108

109109
[VulnScan.generate Settings]
110110
# The following settings are for the Generate module for fake training data
111-
extensions = .txt,.log,.md,.csv,.json,.xml,.html,.yaml,.ini,.pdf,.docx,.xlsx,.pptx
111+
extensions = .txt, .log, .md, .csv, .json, .xml, .html, .yaml, .ini, .pdf, .docx, .xlsx, .pptx
112112
save_path = PATH
113113

114114
# Options include:

CODE/logicytics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from logicytics.FileManagement import FileManagement
88
from logicytics.Flag import Flag
99
from logicytics.Get import Get
10-
from logicytics.Logger import log
10+
from logicytics.Logger import log, Log
1111

1212
# Check if the script is being run directly, if not, set up the library
1313
if __name__ == '__main__':

SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ This section outlines the versions of our project that are currently supported w
1111
| 3.2.x | ✖️ | Dec 19, 2024 |
1212
| 3.1.x | ✖️ | Dec 11, 2024 |
1313
| 3.0.x | ✖️ | Dec 6, 2024 |
14-
| 2.5.x | ✖️ | Nov 25, 2024 |
15-
| 2.4.x | ✖️ | Nov 12, 2024 |
16-
| 2.3.x | ✖️ | Sep 21, 2024 |
14+
| 2.5.x | | Nov 25, 2024 |
15+
| 2.4.x | | Nov 12, 2024 |
16+
| 2.3.x | | Sep 21, 2024 |
1717
| 2.2.x || Sep 9, 2024 |
1818
| 2.1.x || Aug 29, 2024 |
1919
| 2.0.x || Aug 25, 2024 |

0 commit comments

Comments
 (0)