Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by mike_2000_17 … is funny because there was just a guy presenting a fuzzing tool for testing Clang (the C / C++ / Obj-C compiler… a fuzzer with no result. I don't think that fuzzing it done as routinely as you think or would hope…", and so on have a lot of bugs that fuzzing would discover. One suggestion is graphviz (the "dot"… Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by d8m9 … would probably fail my defending. > What exactly are you 'fuzzing'? Some program with command-line input. > What do you…; a bachelor thesis and basically it will be about what fuzzing is, it's importance, how it's done and some… Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by L7Sqr … want to fuzz? 3. Is this a purely 'black box' fuzzing environment? For memory leaks and buffer overflows, there are many… will help identify locations to focus on. There are also fuzzing tools [available](http://www.cert.org/vulnerability-analysis/tools/bff… Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by d8m9 Hi, for my final thesis I choose to elaborate about fuzzing. When I will defending my thesis I should have some results, some bugs. I would like to test some unix program but I need to choose carefully. I need the probability of finding a bug to be the greatest. Any ideas? Thank you! Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by L7Sqr … sure that is the proper approach. What exactly are you 'fuzzing'? What do you expect your fuzz to produce when it… Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by d8m9 Thank you for your response. It will be 'black box' fuzzing environment. Problem is that I am not sure what exact program to fuzz. Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by L7Sqr … projects you will find at least one bug using know fuzzing tools (or even writing a simple one yourself). As you… Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by d8m9 Thank you for your recommendation. My apologies for not responding for a while. I chosed to fuzz Zip file format via intelligent brute force fuzzing method and found bugs in two programs. Python save prints of code in txt Programming Software Development by hurley …("COLUMN") == -1: print "\n[+] Fuzzing Tables\n" fuzzer("table", tables, "…find("COLUMN") != -1: print "\n[+] Fuzzing Columns\n" fuzzer("column", columns, "…find("COLUMN") != -1: print "\n[+] Fuzzing Tables & Columns\n" bothfuzz() print "\n… PDF Spam - a Step ahead of Image Spam Hardware and Software Networking by Michael_Knight … to tell Computers and Humans Apart[/B]"), they started fuzzing (including noise and distortions) images to make it even harder… Ex Microsoft security team member explains how to hack Windows Vista Hardware and Software Microsoft Windows by happygeek …"]Dark Reading[/URL] security site, Griffin has developed a 'fuzzing' tool which can hack third party vendor plug in software… Re: Java Community Center Geeks' Lounge by mike_2000_17 … tools, and code hardening tools (e.g., address / memory sanitizers, fuzzing, etc.) have all become very mature and reliable to fix… Re: Fuzzing - what to test so the probability of finding a bug is the greatest? Hardware and Software Linux and Unix by rubberman Some of the new mock tools are useful for unit testing software. I would like to see more of your "fuzzy" methodology that uncovered these bugs. Code is good...