快捷搜索:   nginx

针对MYSQL udf.dll提权的安全防御

针对MYSQL udf.dll提权的安全防御

删除udf.dll和langouster_udf.dll,新建udf.dll和langouster_udf.dll设为只读,权限上限制 可防止所有langouster_udf.dll专用网马

批处理程序代码

  1. net stop mysql  
  2. del %SystemRoot%\system32\udf.dll /A/F/Q  
  3. del %SystemRoot%\udf.dll /A/F/Q  
  4. del %SystemRoot%\temp\udf.dll /A/F/Q  
  5. dir %SystemRoot%\system32\com > %SystemRoot%\system32\udf.dll  
  6. dir %SystemRoot%\system32\com > %SystemRoot%\udf.dll  
  7. dir %SystemRoot%\system32\com > %SystemRoot%\temp\udf.dll  
  8. attrib +R +S +H %SystemRoot%\system32\udf.dll  
  9. attrib +R +S +H %SystemRoot%\udf.dll  
  10. attrib +R +S +H %SystemRoot%\temp\udf.dll  
  11.  
  12. cscript.exe xcacls.vbs "%SystemRoot%\system32\udf.dll" /D Everyone:M /E  
  13. cscript.exe xcacls.vbs "%SystemRoot%\udf.dll" /D Everyone:M /E  
  14. cscript.exe xcacls.vbs "%SystemRoot%\temp\udf.dll" /D Everyone:M /E  
  15.  
  16. del %SystemRoot%\system32\langouster_udf.dll /A/F/Q  
  17. del %SystemRoot%\langouster_udf.dll /A/F/Q  
  18. del %SystemRoot%\temp\langouster_udf.dll /A/F/Q  
  19. dir %SystemRoot%\system32\com > %SystemRoot%\system32\langouster_udf.dll  
  20. dir %SystemRoot%\system32\com > %SystemRoot%\langouster_udf.dll  
  21. dir %SystemRoot%\system32\com > %SystemRoot%\temp\langouster_udf.dll  
  22. attrib +R +S +H %SystemRoot%\system32\langouster_udf.dll  
  23. attrib +R +S +H %SystemRoot%\langouster_udf.dll  
  24. attrib +R +S +H %SystemRoot%\temp\langouster_udf.dll  
  25. cscript.exe xcacls.vbs "%SystemRoot%\system32\langouster_udf.dll" /D Everyone:M /E  
  26. cscript.exe xcacls.vbs "%SystemRoot%\langouster_udf.dll" /D Everyone:M /E  
  27. cscript.exe xcacls.vbs "%SystemRoot%\temp\langouster_udf.dll" /D Everyone:M /E  
  28. net start mysql  
顶(1)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论