Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
412 views

Tools for finding Shared Mutable data bugs in Java

I have a large legacy system to maintain. The codebase uses threads all over the place and those threads share a lot of mutable data. I know, sounds bad. Anyway, don't answer "rewrite the whole ...
5
votes
4answers
5k views

What is Dynamic Code Analysis?

What is Dynamic Code Analysis? How is it different from Static Code Analysis (ie, what can it catch that can't be caught in static)? I've heard of bounds checking and memory analysis - what are ...
3
votes
4answers
225 views

tool to graph method calls over time

I'm looking for a tool that can graph method calls over time for a java app. Perhaps a profiler or other log parsing tool? I know I can write something in python and I'll work towards doing this. I ...
3
votes
4answers
681 views

What are some interesting, free, open-source Dynamic Analysis tools for Java?

I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be: Open-source (so I can learn from them) Free (both as in speech and beer, ...
3
votes
5answers
920 views

Best tool for assisting writing complex SQL-queries?

I often find myself spending a lot of time figuring out why certain SUM()-aggregates sum up wrongly in SQL-queries. This problem often occurs if I do not take care when adding a JOIN, resulting in ...
3
votes
5answers
604 views

Anyone using VeraCode for static analysis?

My company is looking at using VeraCode for some independent static analysis of our binaries. Anyone out there using them? I would also be interested to hear from anyone using their dynamic analysis ...
2
votes
2answers
303 views

Are there any C++ tools that detect misuse of static_cast, dynamic_cast, and reinterpret_cast?

The answers to the following question describe the recommended usage of static_cast, dynamic_cast, and reinterpret_cast in C++: ...
1
vote
2answers
183 views

What is dynamic program analysis and its principles? Literature on dynamic program analysis

What are the basic concepts of dynamic program analysis? What are the basic techniques of dynamic program analysis? Is gprof (GNU profiler) dynamic analysis tool or static analysis tool? Please ...
0
votes
0answers
25 views

Dynamic analysis of code using LLVM

I want to do find the dynamic slice of the code using LLVM. But I am not able to find the suitable function to do dynamic analysis of my code in LLVM. I need some functions from which I should start.
0
votes
1answer
75 views

Dynamic malware analysis

I am new to malware analysis and I have following questions regarding dynamic malware analysis: How to solve multiple path problem in dynamic analysis(any tools available)? what else I need to ...
0
votes
2answers
335 views

Python interface to dynamic binary instrumentaton framework PIN

I work in analyzing binary files, using Python. I have been using debuggers to do a dynamic analysis (i.e running the application and using breakpoints to get runtime execution). however, results can ...