2017-08-03 97 views

回答

0

圖像創建過程不會加密(或至少哈希)到卡上的密碼。它只是複製一堆文件,並在它們的頂部,在EFIESP文件夾中,放置一個批處理腳本PreProvisionDevice.cmd從用戶輸入創建。該腳本在第一次啓動處理,幷包含以下說明:

REM SQM-machine-id 
reg add HKLM\Software\Microsoft\SQMClient /v MachineId /t REG_SZ /d 4d8b6b44-180f-450a-abce-de862265091a /f 
REM Change the adiministrator password 
net user Administrator "myPassWith%percent" 
REM Remove the password change prompt from DevicePortal 
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\IoT\WebManagement\LoggedInUsers /v Administrator /t REG_DWORD /d 0x1 
REM Change the computername 
set computername minwinpc3 
REM Reboot the device for changes to take effect 
shutdown /r /t 5 
REM delete the provisioning file and the wifiprofile 
del %systemdrive%\EFIESP\WiFiProfile.xml 
del %0 

四號線,你可以看到上世紀90年代,滑稽,老同學,網用戶命令。而未經轉化的百分比。正確的版本應該是「myPassWith %% percent」。已經吸取了教訓,我們得出結論:

  • 避免%的
  • 初始密碼,如果你已經做到了,在登錄用的密碼忽略
  • 了潘多拉的盒子被隱藏在那裏的百分比。如果在密碼字符串中使用%0變量或& &串聯?並且名單可能會繼續...
相關問題