Web2Bmp网页截图工具

Web2Bmp
网页截图工具
可以把整个网面导成一张BMP的图片

webtobmp.rar (10.27 K, 下载次数:527, 上传时间:2006-05-26 22:11)

Tags: 原创 , 技术

中国防黑网专用FTP破解版

中国防黑网专用FTP破解版,最精简的绿色ftp软件,速度快,无须安装,你值得拥有.

去掉了不注册只能使用30天的限制!

» 阅读全文

Tags: 原创 , 技术

国内大部分统计系统存在严重漏洞

作者:HaK_BaN[BCT]
组织:
Bug.Center.Team
网站:
http://www.cnbct.org

备注:本文已经刊登在9月《黑客手册》中,转载时请标明出处以及文章完整性

» 阅读全文

Tags: 工具 , 漏洞 , 入侵 , 技术

统计PHP代码行数的小BAT程序

统计PHP代码行数的小bat程序
放到一个PHP文件夹下面,点他,就会自动统计当前目录下面的PHP文件了。
如果用记事本打开,还可以设置是否统计子目录的;也可以设置统计其它类型的代码
统计的标准是非回车空行!
    


@echo off
:config()
:{
       set count_type=0
       :#  0:表示只统计当前目录
       :#  1:表示只统计当前目录,包括子目录

       set count_ext=.php
       :#  表示统计文件的后缀名称
:}

:main()
:{
       if %count_type%==0 (set count_info=当前目录)
       if %count_type%==1 (set count_info=当前目录,包括子目录)
       echo 代码文件数与行数统计(HonestQiao 2006-5-20 0:14)
       echo 统计方式:%count_info%
       echo 文件后缀:%count_ext%
       set /P PauseKey=开始统计(回车开始,Q退出)
       if "%PauseKey%" == "Q" goto :EOF
       if "%PauseKey%" == "q" goto :EOF
       echo.

       cd "%CD%"
       set counts=0
       set count=0
       set tmp_list=%RANDOM%.tmp
       copy /Y NUL %tmp_list% >nul 2>nul
       if %count_type%==0 (dir/b | findstr "%count_ext%\>" > %tmp_list%)
       if %count_type%==1 (dir/b/s | findstr "%count_ext%\>" > %tmp_list%)
       call :function_files_count %tmp_list%
       echo 文件总数:%counts%
       echo 行数总计:%count%
       del /Q %tmp_list%
       echo.
       set /P PauseKey=回车退出
       @echo on
       @goto :EOF
:}

:function_files_count
:{
       set counts_tmp=0
       for /F %%l in ('type %1') do (call :function_files_add "%%l")
       set /A counts=%counts%+%counts_tmp%
       goto :EOF
:}

:function_files_add
:{
       set /A counts_tmp=%counts_tmp%+1
       call :function_file_count %1
       goto :EOF
:}

:function_file_count
:{
       echo 第%counts_tmp%个文件:%1
       set count_tmp=0
       for /F %%l in ('type %1') do (call :function_file_add %1)
       set /A count=%count%+%count_tmp%
       echo 小计行数:%count_tmp%
       echo.
       goto :EOF       
:}

:function_file_add
:{
       set /A count_tmp=%count_tmp%+1
       goto :EOF
:}

Tags: bat , 代码 , 技术

39 , 6 / 6« First«23456