首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏全栈程序员必看

    扫描主机漏洞的工具_漏洞扫描工具有哪些

    操作系统版本 $windowsVersion = (Get-ComputerInfo).WindowsVersion $basicInfo = "{""windowsProductName"":""$windowsProductName "",""windowsVersion"":""$windowsVersion""}" return $basicInfo } $basicInfo = Get-BasicInfo $KBList = = KBResult['basicInfo']['windowsVersion'] print("系统信息如下:") print("{} {}".format(windowsProductName,windowsVersion :") print(KBList) print("EXP信息如下:") select_CVE(tmpList=KBList,windowsProductName=windowsProductName,windowsVersion =windowsVersion) else: print("请输入.json文件") 版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。

    8.7K20编辑于 2022-10-01
  • 来自专栏跟Qt君学编程

    使用Qt获取系统版本

    Qt 4版本   可以获取到系统版本的变量或函数 头文件 #include <QSysInfo> 使用公有静态变量和静态方法获取Windows系统版本 const WinVersion WindowsVersion WinVersion windowsVersion () 使用公有静态变量获取Mac系统版本 const MacVersion MacintoshVersion 使用静态方法获取塞班系统版本和塞班S60 版本   以下方法在Qt 5.9版本以上被官方标记为不推荐使用 头文件 #include <QSysInfo> 使用公有静态变量和静态方法获取Windows系统版本 const WinVersion WindowsVersion QSysInfo::WinVersion windowsVersion() 使用公有静态变量和静态方法获取Mac系统版本 const MacVersion MacintoshVersion QSysInfo

    2.5K20发布于 2019-09-12
  • 来自专栏玄魂工作室

    WindowsVulnScan | 一款基于主机的漏洞扫描工具

    操作系统版本 $windowsVersion = (Get-ComputerInfo).WindowsVersion $basicInfo = "{""windowsProductName "":""$windowsProductName"",""windowsVersion"":""$windowsVersion""}" return $basicInfo } $basicInfo = KBResult['basicInfo']['windowsVersion'] print("系统信息如下:") print("{} {}".format (windowsProductName,windowsVersion)) tmpKBList = KBResult['KBList'] KBList = =windowsVersion) else: print("请输入.json文件")

    2K20发布于 2020-06-17
  • 来自专栏洛米唯熊

    Win-SMBGhost-RCE漏洞检测防御

    $WindowsVersion = Get-ComputerInfo | Select-Object -ExpandProperty WindowsVersion Write-Host "Windows version $WindowsVersion found." if ($WindowsVersion -eq 1903) { Write-Host "CVE-2020-0976 is applicable to your Windows Version ." } Elseif ($WindowsVersion -eq 1909) { Write-Host "CVE-2020-0976 is applicable to your

    91500发布于 2020-03-16
  • 来自专栏生命不息,Codeing不止

    在windows下检查应用程序是否为兼容模式启动及使用Qt输出系统信息

    枚举.png 通过该方法可以读取:static WinVersion windowsVersion(); 接下来写一个小例子来看下各个函数都输出了什么: ? QString getCurrentAppRunSys() { QString strSysName = ""; QSysInfo sys; int nVer = sys.windowsVersion

    2.6K40发布于 2020-07-24
  • Typecho——非插件方式实现评论显示系统信息和浏览器信息

    as $xv) { if ($match[$xv]) $deviceInfo[$k] = $xv; } } // 操作系统版本信息 $windowsVersion HarmonyOSVersion = [ 10 => "2", 12 => "3" ]; $systemVersion = [ "Windows" => $windowsVersion userAgent) $deviceInfo['systemVersion'] = ''; } // if ($deviceInfo['system'] == 'Windows' && $_windowsVersion ) $deviceInfo['systemVersion'] = $_windowsVersion; // 浏览器版本信息 $browsers_360SE = [ 108

    46010编辑于 2024-08-15
  • 来自专栏Don的成长史

    Hello Qt World

    ; if(QSysInfo::windowsVersion() == QSysInfo::WV_10_0) { qDebug() << "Welcome to Windows

    42510发布于 2019-11-08
  • 来自专栏Khan安全团队

    漏洞告之:SMBv3协议远程代码执行漏洞(附自查脚本)

    $WindowsVersion = Get-ComputerInfo | Select-Object -ExpandProperty WindowsVersion Write-Host "[*] Windows version $WindowsVersion found." if ($WindowsVersion -eq 1903) { Write-Host "[*] CVE-2020-0976 is applicable to your Windows Version ." } Elseif ($WindowsVersion -eq 1909) { Write-Host "[*] CVE-2020-0976 is applicable

    1.3K20发布于 2020-03-20
  • Windows——WMIC命令简单使用[windows获取private bytes]

    490201939 SessionId=1 Status= TerminationDate= ThreadCount=85 UserModeTime=45156250 VirtualSize=699047936 WindowsVersion ReadOperationCount, ReadTransferCount, SessionId, Status, TerminationDate, ThreadCount, UserModeTime, VirtualSize, WindowsVersion

    47810编辑于 2024-08-16
  • 如何使用java搭建环境

    安装OpenJDK(免费开源)1.Windows安装JDK(最常见)步骤1:下载OpenJDK推荐:EclipseTemurin(稳定、免费)下载地址:https://adoptium.net选:OS:WindowsVersion

    36710编辑于 2025-11-29
  • 来自专栏码客

    WPF桌面端开发-获取系统版本,位数等信息

    strList.Add($@"InteropServices方式:{sysInfo}"); strList.Add(@"============================"); var windowsVersion = ZSysUtils.GetWindowsVersion(); strList.Add($@"注册表方式:{windowsVersion}"); strList.Add(@"====

    1.1K20编辑于 2023-07-11
  • 来自专栏乐沙弥的世界

    基于sqlcmd命令行工具管理SQL server

    131072008 NULL 15 WindowsVersion

    2.8K50发布于 2018-08-13
  • 来自专栏kubernetes微服务架构

    如何用Golang处理每分钟100万个请求

    代码如下: type PayloadCollection struct { WindowsVersion string `json:"version"` Token string

    1.7K30编辑于 2023-04-11
  • 来自专栏全栈工程师修炼之路

    PS命令之系统资源信息查看管理示例

    : Server Core WindowsCurrentVersion : 6.3 WindowsVersion

    1.9K20编辑于 2022-09-29
  • 来自专栏ccf19881030的博客

    VS2022编译运行processhacker源代码

    UpdateIsDotNet = FALSE; } // Immersive if (processItem->QueryHandle && WindowsVersion

    42900编辑于 2023-12-05
  • 来自专栏ccf19881030的博客

    VS2022编译运行processhacker源代码

    UpdateIsDotNet = FALSE; } // Immersive if (processItem->QueryHandle && WindowsVersion

    47200编辑于 2023-12-05
  • 来自专栏ccf19881030的博客

    VS2022编译运行processhacker源代码

    UpdateIsDotNet = FALSE; } // Immersive if (processItem->QueryHandle && WindowsVersion

    51900编辑于 2023-12-05
  • Windows 终端命令详解:PowerShell 初学者指南

    电脑制造商和型号)展开代码语言:PowerShellAI代码解释#查看部分系统信息C:\Users\userC>Get-ComputerInfo|Select-ObjectWindowsProductName,WindowsVersion

    90211编辑于 2026-02-14
  • 来自专栏全栈工程师修炼之路

    Linux与Windows服务器操作系统安全防御实践指南

    $Item = 'WindowsProductName','WindowsEditionId','WindowsInstallationType','WindowsCurrentVersion','WindowsVersion SysInfo += @{"ProductType"="Client"} $SysInfo += @{"ProductName"=$ProductName} $SysInfo += @{"WindowsVersion $KeyName".product -match $SysInfo.WindowsVersion) -and ($SysWSUSList." $AvailableWSUSListId += "$KeyName" } } } Write-Host $SysInfo.ProductName $SysInfo.WindowsVersion

    5.5K10编辑于 2022-09-29
领券