Security Scan for X#

This forum is meant for questions about the Visual FoxPro Language support in X#.

Post Reply
markus.lopin
Posts: 2
Joined: Thu May 09, 2019 11:13 am

Security Scan for X#

Post by markus.lopin »

Hi,

We are considering X# for replacing some of our VFP components. We have the requirement for security scan support (e.g. like SonarCube), if we introduce a new programming language. Is there any known tool or SonarCube plug-in which can support this search for bugs, vulnerabilities and code smells for X# or maybe on MSIL/CIL level?

Thank you
Markus
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

Security Scan for X#

Post by robert »

Markus,
I am not familiar with SonarCube, but if this product can scan IL code, such as produced by C# and VB, then it should have no problem with assemblies produced by X#. We are using the same underlying components as C# and VB to produce our binaries.
If SonarCube scans source code then it most likely does not support X#.

Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
markus.lopin
Posts: 2
Joined: Thu May 09, 2019 11:13 am

Security Scan for X#

Post by markus.lopin »

Robert,
Thank you for your fast response. SonarCube has dedicated VB/C# plug-ins and I have not found any IL scanner. I was curious if someone in the forum would know a tool for IL security scanning or would have the same request.
Markus
VR
Posts: 98
Joined: Sun Aug 23, 2020 3:07 pm
Location: Italy

Security Scan for X#

Post by VR »

Hello,

we use SonarQube for some of our c# projects. I tried, if the dotnet scanner of SonarQube picks up X# code, but sadly that is not the case.

It is possible to create plugins for SonarQube to add new languages. I created a proof of concept, that scans x# code and counts statements and comments, but it's quite complicate. IMO, one possible way to implement the integration is to use the XSharpParser or XSharpCompiler to create a file with the parsed sourcefile and a plugin that imports this data into SonarQube.

Volkmar
User avatar
Otto
Posts: 174
Joined: Wed Sep 30, 2015 6:22 pm

Security Scan for X#

Post by Otto »

Sonarqube sounds interesting!
jjw
Posts: 3
Joined: Fri Dec 02, 2022 2:22 pm
Location: Ireland

Security Scan for X#

Post by jjw »

Hello,

Volkmar, how far did you get with the SonarQube plugin proof of concept?
I would be interested even in just being able to count statements and comments.

I would be interested in how complicated it would be to extend and improve the plugin too.

Joshua
VR
Posts: 98
Joined: Sun Aug 23, 2020 3:07 pm
Location: Italy

Security Scan for X#

Post by VR »

Hello Joshua,

yes, we made some progress. With the help of a summer intern, we managed to create a basic integration of x# to sonarqube. We did the following.

* A scanner (written in c#) uses the XSharp.VsParser.Helpers Nuget to parse the x# files into ASTs
* The ASTs are used to export the Tokens as a JSON file
* Additionally, the ASTs are used to evaluate some simple "rules" (like empty method, if can be simplified, ...), which are also saved as JSON
* A SonarQube Plugin (written in kotlin) is used to import the data stored in the JSON files into SonarQube

The whole process is very tailored to our use case, but we it gives some benefits like statistics, syntax highlighting and duplicate code analysis. And the issues, that the scanner detects, are also shown...

Volkmar
Post Reply