I am reverse engineering a serial communication protocol. After i decode the bits I am supposed to write an interface for it. My choices are split between writing a filter driver to intercept the data coming in and going out or just have a basic serial direct communication. Is there any advantage over using one method as opposed to the other?
Filter driver vs Direct Serial Communcation
162 Views Asked by RichardMsiska At
1
There are 1 best solutions below
Related Questions in REVERSE-ENGINEERING
- How to break code on a click event?
- How to increment versionCode using APKTool?
- Alloy traces and projection issues
- Understanding assembly of a simple C program
- Bomb lab phase 5
- I am not able to generate hibernate.reveng.xml
- Database reverse engineering tool with columnDefinition support
- Unable to see all the classes in an android application using AndBug tool
- Reverse engineer database in spring data rest
- Entity Framework 6.1 - debug t4 script execution with customized code first reverse engineering
- Differences between call, push+ret and push+jump in assembly
- Bomb lab assembly explanation
- Android bytecode: value of some variables not defined
- Reverse engineering proprietary magnetic card formats
- How many arguments are passed in a function call?
Related Questions in SERIAL-COMMUNICATION
- Visual Studio windows form application C# serial communication receive data?
- communicationg to device using cdc usb protocol in c# windows application
- Read after restart - RS232 Serial communication using Serial Library - C++
- Setting up a Com Port
- Verilog Inter-FPGA SPI Communication
- Serial communication between Arduino and Java
- QSerialPort starts communication after to some data were transmitted
- C# Sending Serial Commands to Arduino
- accessing serial port on multiple forms in vb.net
- arduino serial HELP ME
- How to read raw serial data using Java?
- arduino and visual studio c++, 2 way serial communication
- Android app not synchronized with Arduino Serial communication
- Can't read two bytes through Serial.read - Arduino
- "Communications Error - Check baud rate" after flashing NodeMCU with Latest .bin file
Related Questions in FILTER-DRIVER
- Loading a Windows Driver Class other than NetService to act as an NDIS Filter
- How to properly register a completion routine for an internal device control request for a lower filter disk driver?
- Lower Filter Driver
- Profiling NDIS filter driver contention
- how can I get referenced original file name at minifilter When I did 'save as'?
- Unable to install filter driver using wix
- Minifilter Driver : Specifying Altitude leads to BSOD
- Detect & Block Read/WriteProcessMemory calls from a Driver
- Solution for creating a firewall filter layer (c/c++) on Windows?
- File System Filter Driver: Creating a Defragmenter
- Support write operation in FUSE filesystem using FUSE-J
- how to get file name safetly and compare it in windows minifilter driver
- Filter driver vs Direct Serial Communcation
- WPD Upper Filter causing MTP device installation fail
- UMDF filter driver for MTP devices
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Well, there's a big difference:
These are pretty grave disadvantages. About the only advantage of a filter driver that I can think of is that the code is completely invisible to the user mode programmer. This is however also a liability, there's very little this programmer can do to help you with diagnostic information when the filter driver misbehaves.