首页 > 其他分享 >LocalService vs NetworkService vs LocalSystem

LocalService vs NetworkService vs LocalSystem

时间:2022-10-31 21:15:15浏览次数:59  
标签:NetworkService account computer network LocalSystem vs LocalService password

LocalService

A limited service account that is very similar to Network Service and meant to run standard least-privileged services. However, unlike Network Service it accesses the network as an Anonymous user.

  • Name: NT AUTHORITY\LocalService
  • the account has no password (any password information you provide is ignored)
  • HKCU represents the LocalService user account
  • has minimal privileges on the local computer
  • presents anonymous credentials on the network
  • SID: S-1-5-19
  • has its own profile under the HKEY_USERS registry key (HKEY_USERS\S-1-5-19)

NetworkService

Limited service account that is meant to run standard privileged services. This account is far more limited than Local System (or even Administrator) but still has the right to access the network as the machine (see caveat above).

  • NT AUTHORITY\NetworkService
  • the account has no password (any password information you provide is ignored)
  • HKCU represents the NetworkService user account
  • has minimal privileges on the local computer
  • presents the computer's credentials (e.g. MANGO$) to remote servers
  • SID: S-1-5-20
  • has its own profile under the HKEY_USERS registry key (HKEY_USERS\S-1-5-20)
  • If trying to schedule a task using it, enter NETWORK SERVICE into the Select User or Group dialog

LocalSystem

Completely trusted account, more so than the administrator account. There is nothing on a single box that this account cannot do, and it has the right to access the network as the machine (this requires Active Directory and granting the machine account permissions to something)

  • Name: .\LocalSystem (can also use LocalSystem or ComputerName\LocalSystem)
  • the account has no password (any password information you provide is ignored)
  • SID: S-1-5-18
  • does not have any profile of its own (HKCU represents the default user)
  • has extensive privileges on the local computer
  • presents the computer's credentials (e.g. MANGO$) to remote servers

ref

https://stackoverflow.com/questions/510170/the-difference-between-the-local-system-account-and-the-network-service-acco

标签:NetworkService,account,computer,network,LocalSystem,vs,LocalService,password
From: https://www.cnblogs.com/talentzemin/p/16845794.html

相关文章

  • vs编译错误
     vs编译错误Vs报错 unexpectedcharacter 报错  原因: 一般是程序集引用导致问题。参考地址:https://stackoverflow.com/questions/31577120/why-do-i-get-a......
  • 2022.10.21----vscode-自定义事件
     vscode预览模式关闭,就能打开新标签页(43条消息)vscode新窗口打开文件-CSDN (43条消息)如何在vscode中打开新文件夹不覆盖上一个窗口标签_发呆的薇薇°的博客-......
  • 信息隐藏技术 vs 信息加密技术
    信息隐藏技术vs信息加密技术信息加密所隐藏的是消息的内容,攻击者虽然知道其存在,但难以提取其中的信息;而信息隐藏则是将需要保密的信息“乔装打扮”后藏匿在信息空间中......
  • 问题:怎样从命令行新建文件并用VScode打开&VScode启动并新建文件
    问题:怎样从命令行新建文件并用VScode打开&VScode启动并新建文件解决howtostartvscodefromterminal-Search(bing.com)HowtostartVSCodefromtheterminal(......
  • 【软件使用】【VSCode】【Debugger for Chrome的使用】
    【软件使用】【VSCode】【DebuggerforChrome的使用】https://img-view-wj.oss-cn-nanjing.aliyuncs.com/img/it/soft/vscode/DebuggerforChrome/image-2022103111541643......
  • .NET性能系列文章二:Newtonsoft.Json vs. System.Text.Json
    微软终于追上了?图片来自GlennCarstens-PetersUnsplash欢迎来到.NET性能系列的另一章。这个系列的特点是对.NET世界中许多不同的主题进行研究、基准和比较。正如标题......
  • Windows11 22H2_22621.674_MVS_10月最新懒人版
    Moment1(Build22621.675)的功能更新根据微软官网介绍,总共6项新增功能:①资源管理器标签,类似于浏览器的标签,在以往的版本中这是一个隐藏功能,此前我已经给大家介绍了怎么开......
  • Spring Boot Full @Configuration vs ‘lite‘ @Bean mode?
    When@Beanmethodsaredeclaredwithinclassesthatarenotannotatedwith@Configurationtheyarereferredtoasbeingprocessedina‘lite’mode.Beanmetho......
  • Vscode插件推荐
    Vscode插件推荐主题/外观MaterialTheme(集成了多种主题皮肤,搭配MaterialIconTheme食用更佳)MaterialIconTheme(扁平化的主题图标库)vscode-icons(VSCode官方出......
  • C# 利用VS自带的WSDL工具生成WebService服务类
    WebService有两种使用方式,一种是直接通过添加服务引用,另一种则是通过WSDL生成。添加服务引用大家基本都用过,这里就不讲解了。那么,既然有直接引用的方式,为什么还要通过WSD......