# Emulate Shellcode at Specific Offset > Run shellcode that starts at an offset within a larger binary **Tools:** [[tools/scdbgc|scdbgc]] **FOR610 Lab:** 3.5, 4.6 ## Commands ```bash # Emulate from file start scdbgc /f /s -1 # Emulate from specific offset (hex) scdbgc /f /foff /s -1 # Emulate with a file handle pre-opened (for exploits) scdbgc /f /foff /fopen /s -1 ``` #recipe #scdbgc