- Added IPReputationChecker class for checking and caching IP reputation scores. - Introduced IReputationResult interface and ReputationThreshold enum for reputation scoring. - Implemented DNSBL checks and IP information retrieval within the IP reputation checker. - Created SecurityLogger class for logging security events with various log levels and event types. - Defined ISecurityEvent interface for structured logging of security events. - Updated index.ts to export new classes and types for security module.
21 lines
424 B
TypeScript
21 lines
424 B
TypeScript
export {
|
|
SecurityLogger,
|
|
SecurityLogLevel,
|
|
SecurityEventType,
|
|
type ISecurityEvent
|
|
} from './classes.securitylogger.ts';
|
|
|
|
export {
|
|
IPReputationChecker,
|
|
ReputationThreshold,
|
|
IPType,
|
|
type IReputationResult,
|
|
type IIPReputationOptions
|
|
} from './classes.ipreputationchecker.ts';
|
|
|
|
export {
|
|
ContentScanner,
|
|
ThreatCategory,
|
|
type IScanResult,
|
|
type IContentScannerOptions
|
|
} from './classes.contentscanner.ts'; |