```
@echo off
rem SoExp 0.1 By ALLyeSNO
rem http://hi.baidu.com/allyesno/
cls
setlocal enabledelayedexpansion
set num=0
title SoExp^ : Search for all possible overflowed exe/dll and other files^ ; http://hi.baidu.com/allyesno/
if "%1"=="" (
echo Usage : soexp path filename size
echo.
echo Example 1 : soexp c:\ gdiplus.dll ^( Search all gdiplus.dll on C drive ^)
echo Example 2 : soexp c:\ gdiplus.dll 1712128
echo ^( Search all gdiplus.dll on C drive and mark files with mismatched sizes of 1712128 Byte^)
echo Example 3 : soexp c:\ gdiplus.dll^>^>log.txt
echo ^( Search all gdiplus.dll on C drive and record results in log.txt ^)
goto :eof
)
echo Symbol comments : ㊣ File size matches ; ☆ File size does not match ; → Size parameter not used
echo.
if "%3"=="" set size=→
for /r %1 %%i in (%2*) do (
set/a num+=1
if not "%3"=="" set size=㊣
if not "%%~zi"=="%3" if not "%3"=="" set size=☆
echo !size!!num!.Byte : %%~zi %%i
set lines=0
for /f %%j in ('dir %%i/tc') do (
set/a lines+=1
if "!lines!"=="4" echo BornTime : %%j
)
)
```
@echo off
rem SoExp 0.1 By ALLyeSNO
rem http://hi.baidu.com/allyesno/
cls
setlocal enabledelayedexpansion
set num=0
title SoExp^ : Search for all possible overflowed exe/dll and other files^ ; http://hi.baidu.com/allyesno/
if "%1"=="" (
echo Usage : soexp path filename size
echo.
echo Example 1 : soexp c:\ gdiplus.dll ^( Search all gdiplus.dll on C drive ^)
echo Example 2 : soexp c:\ gdiplus.dll 1712128
echo ^( Search all gdiplus.dll on C drive and mark files with mismatched sizes of 1712128 Byte^)
echo Example 3 : soexp c:\ gdiplus.dll^>^>log.txt
echo ^( Search all gdiplus.dll on C drive and record results in log.txt ^)
goto :eof
)
echo Symbol comments : ㊣ File size matches ; ☆ File size does not match ; → Size parameter not used
echo.
if "%3"=="" set size=→
for /r %1 %%i in (%2*) do (
set/a num+=1
if not "%3"=="" set size=㊣
if not "%%~zi"=="%3" if not "%3"=="" set size=☆
echo !size!!num!.Byte : %%~zi %%i
set lines=0
for /f %%j in ('dir %%i/tc') do (
set/a lines+=1
if "!lines!"=="4" echo BornTime : %%j
)
)
```
我是allyesno 帐号忘记密码了 妈的
