Are there any tools to perform a security analysis against .net desktop assemblies and excutables? I used FXCOP and Gendarme but i think they are not sufficient.
Are there any tools to perform a security analysis against .net desktop assemblies and excutables?
2k Views Asked by Ahmed_A At
1
There are 1 best solutions below
Related Questions in SECURITY
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Forgotten password reset page: should the user need to enter a username/email as well?
- Dynamic roles list in CustomAuthorize ASP MVC
- Access roles from multiple applications
- How to Fix TLS CBC Incorrect Padding Abuse Vulnerability on Windows 2003 Server
- Evernote Web Clipper and Content Security Policy
- Invalidate user credentials when password changes
- Spring Boot MVC non-role based security
- Correct Captcha behaviour on error
- Is macro more secure than static const if I don't want someone to know or change the hardcode value?
- In Android, ensuring only pre-decided users can only use the app
- Authenticating plain text passwords against md5 hash in DB using Apache Shiro
- Symfony2 - handle HTTP/Entity user access restrictions
- Client side computation without exposing code?
- searchable row level encryption using java?
Related Questions in ASSEMBLIES
- Distribute msvcr90.dll without the rest of Microsoft.VC90.CRT?
- How to add a reference to C:\Windows\Microsoft.NET\assembly
- Could Not Load File or Assembly - Incorrect Format - Partial Binding
- .NET Framework compatibility issue
- .NET MEF: part versioning
- Possible to set absolute path for references in CSharpCodeProvider?
- Relation between IsAssembly / IsFamily and IsFamilyOrAssembly
- Deploying an external assembly (DevExpress) to an azure app service
- Showing that c = |a - b | using assambly with limited operations
- Why does R# tell me "Cannot resolve assembly System.Drawing" when I am referencing System.Drawing?
- Get from .dll executors assembly
- Application.Designer.cs Errors - Can't find assembly properties
- NDepend TypeInitializationExceptions when Testing with NUnit
- Issue with InternalsVisibleTo attribute
- ILMerge : predefined type defined in multiples assemblies
Related Questions in STATIC-ANALYSIS
- How to detect functions, that are only called from unused functions using cppcheck?
- Use static analysis tools to check null pointers and memory leaks in Linux device drivers
- Why it is not suggested to pass hardcoded absolute path name to File object constructor File(String)
- Visual Studio - Discover if method is called by another method at some point
- False positive: precondition is redundant
- Cppcheck GUI: Excluding a file or folder from checking
- How to get better results from LLVM's MemoryDependenceAnalysis pass?
- How to enforce static imports for some methods using checkstyle?
- Dealing with code movement when comparing static analysis reports
- Is there a way to find the ignored JUnit Test with the most lines of code in a large codebase?
- JSHint in javascript is not showing all warnings for code to be corrected
- Parsing Hack code into Abstract Syntax Tree
- Understanding x86 r/m32 instruction
- LLVM Error When Using a Pass from Another Pass
- Sonar - Python plugin rules, what tools it uses behind?
Related Questions in FXCOP
- How to detect an auto-implemented property in a custom FxCop rule?
- Visual Studio's Rule Set Editor does not open
- WPF code analyze : CA1001 Types that own disposable fields should be disposable
- C# :Cyclomatic Complexity of a method with FxCop sdk
- Assembly name referred in project but same version not available
- CA2002 warning on string[]
- FxCop Analysis with .Netcore library failed in VS2015 update 3
- VS codeanalysis CA1062 fires even after null check
- FxCop 10.0 standalone failing to analyse assemblies that use AutoMapper
- Can we specify in FxCopCmd line to use only pdb dlls?
- Meaning of CODE_ANALYSIS compilation symbol/constant
- Creating Customized rule for FxCop
- CA2122 DoNotIndirectlyExposeMethodsWithLinkDemands
- How to fix USA1013 Fxcop issue
- FxCop rule to detect swallowed exceptions
Related Questions in GENDARME
- How to use Mono.Gendarme on CentOS7?
- ArgumentNullException, indexer and Gendarme rule error
- Gendarme unsafe code detection
- How to suppress specific Gendarme rules at project or assembly level
- Are there any tools to perform a security analysis against .net desktop assemblies and excutables?
- EnsureLocalDisposalRule of Gendarme and WinForm
- Gendarme Ignore List Format
- Gendarme Rules Customisation
- How to Suppress Gendarme Defects?
- Protobuf-net Gendarme Errors
- How can you set Gendarme to run with Teamcity when doing a build?
- Sonar, Gendarme plugin issue
- Gendarme vs FxCop
- Can Mono Gendarme run on source files?
- How to avoid a "DisposableFieldsShouldBeDisposedRule" defect on fields I don't want to dispose?
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?
There are a whole bunch of tools that could be used for security scanning your application. These include:
CAT .NET and Veracode act directly on the binaries. the others parse the code as far as I can tell.
Here's an introductory short movie about CAT .NET. To run it from the commandline, you can call the executable from:
The syntax is as follows:
Note that CAT .NET features a limited set of rules It should be used in conjuction with CodeAnalysis (FxCop) and though it will find additional issues it is by far not as complete as some of the other tools in the list.