"Static Analysis" refers to the software tools (or their use) to analyze application code for arbitrary properties, such as errors (uninitialized variables, possible SQL injection-attack, is this code-dead, can an argument be null,...) or structure (what is the call graph for this code? is there ...

learn more… | top users | synonyms

1
vote
0answers
16 views

Fortify SCA/SSC Report for IA?

I'm a developer working on a mid-size c# application and am using the Fortify Secure coding plugin for Visual Studio 2010 to do static code analysis on a regular basis. We're nearing the end of this ...
-1
votes
1answer
18 views

How to do static code analysis with HipHop for PHP? [closed]

I have installed hiphop on Ubuntu following these inscrutions : https://github.com/facebook/hiphop-php/wiki/Prebuilt-Packages-on-Ubuntu-12.04 Now how do I do static code analysis on a ...
6
votes
3answers
80 views

Should this code cause a warning

I came across code similar to that below which is legal, albeit not very clever. Two stack variables in the same function in scope at the same time with the same name is legal but it can cause ...
0
votes
3answers
64 views

Accurately count number of keywords “if”, “while” in a c file

Are there any libraries out there that I can pass my .c files through and will count the visible number of, of example, "if" statements? We don't have to worry about "if" statement in other files ...
0
votes
1answer
24 views

how to find addresses that a program used?

I want to find memory addresses that a exe file uses.I have the exe file,i want to disassemble it and then based on the assembly code find memory addresses that the program used. this must be done ...
0
votes
1answer
27 views

Statically finding methods that need @Transactional but don't have it

In order to avoid database connection leaks, it's possible to configure c3p0 to let you know when they occur, and point to the problem code: <property name="unreturnedConnectionTimeout" ...
4
votes
1answer
86 views

Are there any static analysis tools that check for Rule of 3 (or Rule of 5 C++11)

I am currently working on a codebase that is built on a foundation of sand. There are numerous classes in supposedly tested libraries that violate the "Rule of 3". Most declare a non-trivial ...
3
votes
0answers
37 views

Which Regression methods are suitable for binary valued features and continuous output?

I want to build a machine learning model to regression on continuous output given binary valued features(0,1). the dimension of my problem is around 200. which of the flowing methods seems suitable ...
0
votes
0answers
17 views

Analysing setup.py python files for the correct use of the setup() method. (Static Analysis?)

I want to analyse setup.py files from a lot of packages (112000 atm). I want to know if you can exchange the possibly malicious practice of using a setup.py for a database. For this purpose i wanted ...
2
votes
3answers
49 views

How to mark a Java method as “must use result” for static analysis purposes?

When using GCC to compile C or C++, you can mark functions with attribute((warn_unused_result)) which will cause the compiler to complain if you invoke a function that returns something and then don't ...
-2
votes
0answers
68 views

Analysis tools that detect common bugs in Android app development [closed]

I am looking for analysis tools specific for Android app development! I have found many tools online that are not specific for Android, only for Java, either free or commercial, like the famous ...
2
votes
1answer
67 views

Is there an equivalent to __attribute__((ns_returns_retained)) for a malloc'd pointer?

I'm looking for an annotation something like -(SomeStruct *) structFromInternals __attribute__((returns_malloced_ptr)) { SomeStruct *ret = malloc(sizeof(SomeStruct)); //do stuff return ...
2
votes
0answers
40 views

Eclipse null analysis: The expression of type int needs unchecked conversion to conform to '@Nonnull Integer'

When configuring Eclipse 4.2.0 to perform a null analysis (configured to use @javax.annotation.Nonnull etc.), the following code will generate the warning Null type safety: The expression of type ...
4
votes
1answer
52 views

Resharper Code Inspection Additions

Is it possible to extend resharper code inspection/annotations to handle cases you know staticly are correct? For example, I have utility function I know satisfy certain conditions, such as: ...
0
votes
0answers
48 views

HP Fortify Audit Workbench

I am trying to use the HP Fortify Static Code Analyzer to analyze security concerns in a large C application and I have run into various bugs in the software itself that I cannot seem to find any ...
0
votes
0answers
25 views

java monitor objects: threads BLOCK on some

While desperately trying out anything to unravel my load test glitches I came across TDA, a thread dump analysis tool for Java. Somehow I don't feel I am following its output. For instance, shouldn't ...
0
votes
1answer
25 views

Clean way for a user to provide sets of LLVM instructions that I can parse in an LLVM Pass

I'm using LLVM to perform static analysis using opt (i.e. an LLVM Pass). To perform this analysis, the user provides me with a text file that lists a few metrics and some stats about them. I'll need ...
1
vote
1answer
26 views

How to get types and names of variables in a Java project?

I'm using Rascal to analyse a Java project and I want to retrieve for each method the types and names of the local variables. The names are easily enough with the use of the function extractProject ...
0
votes
0answers
21 views

PMD connection close false alarm

I am running the following command from command prompt. C:\java\pmd-bin-5.0.3\bin>pmd -d C:\MyClass.java -R java-design In MyClass.java I have java.sql.Connection objects. These objects are ...
0
votes
1answer
24 views

How to track a local variable by Androguard

I want to track all the Intent objects, but I cannot find the API. I want to know where a component start another in an application.Also, I want to know how does it happen, like if the Intent is a ...
3
votes
3answers
71 views

Python compile time type checking

Python doesn't check types at compile time because it can't, at least in some circumstances. But has anyone come up with a mechanism to do compile-time type checking based on extra annotations by the ...
1
vote
0answers
23 views

Where is a good place to ask questions about PREfast?

Where is a good place to ask questions about PREfast? Clearly there are limitations to PREfast - some which seem silly: it cannot recognize a CString as being const TCHAR * binary compatible). it ...
2
votes
1answer
170 views

Does this pattern work in C++?

I'm running PREfast static code analysis on my our projects, and it is giving me C6001 'using uninitialized memory' errors for this pattern: // AutoSelectGDIObject is a class if (AutoSelectGDIObject ...
1
vote
1answer
46 views

How can I convince XCode's Analyzer that this isn't a leak?

The static analyzer is informing me that the following code has a potential leak. I don't understand how there's any room for a leak. Further, I don't understand how the analyzer can be so helpful ...
0
votes
0answers
71 views

Python tools for control flow graph extraction

I am interesting in generating of control flow graph for Python functions and methods. I am interesting in python(not c/c++) based tools for better integration with my other tools. Also i am ...
0
votes
1answer
51 views

Load class dependencies in the same package (not showing on import statement)

I made class implementation that packaging the needed classes and send it to execute on server. I did a method using org.reflections that allows me to load all needed classes to this job. I generate ...
6
votes
4answers
155 views

Removing useless lines from c++ file

There are many times when as I am debugging, or reusing some code, the file starts to acquire lines that don't do anything, though they may have done something at one point. Things like vectors and ...
0
votes
1answer
58 views

Remove function names when compile C++ project

I want to make my app harder for static analysis and remove function names from .exe file when compile in release mode, how can i do it? And could you please advise technics to make my app harder for ...
1
vote
1answer
76 views

Frama-C/WP/ACSL Correct use of \valid on structures

I'm having some doubts on how to correctly use the \valid annotation on structs. struct someStruct{ int size1; int size2; char *str1; char *str2; } A correct predicate to verify ...
2
votes
1answer
92 views

Obj-c Xcode static analysis produces a “Dereference of null pointer” on pointer assignment

I am trying to implement a tricky thing: all my model classes have an automatic NSCoding implementation of their properties. This let me add and remove properties to my classes and do not worry about ...
0
votes
1answer
75 views

ACSL annotations on C macros

Is it possible to annotate C macros with ACSL? eg: /*@ assigns \nothing; behavior xmin: assumes x < y; ensures \result == x; behavior ymin: assumes y <= ...
1
vote
1answer
90 views

Pyflakes with Emacs

I'm trying to install pyflakes with emacs. So far, i've got the flymake.el file from here. I put it inside my .emacs.d folder. Inside my .emacs file, I have this: (when (load "flymake" t) (defun ...
2
votes
1answer
79 views

Frama-C/WP not able to prove loop invariant with \at

I'm having trouble proving 2 loop invariants: loop invariant \forall integer i; 0 <= i < (\at(n, Pre) - n) ==> ((char*)m2)[i] == \at(((char*)m1)[i], Pre); loop invariant \forall ...
0
votes
1answer
35 views

Compile-time XQuery validation

Which tools exist for static analysis of XQuery functions? Example tasks: given two XSD schemas A and B and some XQuery f, check that for any document d of type A its transformation f(d) is valid ...
2
votes
1answer
109 views

Findbugs java result: 137 static analysis plugin

We are running a findbug job on jenkins after each commit, the results of which a published by the static analysis plugin. This normally works completely as expected, However from time to time (about ...
2
votes
1answer
72 views

Why does FindBugs raise a critical warning when explicitly throwing a NPE?

Consider the following from FindBugs error desriptions NP: Null value is guaranteed to be dereferenced (NP_GUARANTEED_DEREF) There is a statement or branch that if executed guarantees that a ...
2
votes
0answers
53 views

Memory coalescence analysis in llvm

I'm trying to perform coalescing analysis on a program using LLVM analysis passes. Basically, I need to look at array accesses and figure out if the memory accesses can be coalesced, i.e, if the ...
7
votes
4answers
101 views

What tools or process to use to statically analyse JSPs?

I am creating an initial, extensive static code analysis report about our Java/JSP web application (legacy of course ;-) for management to raise awareness for quality issues. The main Java code is no ...
0
votes
0answers
44 views

Looking for Static Code Analysis only for style checks in C/C++ [closed]

There are some sources that list static code analysis tools: Stackoverflow97454, Stackoverflow141498, Wikipedia I am unable to identify the tools that allow me to do style checks for C/C++ and are ...
0
votes
1answer
48 views

What does “LifeCycle expectations” mean in SQALE?

I was going through this wiki article on SQALE(Software Quality Assessment based on Lifecycle Expectations). The Software Quality assurance part of it is clear. But I am unable to understand the ...
2
votes
1answer
55 views

Reads clause using Frama-C and WP-Plugin

When defining an axiom for string length, I need to use the reads clause. /*@ predicate Length_of_str_is{L}(char *s, integer n) = (0 <= n) && \valid(s+(0..n)) && s[n] == 0 ...
7
votes
1answer
183 views

Verify that Java classes implement toString()

As a part of the regular static analysis of my program, I would like to check that classes are likely to have sane toString() methods. Probably not that every class implements them, but perhaps that ...
1
vote
0answers
21 views

Identifying incorrectly handled InterruptedExceptions via static analysis

Is there a way to identify (via static analysis, e.g. findbugs or perhaps even checkstyle) when an InterruptedException hasn't been correctly handled (e.g. marking the thread as interrupted or ...
-1
votes
1answer
84 views

Open code static analysis program [closed]

I want to create my on static analysis program based on an existing one for C language. Meaning, i can see the written code used, manipulate it and compile. Do you happen to know one written in C or ...
0
votes
1answer
53 views

how to make checkstyle ignore xml files in my application

i've configured my checkstyle plugin with customized checkstyle.xml and it works fine with the java classes but having a lot of warnings with the xml files can anyone suggest how to disable the check ...
0
votes
0answers
20 views

How do I disable a particular instance of a pychecker warning?

I'm running pychecker on my .py source file, and I got a warning: t.py:83: Invalid arguments to (Foo), got 1, expected between 2 and 5 This is a false positive, the number of arguments is indeed ...
6
votes
6answers
326 views

Function prototype in header file doesn't match definition, how to catch this?

(I found this question which is similar but not a duplicate: How to check validity of header file in C programming language ) I have a function implementation, and a non-matching prototype (same ...
0
votes
1answer
158 views

How to build a Control Flow Graph (CFG) from a JSON object (AST)

I want to build a control flow graph (CFG) from an AST given in JSON format. So this AST is automatically created in TouchDevelop against each script. And TouchDevelop is not Object Oriented ...
1
vote
1answer
74 views

FindBugs shows only the first occurrence of a bug

FindBugs seems to show only the first occurrence of a particular bug in each method. This occurs in Eclipse as well as in the FindBugs stand-alone client. How can I configure FindBugs to show all ...
0
votes
1answer
47 views

get all entry points in a python library I use? (static analysis)

I'd like to examine a python project of mine for all 'apis' it's using of another module. Precisely: I'm using internals of the mercurial python code, and I'd like to get a list of which code points ...

1 2 3 4 5 14