Small Impromeant

This commit is contained in:
BlackSnufkin
2025-01-05 15:11:54 -08:00
parent 0b127dce41
commit 3db47dbf2f
+186 -73
View File
@@ -499,7 +499,7 @@ class Utils:
def calculate_file_risk(self, file_info, static_results=None, dynamic_results=None):
"""
Calculate overall file risk score based on all available analysis results.
Calculate overall file risk score with enhanced static analysis impact.
Args:
file_info (dict): Information about the file.
@@ -512,11 +512,11 @@ class Utils:
risk_score = 0
risk_factors = []
# Base weights for different analysis types
# Adjusted weights to minimize PE info impact
WEIGHTS = {
'pe_info': 0.2, # Reduced from 0.3
'static': 0.4, # Increased from 0.3
'dynamic': 0.4 # Kept the same
'pe_info': 0.10, # Minimal impact
'static': 0.50, # Maintain high static analysis weight
'dynamic': 0.40 # Slightly increased
}
# 1. PE Information Risk Calculation
@@ -524,108 +524,208 @@ class Utils:
pe_risk = 0
pe_info = file_info['pe_info']
# Check section entropy
# Enhanced entropy detection
high_entropy_sections = 0
very_high_entropy_sections = 0
for section in pe_info.get('sections', []):
if section.get('entropy', 0) > 7.2:
entropy = section.get('entropy', 0)
if entropy > 7.5: # Very high entropy threshold
very_high_entropy_sections += 1
risk_factors.append(f"Critical entropy in section {section.get('name', 'UNKNOWN')}: {entropy:.2f}")
elif entropy > 7.0:
high_entropy_sections += 1
risk_factors.append(f"High entropy in section {section.get('name', 'UNKNOWN')}")
risk_factors.append(f"High entropy in section {section.get('name', 'UNKNOWN')}: {entropy:.2f}")
pe_risk += min(high_entropy_sections * 20, 40)
pe_risk += min(high_entropy_sections * 10 + very_high_entropy_sections * 20, 40)
# Check suspicious imports
suspicious_imports = len(pe_info.get('suspicious_imports', []))
if suspicious_imports > 0:
pe_risk += min(suspicious_imports * 10, 30)
risk_factors.append(f"Found {suspicious_imports} suspicious imports")
# Enhanced import analysis
suspicious_imports = pe_info.get('suspicious_imports', [])
if suspicious_imports:
# Categorize imports based on their risk level
critical_functions = {
'createremotethread', 'virtualallocex', 'writeprocessmemory', # Process injection
'ntmapviewofsection', 'zwmapviewofsection' # Memory mapping
}
high_risk_functions = {
'loadlibrarya', 'loadlibraryw', 'getprocaddress', # Dynamic loading
'openprocess', 'virtualallocexnuma' # Process manipulation
}
# Count imports by severity based on function names
critical_imports = sum(1 for imp in suspicious_imports
if imp.get('function', '').lower() in critical_functions)
high_risk_imports = sum(1 for imp in suspicious_imports
if imp.get('function', '').lower() in high_risk_functions)
pe_risk += min(critical_imports * 15 + high_risk_imports * 8, 30)
if critical_imports > 0 or high_risk_imports > 0:
risk_factors.append(f"Found {critical_imports} critical process manipulation and {high_risk_imports} high-risk dynamic loading imports")
# Check checksum mismatch
# Enhanced checksum analysis
if pe_info.get('checksum_info'):
checksum = pe_info['checksum_info']
if checksum.get('stored_checksum') != checksum.get('calculated_checksum'):
pe_risk += 30
pe_risk += 25 # Reduced impact
risk_factors.append("PE checksum mismatch detected")
risk_score += (pe_risk / 100) * WEIGHTS['pe_info'] * 100
# 2. Static Analysis Risk Calculation
# 2. Enhanced Static Analysis Risk Calculation
if static_results:
static_risk = 0
# YARA detections with severity consideration
# Enhanced YARA detection scoring
yara_matches = static_results.get('yara', {}).get('matches', [])
yara_score, yara_factors = self.calculate_yara_risk(yara_matches)
if yara_score > 0:
static_risk += yara_score
# Apply multiplier for multiple matching rules
match_multiplier = min(len(yara_matches) * 0.15 + 1, 1.5) # Up to 50% boost
static_risk += yara_score * match_multiplier
# Directly use the yara_factors which already include severity
risk_factors.extend([f"Static: {factor}" for factor in yara_factors])
# CheckPLZ findings
# Enhanced CheckPLZ analysis
checkplz_findings = static_results.get('checkplz', {}).get('findings', {})
if checkplz_findings.get('initial_threat'):
static_risk += 50
risk_factors.append("CheckPLZ detected initial threat indicators")
if checkplz_findings:
threat_score = 0
if checkplz_findings.get('initial_threat'):
threat_score += 50
risk_factors.append("Critical: CheckPLZ detected initial threat indicators")
# Additional CheckPLZ indicators
indicators = checkplz_findings.get('threat_indicators', [])
if indicators:
indicator_score = min(len(indicators) * 15, 40)
threat_score += indicator_score
risk_factors.append(f"Found {len(indicators)} additional threat indicators")
static_risk += threat_score
# Add file entropy analysis
if static_results.get('file_entropy'):
entropy = static_results['file_entropy']
if entropy > 7.5:
static_risk += 30
risk_factors.append(f"Critical overall file entropy: {entropy:.2f}")
elif entropy > 7.0:
static_risk += 20
risk_factors.append(f"High overall file entropy: {entropy:.2f}")
risk_score += (static_risk / 100) * WEIGHTS['static'] * 100
# 3. Dynamic Analysis Risk Calculation
if dynamic_results:
dynamic_risk = 0
# YARA detections with severity consideration
# YARA dynamic detections
yara_matches = dynamic_results.get('yara', {}).get('matches', [])
yara_score, yara_factors = self.calculate_yara_risk(yara_matches)
if yara_score > 0:
dynamic_risk += yara_score
# Similarly for dynamic, use the factors directly
risk_factors.extend([f"Dynamic: {factor}" for factor in yara_factors])
# PE-Sieve detections
pesieve_suspicious = int(dynamic_results.get('pe_sieve', {})
.get('findings', {}).get('total_suspicious', 0))
# Enhanced PE-Sieve scoring
pesieve_findings = dynamic_results.get('pe_sieve', {}).get('findings', {})
pesieve_suspicious = int(pesieve_findings.get('total_suspicious', 0))
if pesieve_suspicious > 0:
dynamic_risk += min(pesieve_suspicious * 20, 40) # Cap at 40 points
severity_multiplier = 1.0
if pesieve_findings.get('severity') == 'critical':
severity_multiplier = 1.5
pe_sieve_score = min(pesieve_suspicious * 20 * severity_multiplier, 45)
dynamic_risk += pe_sieve_score
risk_factors.append(f"PE-Sieve found {pesieve_suspicious} suspicious indicators")
# Moneta memory anomalies
# Enhanced memory anomaly detection
moneta_findings = dynamic_results.get('moneta', {}).get('findings', {})
memory_anomalies = sum([
int(moneta_findings.get('total_private_rwx', 0) or 0),
int(moneta_findings.get('total_private_rx', 0) or 0),
int(moneta_findings.get('total_modified_code', 0) or 0),
int(moneta_findings.get('total_heap_executable', 0) or 0),
int(moneta_findings.get('total_modified_pe_header', 0) or 0),
int(moneta_findings.get('total_inconsistent_x', 0) or 0),
int(moneta_findings.get('total_missing_peb', 0) or 0),
int(moneta_findings.get('total_mismatching_peb', 0) or 0)
])
if memory_anomalies > 0:
dynamic_risk += min(memory_anomalies * 10, 30) # Cap at 30 points
risk_factors.append(f"Found {memory_anomalies} memory anomalies")
if moneta_findings:
# Weight different types of anomalies
memory_scores = {
'total_private_rwx': 15, # Highest risk
'total_modified_code': 12,
'total_heap_executable': 10,
'total_modified_pe_header': 10,
'total_private_rx': 8,
'total_inconsistent_x': 8,
'total_missing_peb': 5,
'total_mismatching_peb': 5
}
total_score = 0
anomaly_count = 0
for key, weight in memory_scores.items():
count = int(moneta_findings.get(key, 0) or 0)
if count > 0:
total_score += min(count * weight, weight * 2) # Cap each type
anomaly_count += count
if anomaly_count > 0:
dynamic_risk += min(total_score, 40) # Overall cap
risk_factors.append(f"Found {anomaly_count} weighted memory anomalies")
# Patriot detections
patriot_findings = len(dynamic_results.get('patriot', {})
.get('findings', {}).get('findings', []))
if patriot_findings > 0:
dynamic_risk += min(patriot_findings * 15, 30) # Cap at 30 points
risk_factors.append(f"Found {patriot_findings} suspicious behaviors")
# Enhanced behavior analysis
patriot_findings = dynamic_results.get('patriot', {}).get('findings', {})
if patriot_findings:
behaviors = patriot_findings.get('findings', [])
behavior_count = len(behaviors)
if behavior_count > 0:
# Weight by severity
severity_scores = {
'critical': 25,
'high': 15,
'medium': 10,
'low': 5
}
behavior_score = 0
for behavior in behaviors:
severity = behavior.get('severity', 'low')
behavior_score += severity_scores.get(severity, 5)
dynamic_risk += min(behavior_score, 35)
risk_factors.append(f"Found {behavior_count} weighted suspicious behaviors")
# HSB detections
# Enhanced HSB detection
hsb_findings = dynamic_results.get('hsb', {}).get('findings', {})
if hsb_findings and hsb_findings.get('detections'):
hsb_detections = len(hsb_findings['detections'][0].get('findings', []))
if hsb_detections > 0:
dynamic_risk += min(hsb_detections * 20, 40) # Cap at 40 points
risk_factors.append(f"Found {hsb_detections} HSB detections")
total_hsb_score = 0
for detection in hsb_findings['detections']:
if detection.get('findings'):
count = len(detection['findings'])
severity = detection.get('max_severity', 1)
# Weight by severity
severity_multiplier = 1 + (severity * 0.5) # 1.5x for severity 1, 2x for severity 2, etc.
detection_score = min(count * 15 * severity_multiplier, 40)
total_hsb_score += detection_score
if severity >= 2:
risk_factors.append(f"Critical: Found {count} high-severity memory operations")
else:
risk_factors.append(f"Found {count} suspicious memory operations")
dynamic_risk += min(total_hsb_score, 45)
risk_score += (dynamic_risk / 100) * WEIGHTS['dynamic'] * 100
# Normalize final score to 0-100 range and round to 2 decimal places
risk_score = round(min(max(risk_score, 0), 100), 2)
# Normalize final score and apply exponential weighting for high-risk factors
base_score = min(max(risk_score, 0), 100)
if base_score > 75: # High-risk threshold
# Apply exponential scaling to high scores
risk_score = min(base_score * 1.15, 100)
return risk_score, risk_factors
return round(risk_score, 2), risk_factors
def calculate_process_risk(self, dynamic_results):
"""
Calculate risk score for process-based analysis using only dynamic results.
Improved to provide more accurate risk assessment.
Args:
dynamic_results (dict): Dynamic analysis results from process scanning
@@ -639,18 +739,19 @@ class Utils:
if not dynamic_results:
return 0, []
# YARA detections with severity consideration
# YARA detections (high impact)
yara_matches = dynamic_results.get('yara', {}).get('matches', [])
yara_score, yara_factors = self.calculate_yara_risk(yara_matches)
if yara_score > 0:
risk_score += yara_score
risk_score += yara_score # Direct addition as YARA indicates high risk
risk_factors.extend([f"Dynamic: {factor}" for factor in yara_factors])
# PE-Sieve detections
# PE-Sieve detections (moderate impact)
pesieve_findings = dynamic_results.get('pe_sieve', {}).get('findings', {})
pesieve_suspicious = int(pesieve_findings.get('total_suspicious', 0))
if pesieve_suspicious > 0:
risk_score += min(pesieve_suspicious * 25, 50) # Increased weight for processes
# Adjusted to give moderate weight - single suspicious item shouldn't trigger high risk
risk_score += min(pesieve_suspicious * 15, 30) # Reduced from 25/50 to 15/30
risk_factors.append(f"PE-Sieve found {pesieve_suspicious} suspicious modifications")
# Moneta memory anomalies
@@ -666,35 +767,47 @@ class Utils:
int(moneta_findings.get('total_mismatching_peb', 0) or 0)
])
if memory_anomalies > 0:
risk_score += min(memory_anomalies * 15, 40) # Increased weight for memory anomalies
risk_score += min(memory_anomalies * 10, 30) # Reduced from 15/40 to 10/30
risk_factors.append(f"Found {memory_anomalies} memory anomalies")
# Patriot detections
patriot_findings = len(dynamic_results.get('patriot', {})
.get('findings', {}).get('findings', []))
if patriot_findings > 0:
risk_score += min(patriot_findings * 20, 40) # Increased weight for behavior
risk_score += min(patriot_findings * 15, 35) # Reduced from 20/40 to 15/35
risk_factors.append(f"Found {patriot_findings} suspicious behaviors")
# HSB detections
# HSB detections with proper severity handling
hsb_findings = dynamic_results.get('hsb', {}).get('findings', {})
if hsb_findings and hsb_findings.get('detections'):
for detection in hsb_findings['detections']:
if detection.get('findings'):
hsb_detections = len(detection['findings'])
if hsb_detections > 0:
risk_score += min(hsb_detections * 25, 50) # Increased weight for processes
risk_factors.append(f"Found {hsb_detections} suspicious stack/memory operations")
# Consider severity levels
max_severity = detection.get('max_severity', 0)
if max_severity >= 2: # Mid or higher severity
risk_score += 20
risk_factors.append("High severity memory anomalies detected")
# Adjust scoring based on severity
if max_severity == 0: # LOW
score = min(hsb_detections * 10, 20)
elif max_severity == 1: # MID
score = min(hsb_detections * 15, 25)
else: # HIGH
score = min(hsb_detections * 20, 35)
risk_score += score
severity_text = "LOW" if max_severity == 0 else "MID" if max_severity == 1 else "HIGH"
risk_factors.append(f"Found {hsb_detections} {severity_text} severity memory operations")
# Normalize final score to 0-100 range and round to 2 decimal places
risk_score = round(min(max(risk_score, 0), 100), 2)
# Final normalization with more granular scaling
if risk_score > 0:
# Ensure single low/mid severity findings don't trigger high risk
if max(yara_score, 0) == 0 and pesieve_suspicious <= 1:
risk_score = min(risk_score, 65) # Cap at 65 if no YARA matches and only minor PE-Sieve findings
# Additional cap for low severity combinations
if all(f.lower().find('high') == -1 for f in risk_factors):
risk_score = min(risk_score, 75) # Cap at 75 if no high severity findings
return risk_score, risk_factors
return round(min(max(risk_score, 0), 100), 2), risk_factors
def get_risk_level(self, risk_score):
"""