ICode9

精准搜索请尝试: 精确搜索
  • Win10上禁用Device Guard以便运行VMware2020-05-15 12:08:33

    Win10上每次大版本升级后,如果你试图运行VMware,都会提示如下的错误信息: “VMware Workstation 与 Device/Credential Guard 不兼容。在禁用 Device/Credential Guard 后,可以运行 VMware Workstation。有关更多详细信息,请访问 http://www.vmware.com/go/turnoff_CG_DG。” 最近Win10

  • Windows Credential Dumping总结2020-03-19 17:02:46

      一、SAM reg save HKLM\sam sam reg save HKLM\system system C:\Windows\System32\config\SAM C:\Windows\System32\config\SYSTEM lsadump::sam    https://www.cnblogs.com/ring-lcy/p/12442614.html   二、Cached Domain Credentials reg save HKLM\security

  • 如何删除Git中缓存的用户名和密码2020-03-19 11:03:19

    昨天在上传代码的时候提示输入用户名密码,结果输错了3次就没有提示框了,就一直报错(身份验证失败),没办法提交代。 在使用git的过程中,我们也会经常遇到以前保存在git的用户名密码忘记了,或者不用了。在公司也可能遇到保存了用户名和密码的同事离职,换成新来的员工。在这些情况下,我们就要

  • Sign In With Apple2020-03-13 12:03:46

    在最新的审核指南中,出现了关于Sign In With Apple 的要求: 4.8 Sign in with Apple Apps that use a third-party or social login service (such as Facebook Login, Google Sign-In, Sign in with Twitter, Sign In with LinkedIn, Login with Amazon, or WeChat Login) to s

  • [Credential Access] Dumping Hashes from SAM2020-03-08 16:57:46

    一、Windows SAM(Security Accounts Manager) SAM是管理SAM database的服务,SAM database中存储了本地用户的密码Hash信息,早期windows使用LM Hash验证,但其易于破解,从windows Vista和windows server 2008开始,默认禁用LM Hash;现在使用的是NTLM Hash。 SAM database存储在HKLM\SAM中,访

  • powershell save credential password and convertToString2020-02-25 10:36:31

    保存凭据/密码 $username = "admin" $password = ConvertTo-SecureString "123" -AsPlainText -Force $psCred = New-Object System.Management.Automation.PSCredential -ArgumentList ($username, $password) 打印保存的密码 $bstr = [System.Runtime.InteropServic

  • git push 报 HTTP Basic: Access denied 错误2020-01-16 16:02:45

    git配置config记住密码设置记住密码(默认15分钟): git config --global credential.helper cache如果想自己设置时间,可以这样做: git config credential.helper 'cache --timeout=3600'这样就设置一个小时之后失效 长期存储密码: git config --global credential.helper store增加远程

  • Win10“VMware Workstation and Device/Credential Guard are not compatible“ error in VMware Workstation2020-01-12 20:38:40

    环境: 操作系统: Win10专业版 VMWare: 12.5.9 / 14.1.1 虚拟机系统:CentOS 7 根据VMWare的提示,打开VMWare官方页面 VMWare官方解决 打开页面如下: 官方描述了具体症状、出现问题的原因及解决方法 往下翻,可以看到解决方法: 管理Windows上的Defender Credential Guard. 点击

  • git问题ERROR: Repository not found2020-01-09 18:51:15

    报错内容:remote: Repository not found. fatal: repository 'https://github.com/pete/first_app.git/' not found 解决方法:三个命令中的一个git config --unset-all credential.helper git config --global --unset-all credential.helper git config --system --unset-all crede

  • CAT 默认密码修改2019-12-09 14:57:17

    修改操作 1、按照如下路径,打开SessionManager类,cat-home目录下:com.dianping.cat.system.page.login.service.SessionManager.java2、修改106行代码,admin修改为你想要的密码即可。 case ADMIN_PWD:final String p = CatPropertyProvider.INST.getProperty("CAT_ADMIN_PWD", "admin

  • 【Git】使用HTTP/HTTPS,记住用户名和密码2019-09-16 15:03:00

    如果通过HTTP/HTTPS连接 Git 远程仓库,每次都需要输入用户名密码,十分麻烦,教大家怎么让 Git 记住密码。 永久记住密码 (全局) git config --global credential.helper store 会在~/.gitconfig文件中生成下面的配置。 [credential] helper = store 登录过后的账号密码,会

  • 在linux下执行git clone、git pull 、git push等操作免密2019-08-21 12:57:53

    1. 通过ssh密钥实现 ssh-keygen -t rsa -C "你的邮箱" -f "自己定义的目录" 打开: id_rsa.pub ,将文件内容复制到 gitlab 设置页:ssh密钥配置。 2. 通过配置.git-credential配置免密输入 可以进行设置,这样在输入过一次密码之后,以后就不需要每次都输入密码了。 打开终端: 输入: touc

  • VMware与 Device/Credential Guard 不兼容,解决办法2019-06-30 17:54:03

    百度要你取消Hyper-V功能,但我要用docker,以及一些相关的帖子都无效的情况下 https://blog.csdn.net/u013667796/article/details/85843151 自己根据官方文档进行研究解决办法, https://kb.vmware.com/s/article/2146361 需要关闭DG/CG,然后链接都微软的相关文档 https://docs.micro

  • 使用invoke-webrequest下载文件2019-06-30 08:53:16

    下载SMB  如果您在混合IT环境中工作,则通常需要在PowerShell脚本中从云下载或上载文件。  如果仅使用通过服务器消息块(SMB)协议进行通信的Windows服务器,则只需使用Copy-Item cmdlet从网络共享中复制文件: Copy-Item \\server\share\file -Destination c:\path\ 在PowerShell中下

  • linux下git怎么保存账号密码2019-06-29 17:53:24

    我是用 shell 命令来执行 git 操作的,所以就决定在 --global 配置一下用户名和密码,不用每次手动输入了。设置步骤1. 首先需要 ftp 连接到你的 Linux 服务器,在根目录(~/)下,使用 touch 命令创建文件 .git-credentials :touch .git-credentials2. 然后用 vim 命令编辑此文件:vim .git-crede

  • 美团cat,修改默认admin登录密码2019-06-13 15:00:18

    美团cat,修改admin密码方式1、按照如下路径,打开SessionManager类,cat-home下,com.dianping.cat.system.page.login.service.SessionManager.java2、修改106行代码,admin修改为你想要的密码即可,然后重新编译打包发布即可。 case ADMIN_PWD:final String p = CatPropertyProvider.INST.ge

  • Remote desktop manager共享账号2019-06-12 18:41:33

    因为多个远程机器,是会用了域账号进行登录的。而域账号的密码,三个月之后,密码强制过期  添加一个新的entry,类型是Credential Entry,然后选择用户名/密码    在remote desktop编辑的页面,Credentials选择Credential repository,然后下拉框里选择创建好的user  

  • Use Git Credential Managers to Authenticate to Azure Repos2019-05-13 13:43:28

    https://docs.microsoft.com/en-us/azure/devops/repos/git/set-up-credential-managers?view=azure-devops Install the Git Credential Manager Windows Download and run the latest Git for Windows installer, which includes the Git Credential Manager for Windows. M

  • 虚拟机上不了网的 VMware Workstation 与 Device/Credential Guard 不兼容2019-03-13 08:47:33

    VMware Workstation 与 Device/Credential Guard 不兼容   和    虚拟机上不了网的问题  解决方法: VMware Workstation 与 Device/Credential Guard 不兼容   解决方法:在“控制页面”-“程序”-“启用或关闭windows功能”,打开以下窗口,把Hyper-V勾掉,确定,重新启动电脑就

  • linux服务器git pull/push时提示输入账号密码之免除设置2019-02-22 09:52:09

    1、先cd到根目录,执行git config --global credential.helper store命令 [root@iZ25mi9h7ayZ ~]# git config --global credential.helper store 2、执行之后会在.gitconfig文件中多加红色字体项 [user] name = 天明 email = xxxx@xxxx.com[credential] hel

  • SourceTree推送分支时遇到ArgumentException encountered错误的解决办法2019-02-11 11:52:58

    下载并安装: https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.17.2 然后重新推送即可。 参考文章: ArgumentException encountered

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有