-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (21 loc) · 932 Bytes
/
__init__.py
File metadata and controls
28 lines (21 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
REDACTS - REDCap Arbitrary Code Threat Scan
=============================================
Forensic security scanner for REDCap installations.
Tools: Semgrep, Trivy, YARA, tree-sitter, Magika, DAST (Playwright)
Usage:
python -m REDACTS
DISCLAIMER:
REDACTS is a forensic analysis AID. It is designed to assist security
teams in investigating REDCap installations, but it does NOT replace
and cannot substitute for thorough manual review by qualified
professionals. Results are not guaranteed to be complete or definitive.
Use as an auxiliary tool within your incident response workflow, not
as the sole basis for security decisions.
Copyright 2024-2026 The Adimension / Shehab Anwer
Licensed under the Apache License, Version 2.0
Contact: atrium@theadimension.com
"""
__version__ = "2.0.0"
__author__ = "The Adimension / Shehab Anwer"
from .core import REDACTSConfig