This is a set of security analyzers for the FSharp Language using the FSharp Analyzers SDK.
- Hashing
- Looks for MD5 creation
- Looks for SHA1 creation
Detecting security issues early in your codebase can save your company from embarrassment or financial repercussions.
Also, there's growing need for security based tools in the FSharp ecosystem. Many tools cover CSharp projects but not FSharp. This project seeks to remedy that.
Use paket to install the analyzer into a specialized Analyzers dependency group like this:
paket add BinaryDefense.FSharp.Analyzers.Hashing --group AnalyzersDO NOT use storage:none because we want the analyzer package to be downloaded physically into packages/analyzers directory.
Make sure you have these settings in Ionide for FSharp
{
"FSharp.enableAnalyzers": true,
"FSharp.analyzersPath": [
"./packages/analyzers"
]
}dotnet tool add fsharp-analyzers
dotnet tool restoreThen run it against your project
dotnet fsharp-analyzers --project ./src/MyLibrary/MyLibrary.fsproj| Package | Stable | Prerelease |
|---|---|---|
| BinaryDefense.FSharp.Analyzers.Hashing |
Make sure the following requirements are installed on your system:
- dotnet SDK 3.0 or higher
- Mono if you're on Linux or macOS.
or
CONFIGURATIONwill set the configuration of the dotnet commands. If not set, it will default to Release.CONFIGURATION=Debug ./build.shwill result in-cadditions to commands such as indotnet build -c Debug
GITHUB_TOKENwill be used to upload release notes and Nuget packages to GitHub.- Be sure to set this before releasing
DISABLE_COVERAGEWill disable running code coverage metrics. AltCover can have severe performance degradation so it's worth disabling when looking to do a quicker feedback loop.DISABLE_COVERAGE=1 ./build.sh
> build.cmd <optional buildtarget> // on windows
$ ./build.sh <optional buildtarget>// on unixThe bin of your library should look similar to:
$ tree src/MyCoolNewLib/bin/
src/MyCoolNewLib/bin/
└── Debug
├── net461
│ ├── FSharp.Core.dll
│ ├── MyCoolNewLib.dll
│ ├── MyCoolNewLib.pdb
│ ├── MyCoolNewLib.xml
└── netstandard2.1
├── MyCoolNewLib.deps.json
├── MyCoolNewLib.dll
├── MyCoolNewLib.pdb
└── MyCoolNewLib.xml
Clean- Cleans artifact and temp directories.DotnetRestore- Runs dotnet restore on the solution file.DotnetBuild- Runs dotnet build on the solution file.DotnetTest- Runs dotnet test on the solution file.GenerateCoverageReport- Code coverage is run duringDotnetTestand this generates a report via ReportGenerator.WatchTests- Runs dotnet watch with the test projects. Useful for rapid feedback loops.GenerateAssemblyInfo- Generates AssemblyInfo for libraries.DotnetPack- Runs dotnet pack. This includes running Source Link.SourceLinkTest- Runs a Source Link test tool to verify Source Links were properly generated.PublishToNuGet- Publishes the NuGet packages generated inDotnetPackto NuGet via paket push.GitRelease- Creates a commit message with the Release Notes and a git tag via the version in theRelease Notes.GitHubRelease- Publishes a GitHub Release with the Release Notes and any NuGet packages.FormatCode- Runs Fantomas on the solution file.BuildDocs- Generates Documentation fromdocsSrcand the XML Documentation Comments from your libraries insrc.WatchDocs- Generates documentation and starts a webserver locally. It will rebuild and hot reload if it detects any changes made todocsSrcfiles, libraries insrc, or thedocsToolitself.ReleaseDocs- Will stage, commit, and push docs generated in theBuildDocstarget.Release- Task that runs all release type tasks such asPublishToNuGet,GitRelease,ReleaseDocs, andGitHubRelease. Make sure to read Releasing to setup your environment correctly for releases.
git add .
git commit -m "Scaffold"
git remote add origin https://github.com/user/MyCoolNewLib.git
git push -u origin masterpaket config add-token "https://www.nuget.org" 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a-
- You can then set the
GITHUB_TOKENto upload release notes and artifacts to github - Otherwise it will fallback to username/password
- You can then set the
-
Then update the
RELEASE_NOTES.mdwith a new version, date, and release notes ReleaseNotesHelper
#### 0.2.0 - 2017-04-20
- FEATURE: Does cool stuff!
- BUGFIX: Fixes that silly oversight- You can then use the
Releasetarget. This will:- make a commit bumping the version:
Bump version to 0.2.0and add the release notes to the commit - publish the package to NuGet
- push a git tag
- make a commit bumping the version:
./build.sh Release