能把IP转换为IP段的工具,纯bat代码,使用方法就是把下面的代码复制到文本中,保存为bat格式就可以了。开启密码是fis9.com
cls @echo off&setlocal enabledelayedexpansion title # IP转IP段工具 # @echo off color f1 mode con: cols=40 lines=12 set passwd= echo ======================================== echo IP转IP段工具 echo. echo 天赐网络 vlwx.com echo. echo 程序仅供测试,请勿用作非法用途 echo ======================================== set /p passwd= * p@ssw0rd *: if /i %passwd%==fis9.com goto start echo 密码错误!任意键退出... pause>nul exit :start echo 密码正确.请填写单IP! del Result1.txt>nul 2>nul del Result2.txt>nul 2>nul del Result3.txt>nul 2>nul del IP.txt>nul 2>nul echo 请填写IP如:192.168.1.1>Result.txt start /wait Result.txt echo 按任意键开始...^^_^^ (for /f "tokens=1-4 delims=." %%i in (Result.txt) do echo %%i.%%j.%%k.%%l %%i.%%j.%%k.255)>ip.txt
评论前必须登录!
注册