Qihoo.CloudEngine 1.0.1

dotnet add package Qihoo.CloudEngine --version 1.0.1
NuGet\Install-Package Qihoo.CloudEngine -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Qihoo.CloudEngine" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Qihoo.CloudEngine --version 1.0.1
#r "nuget: Qihoo.CloudEngine, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Qihoo.CloudEngine as a Cake Addin
#addin nuget:?package=Qihoo.CloudEngine&version=1.0.1

// Install Qihoo.CloudEngine as a Cake Tool
#tool nuget:?package=Qihoo.CloudEngine&version=1.0.1

Qihoo 360 文件云查杀引擎

使用方法:

public static async Task Main()
{
    string? text = "f351e1fcca0c4ea05fc44d15a17f8b36"; //expmale: WannaCry Malware MD5

    FileHealthResult? result = await FileHealth.CheckAsync(text);

    if (result is not null)
    {
        if (result.IsOperationSuccess)
        {
            Console.WriteLine("Malware Type : {0}", result?.MalwareType);
            Console.WriteLine("File Pop (0-10) : {0}", result?.Pop);
            Console.WriteLine("The length of time the file was found (day) : {0}", result?.Age);
            Console.WriteLine("Probability (0-100) : {0}", result?.Level);
            Console.WriteLine("Detected threats : {0}", result?.IsVerifiedMalware);
            Console.WriteLine("The file has been uploaded : {0}", result?.HasUpload);
        }
        else
        {
            Console.WriteLine("It didn't work out");
        }
    }
    else
    {
        Console.WriteLine("No Result");
    }

    Console.ReadKey();
}
Public Shared Async Function Main() As Task
    Dim text As String? = "f351e1fcca0c4ea05fc44d15a17f8b36"
    Dim result As FileHealthResult? = Await FileHealth.CheckAsync(text)
    If TypeOf result Is [not] Then Nothing

    If True Then

        If result.IsOperationSuccess Then
            Console.WriteLine("Malware Type : {0}", result?.MalwareType)
            Console.WriteLine("File Pop (0-10) : {0}", result?.Pop)
            Console.WriteLine("The length of time the file was found (day) : {0}", result?.Age)
            Console.WriteLine("Probability (0-100) : {0}", result?.Level)
            Console.WriteLine("Detected threats : {0}", result?.IsVerifiedMalware)
            Console.WriteLine("The file has been uploaded : {0}", result?.HasUpload)
        Else
            Console.WriteLine("It didn't work out")
        End If
    End If

    If True Then
        Console.WriteLine("No Result")
    End If

    Console.ReadKey()
End Function

示例输出:

Malware Type : Win32/Ransom.WannaCry.HxsAEpsA
File Pop (0-10) : 1
The length of time the file was found (day) : 2415
Probability (0-100) : 70
Detected threats : True
The file has been uploaded : False

安装方法:

  1. 直接右键项目->管理Nuget程序包->搜索’Qihoo.CloudEngine’->安装即可

  2. 或在PM命令行中输入命令完成安装:

PM> NuGet\Install-Package Qihoo.CloudEngine
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 175 12/28/2023
1.0.0 98 12/22/2023

Qihoo 360 File health check cloud engine