I'm writing a fuzzer and I need to change the configuration file and run some .exe file that uses it, and try to break in this way .exe. I would like to know if Python has the ability to view the state of registers and stack of any application, so that I can understand the reason for the application crash. For example .exe reads some int value, and uses it as length for the string, so if I change this value and it causes buffer overflow, a wanna to know the stack and registers statement at that moment.
how to find out the state of registers and the stack of an .exe with python script
67 Views Asked by Ymn1chkA At
0
There are 0 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in STACK
- What is causing my towers of hanoi logic to infinitely loop?
- Asking code suggestions about data structure and algorithm
- Why is 'EDITBIN /STACK:2097152 w3wp.exe' cmd is giving me an LNK1342 error?
- issues with circular queues
- Missing PAGE_GUARD flag on the memory of stack for one windows application
- Purpose of stack register(s) in holding 0x7c00
- Split Dataframe and stack horizontally
- segmentation fault (core dumped) in C programming
- How to find Find max right using stack?
- Does an Stackoverflow occur in the JVM if the Activation Record is too small but there is still space left in the general stack?
- How to create 100 maps with bootstrapping using stacked ensemble fit with tidymodels
- How does the class Exchanger in Java actually work?
- How can I improve the iterative approach to be faster than recursive implementation, as usual?
- Need to make Stack cards on nav click as well ass page scroll with help of jquery
- Puncover: Stack column is empty after analysis
Related Questions in REVERSE-ENGINEERING
- How to find a sequence of bytes on the target program from my injected dll?
- Reversing and vtable swapping in dxgi.dll
- How to know Vector3 Position in Unity Mono Game
- Extracting an archive created via Java RandomAccessFile with PHP
- How can I verbosely track the whole process of calling a function?
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- Grab SSL pinning certificate using Frida on iOS
- Kaitai Struct: error accessing elements in _parent
- How to restore damaged (mp3?) file
- CGSRegionRef: How is an arbitrary region represented as union of rects?
- can a convolutional neural network be reverse engineered?
- Decode suspected timestamps
- Extract Note Text Format (Bold/Italic/Strikethrough) from iOS OTG Backup
- Reverse engineer LCD Protocol used in MPC2000XL
- Opening a serial port using a prebuilt .so library
Related Questions in CPU-REGISTERS
- Understanding the differences between mov and lea instructions in x86 assembly
- Move immediate 8-bit value into RSI, RDI, RSP or RBP
- Maximum CPU Voltage reading
- Enabling one timer using another
- CMP ESI, -20. This part of code makes no sense to me. How does this magic work?
- Why doesn't this pop instruction restore the register values?
- Configuring timer channel as output
- Setting up Segment Registers, x86
- Why arm64 pass params throught register x8-x17?
- gdbserver and ymm0h register
- Unit tests on registers with bare metal programming
- Performance advantage of 32bit registers in AArch64?
- What is the meaning of "ptr" in assembly?
- What is the meaning of register1:register2 in assembly language?
- The SUB instruction in CPU
Related Questions in FUZZER
- Echidna(Fuzz) assertion test fail about sending ether
- afl-gcc-fast make Fail missing separator error
- How to apply C++ fuzzing test on function that has nested Google protobuf arguments?
- How to record each output during fuzzing?
- Fuzzer peach, why element "Choice" doesn't work?
- Microsoft REST-ler fuzzer - unable to use Proxy and Authentication token when doing fuzzy testing
- OWASP ZAP Pitchfork?
- Firmware AFL++ fuzzing fails
- OWASP ZAP fuzzer header and body
- How to compile libav for AFLGo
- Why Fuzz images?
- how to find out the state of registers and the stack of an .exe with python script
- subprocess return None what does that mean for my fuzzer
- How to fix syntax for fuzzing network layer on Sulley fuzzer
- How to create an augmented AFL fuzzer which skips certain seeds?
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?