Tips & Donations!
BTC: 19mXrujWn24xYa35wYLvddcWPqebi32Jdv
ETH: 0x58b4a53dee2b88f2babba9ea4be005995d87a686
1 click Windows File sharing XXX user Admin - Instructions & Code Below
Make a batch file with below code and execute on remote pc to create a new admin user named xxx with password 123 and will also enable file sharing
-----------------------------------------
@echo off
sc config lanmanserver start= auto
@echo off
net start lanmanserver
@echo off
netsh firewall set service type = fileandprint mode = enable
@echo off
net user xxx 123 /add
net localgroup administrators /ADD xxx
@echo off
reg add "hklm\system\currentControlSet\Control\Lsa" /v "forceguest" /t REG_DWORD /d 0x0 /f
@echo off
net share C=C:\
ipconfig
pause
---------------------------------------------
To connect to the share on the remote pc from your pc use this line in command prompt on your pc.
net use Z: \\192.168.1.3\c$
when asked for username and password input: username = xxx password = 123
---------------------------------------------
To delete the user xxx and share use this code below.
@echo off
sc config lanmanserver start= disabled
@echo off
net stop lanmanserver /Y
@echo off
netsh firewall set service type = fileandprint mode = disable
@echo off
reg add "hklm\system\currentControlSet\Control\Lsa" /v "forceguest" /t REG_DWORD /d 0x1 /f
@echo off
net user xxx /delete
@echo off
net share C:\ /DELETE
ipconfig
pause
----------------------------------------------