|
| 1 | +import json |
| 2 | +import os |
| 3 | +from datetime import datetime |
| 4 | +from collections import defaultdict |
| 5 | +from hashlib import sha256 |
| 6 | +import hmac |
| 7 | + |
| 8 | +class AdvancedSecurity: |
| 9 | + def __init__(self, storage_file='security_data.json'): |
| 10 | + self.storage_file = storage_file |
| 11 | + self.multi_sig_wallets = {} |
| 12 | + self.time_locked_contracts = {} |
| 13 | + self.anomaly_detection_logs = [] |
| 14 | + self.load_data() |
| 15 | + |
| 16 | + def load_data(self): |
| 17 | + """Load security data from a JSON file.""" |
| 18 | + if os.path.exists(self.storage_file): |
| 19 | + with open(self.storage_file, 'r') as file: |
| 20 | + data = json.load(file) |
| 21 | + self.multi_sig_wallets = data.get('multi_sig_wallets', {}) |
| 22 | + self.time_locked_contracts = data.get('time_locked_contracts', {}) |
| 23 | + self.anomaly_detection_logs = data.get('anomaly_detection_logs', []) |
| 24 | + |
| 25 | + def save_data(self): |
| 26 | + """Save security data to a JSON file.""" |
| 27 | + with open(self.storage_file, 'w') as file: |
| 28 | + json.dump({ |
| 29 | + 'multi_sig_wallets': self.multi_sig_wallets, |
| 30 | + 'time_locked_contracts': self.time_locked_contracts, |
| 31 | + 'anomaly_detection_logs': self.anomaly_detection_logs |
| 32 | + }, file) |
| 33 | + |
| 34 | + def create_multi_sig_wallet(self, wallet_id, owners, required_signatures): |
| 35 | + """Create a multi-signature wallet.""" |
| 36 | + if wallet_id in self.multi_sig_wallets: |
| 37 | + raise ValueError("Wallet ID already exists.") |
| 38 | + |
| 39 | + self.multi_sig_wallets[wallet_id] = { |
| 40 | + 'owners': owners, |
| 41 | + 'required_signatures': required_signatures, |
| 42 | + 'transactions': [] |
| 43 | + } |
| 44 | + self.save_data() |
| 45 | + return f"Multi-signature wallet {wallet_id} created." |
| 46 | + |
| 47 | + def submit_transaction(self, wallet_id, transaction, signer): |
| 48 | + """Submit a transaction for a multi-signature wallet.""" |
| 49 | + if wallet_id not in self.multi_sig_wallets: |
| 50 | + raise ValueError("Wallet ID not found.") |
| 51 | + |
| 52 | + wallet = self.multi_sig_wallets[wallet_id] |
| 53 | + if signer not in wallet['owners']: |
| 54 | + raise ValueError("Signer is not an owner of this wallet.") |
| 55 | + |
| 56 | + wallet['transactions'].append({ |
| 57 | + 'transaction': transaction, |
| 58 | + 'signer': signer, |
| 59 | + 'timestamp': datetime.now().isoformat() |
| 60 | + }) |
| 61 | + self.save_data() |
| 62 | + return f"Transaction submitted by {signer}." |
| 63 | + |
| 64 | + def execute_transaction(self, wallet_id): |
| 65 | + """Execute a transaction if enough signatures are provided.""" |
| 66 | + if wallet_id not in self.multi_sig_wallets: |
| 67 | + raise ValueError("Wallet ID not found.") |
| 68 | + |
| 69 | + wallet = self.multi_sig_wallets[wallet_id] |
| 70 | + if len(wallet['transactions']) < wallet['required_signatures']: |
| 71 | + return "Not enough signatures to execute the transaction." |
| 72 | + |
| 73 | + # Execute the transaction logic here |
| 74 | + # For demonstration, we will just clear the transactions |
| 75 | + wallet['transactions'] = [] |
| 76 | + self.save_data() |
| 77 | + return f"Transaction executed for wallet {wallet_id}." |
| 78 | + |
| 79 | + def create_time_locked_contract(self, contract_id, unlock_time): |
| 80 | + """Create a time-locked contract.""" |
| 81 | + if contract_id in self.time_locked_contracts: |
| 82 | + raise ValueError("Contract ID already exists.") |
| 83 | + |
| 84 | + self.time_locked_contracts[contract_id] = { |
| 85 | + 'unlock_time': unlock_time, |
| 86 | + 'status': 'locked' |
| 87 | + } |
| 88 | + self.save_data() |
| 89 | + return f"Time-locked contract {contract_id} created." |
| 90 | + |
| 91 | + def unlock_time_locked_contract(self, contract_id): |
| 92 | + """Unlock a time-locked contract if the unlock time has passed.""" |
| 93 | + if contract_id not in self.time_locked_contracts: |
| 94 | + raise ValueError("Contract ID not found.") |
| 95 | + |
| 96 | + contract = self.time_locked_contracts[contract_id] |
| 97 | + if datetime.now() < contract['unlock_time']: |
| 98 | + return "Contract is still locked." |
| 99 | + |
| 100 | + contract['status'] = 'unlocked' |
| 101 | + self.save_data() |
| 102 | + return f"Contract {contract_id} unlocked." |
| 103 | + |
| 104 | + def log_anomaly(self, user_id, action, details): |
| 105 | + """Log an anomaly detected in user behavior.""" |
| 106 | + log_entry = { |
| 107 | + 'user_id': user_id, |
| 108 | + 'action': action, |
| 109 | + 'details': details, |
| 110 | + 'timestamp': datetime.now().isoformat() |
| 111 | + } |
| 112 | + self.anomaly_detection_logs.append(log_entry) |
| 113 | + self.save_data() |
| 114 | + |
| 115 | + def get_anomaly_logs(self): |
| 116 | + """Retrieve all anomaly detection logs.""" |
| 117 | + return self.anomaly_detection_logs |
| 118 | + |
| 119 | +# Example usage |
| 120 | +if __name__ == "__main__": |
| 121 | + security_system = AdvancedSecurity() |
| 122 | + |
| 123 | + # Create a multi-signature wallet |
| 124 | + print(security_system.create_multi_sig_wallet("wallet1", ["user1", "user2 ", "user3"], 2)) |
| 125 | + |
| 126 | + # Submit a transaction |
| 127 | + print(security_system.submit_transaction("wallet1", {"amount": 100, "to": "user4"}, "user1")) |
| 128 | + |
| 129 | + # Execute the transaction |
| 130 | + print(security_system.execute_transaction("wallet1")) |
| 131 | + |
| 132 | + # Create a time-locked contract |
| 133 | + unlock_time = datetime.now().isoformat() |
| 134 | + print(security_system.create_time_locked_contract("contract1", unlock_time)) |
| 135 | + |
| 136 | + # Unlock the time-locked contract |
| 137 | + print(security_system.unlock_time_locked_contract("contract1")) |
| 138 | + |
| 139 | + # Log an anomaly |
| 140 | + security_system.log_anomaly("user1", "failed_login", "Multiple failed login attempts detected.") |
| 141 | + |
| 142 | + # Retrieve anomaly logs |
| 143 | + anomaly_logs = security_system.get_anomaly_logs() |
| 144 | + print(f"Anomaly Logs: {anomaly_logs}") |
0 commit comments