Add poc video

This commit is contained in:
flux
2024-06-30 21:02:16 +01:00
parent dfc654a6fa
commit e7d23a1601
+1 -4
View File
@@ -1,6 +1,6 @@
# APC Queue Injection Rust
Check my blog post out about this technique [here](https://fluxsec.red/apc-queue-injection-rust)!
Check my blog post out about [this technique here](https://fluxsec.red/apc-queue-injection-rust)! You can find the [proof of concept video on my YouTube](https://www.youtube.com/watch?v=H68IAfeWxaM).
This project performs APC Queue Injection in Rust, an EDR Evasion and EDR Bypass technique!
@@ -14,6 +14,3 @@ APC's are a strange thing, in that I have never seen them used in a project I ha
- Networking: In network applications, APCs allow for non-blocking socket operations. This means a thread can continue processing other tasks while waiting for data to be sent or received, improving the application's responsiveness.
- File System: When performing file read/write operations, APCs can be used to queue completion routines, allowing the thread to handle other tasks while waiting for I/O operations to complete.
- Signaling: APCs facilitate communication between threads by allowing one thread to queue a function for execution by another thread. This is useful for signaling and coordinating complex multi-threaded operations.
POC video coming soon!