The Wayback Machine - https://web.archive.org/web/20220501014153/https://github.com/topics/static-analysis
Skip to content
#

static-analysis

Here are 1,379 public repositories matching this topic...

Mobile-Security-Framework-MobSF

Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis.

  • Updated Apr 29, 2022
  • JavaScript

The Mobile Security Testing Guide (MSTG) is a comprehensive manual for mobile app security testing and reverse engineering. It describes the technical processes for verifying the controls listed in the OWASP Mobile Application Security Verification Standard (MASVS).

  • Updated Apr 25, 2022
  • Python
semgrep
bstpierre
bstpierre commented Mar 26, 2022

Describe the bug
Patterns for Go multiple return values match more strictly than the argument list, which is confusing.

To Reproduce
Try to match any Go function that has error in the return type list. All six of these functions should match:

func a(b int) error { return nil }
func b() (int, error) { return 0, nil }
func c() (error, int) { return nil, 0 }
func d() (float6
good first issue priority:low user:external lang:golang
reviewdog
BraisGabin
BraisGabin commented Apr 30, 2022

Expected Behavior

When I read a html report I can get the maximum context to fix the issues that detekt found. For example, links to the documentation of each rule that has at least one issue.

Current Behavior

If you want to know a bit more about one rule and what it does you need to copy the name of the rule, paste it on a web search engine add "detekt" and find that documentation th

help wanted feature good first issue

Improve this page

Add a description, image, and links to the static-analysis topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the static-analysis topic, visit your repo's landing page and select "manage topics."

Learn more