|
429499381
中级用户
  
积分 452
发帖 202
注册 2006-12-21
状态 离线
|
『楼 主』:
批处理破解网吧Pubwin.exe收费系统!!
使用 LLM 解释/回答一下
学DOS快半年了,感觉不尽人意,决定用一个课题实践一下,因为自己是网管,网吧晚上也不许上网!!所以写了一个破解收费系统的批处理测试一下自己的进步多少!!!
本批处理有可能无法正确执行2层以下的目录,有待完善!!!
而且执行出错时也会显示成功!!! 见下面代码主干!!
setlocal EnableDelayedExpansion
@echo off & cd\ & cls &title 不要瞎搞啊!!!
echo Pubwin.exe破解脚本!! 1:破解系统
echo.
echo 测试版V01 2:还原系统
echo.
echo 制作人:春春 3:退出
echo.
set/p p= 请按键选者
if "%p%"=="3" goto :c
if "%p%"=="1" (goto :a) else (goto :b)
:a
echo 正在执行任务!!!
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
set o=cdef
for /l %%a in (0,1,4) do (
for /f %%b in ("!o:~%%a,1!") do (
for /f %%c in ('dir/s/b "%%b:pubwin.exe"') do (
set i=%%~dpc
)
)
)
md e:windows\%date:~1,10% & copy %i%* e:windows\%date:~1,10% & cls
echo 任务完成。。。。。。。。
ping -n 3 172.1>nul & exit
:b
copy e:windows\%date:~1,10% %i%*
rd /s /q c:windows\%date:~1,10%
echo 系统已经还原
ping -n 3 172.1>nul & exit
:c
echo 正在退出
ping -n 3 172.1>nul
Been learning DOS for nearly half a year, and I feel it's not satisfying. I've decided to use a project to practice. Since I'm a network administrator and the internet isn't allowed at night in the internet café!! So I wrote a batch script to crack the charging system to test how much I've improved!!!
This batch script may not execute correctly for directories below the 2nd level, and it needs to be improved!!!
Also, when an error occurs during execution, it will also show success!!! See the main code below!!
setlocal EnableDelayedExpansion
@echo off & cd\ & cls &title Don't mess around!!!
echo Pubwin.exe cracking script!! 1:Crack the system
echo.
echo Test version V01 2:Restore the system
echo.
echo Producer: Chun Chun 3:Exit
echo.
set/p p= Please press a key to select
if "%p%"=="3" goto :c
if "%p%"=="1" (goto :a) else (goto :b)
:a
echo Task is being executed!!!
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
set o=cdef
for /l %%a in (0,1,4) do (
for /f %%b in ("!o:~%%a,1!") do (
for /f %%c in ('dir/s/b "%%b:pubwin.exe"') do (
set i=%%~dpc
)
)
)
md e:windows\%date:~1,10% & copy %i%* e:windows\%date:~1,10% & cls
echo Task completed...........
ping -n 3 172.1>nul & exit
:b
copy e:windows\%date:~1,10% %i%*
rd /s /q c:windows\%date:~1,10%
echo The system has been restored
ping -n 3 172.1>nul & exit
:c
echo Exiting
ping -n 3 172.1>nul
|
|
2007-1-25 18:10 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
楼主遍历硬盘的代码有点意思,不过还有很多不完善的地方,尤其是路径的表示方法上面,比如 e:windows 应该写成 E:\Windows ;盘符后面也应该加上 \ 符号的,比如这里的 %%b:pubwin.exe ;md E:\windows\%date:~1,10% 可以先 set dir1=E:\windows\%date:~1,10%,然后再 md %dir1%,因为后面用这个路径比较多,这样就比较方便。
The code for traversing the hard disk by the poster is a bit interesting, but there are still many imperfect places, especially in the way of representing paths. For example, e:windows should be written as E:\Windows; the backslash symbol should also be added after the drive letter, such as %%b:pubwin.exe here; md E:\windows\%date:~1,10% can first set dir1=E:\windows\%date:~1,10%, and then md %dir1%, because this path is used more later, which will be more convenient.
|
|
2007-1-25 19:25 |
|
|
429499381
中级用户
  
积分 452
发帖 202
注册 2006-12-21
状态 离线
|
『第 3 楼』:
谢谢提醒
使用 LLM 解释/回答一下
你说得有道理, 不过我主要解决效率问题!!! 当在网吧D盘寻找时会很长时间才会有信息!! 有没其他方法呢!!!
What you said makes sense, but I mainly solve the efficiency problem!!! It will take a long time to get information when searching on the D drive in the internet café!!! Is there any other way!!!
附件
1: 破解.rar (2007-1-25 20:03, 609 bytes, 下载附件所需积分 1 点
,下载次数: 46)
|
|
2007-1-25 20:03 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
帮你修改了一下:
@echo off&setlocal EnableDelayedExpansion
cd\ & cls &title 不要瞎搞啊!!!
echo Pubwin.exe破解脚本!! 1:破解系统
echo.
echo 测试版V01 2:还原系统
echo.
echo 制作人:春春 3:退出
echo.
set/p p= 请按键选者
if "%p%"=="3" goto c
if "%p%"=="1" (goto a) else (goto :b)
:a
echo 正在执行任务!!!
taskkill /f /im pubwin.exe /im run1l32.exe /im reclock.exe
set o=cdef
for /l %%a in (0,1,3) do (
for /F %%b in ("!o:~%%a,1!") do (
for /f "delims=" %%c in ('dir /s/b/a-d %%b:\pubwin.exe 2^>nul') do (
set "pubwin=%%c"
)
)
)
set dir1=%systemroot%\%date:~1,10%
copy "%pubwin%" %dir1%
echo 任务完成。。。。。。。。
ping -n 3 172.1>nul & exit
:b
copy %dir1% "%pubwin%"
rd /s /q %dir1%
echo 系统已经还原
ping -n 3 172.1>nul & exit
:c
echo 正在退出
ping -n 3 172.1>nul &exit
Helped you modify it:
@echo off&setlocal EnableDelayedExpansion
cd\ & cls &title Don't mess around!!!
echo Pubwin.exe cracking script!! 1: Crack the system
echo.
echo Test version V01 2: Restore the system
echo.
echo Producer: Chun Chun 3: Exit
echo.
set/p p= Please press the key to select
if "%p%"=="3" goto c
if "%p%"=="1" (goto a) else (goto :b)
:a
echo Task is being executed!!!
taskkill /f /im pubwin.exe /im run1l32.exe /im reclock.exe
set o=cdef
for /l %%a in (0,1,3) do (
for /F %%b in ("!o:~%%a,1!") do (
for /f "delims=" %%c in ('dir /s/b/a-d %%b:\pubwin.exe 2^>nul') do (
set "pubwin=%%c"
)
)
)
set dir1=%systemroot%\%date:~1,10%
copy "%pubwin%" %dir1%
echo Task completed...........
ping -n 3 172.1>nul & exit
:b
copy %dir1% "%pubwin%"
rd /s /q %dir1%
echo System has been restored
ping -n 3 172.1>nul & exit
:c
echo Exiting
ping -n 3 172.1>nul &exit
|
|
2007-1-25 23:20 |
|
|
bob1989
中级用户
  
积分 322
发帖 144
注册 2007-1-10
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
/IM 写一个就够了把`
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
/IM only needs one to be written
|
|
2007-1-26 06:45 |
|
|
qasa
高级用户
   
积分 959
发帖 311
注册 2006-4-11 来自 广东-LianJiang
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
对楼主发的附件文件的文件名感兴趣,怎么用空名字的??
Interested in the file name of the attachment posted by the owner. Why use an empty name?
|

κχυμγνξοθπρωψιαδλεηφβτζσ┬╀┾┳┞┯┰┱┣┲┳╂╁│├┟┭┠这是什么??这就是我的人生 |
|
2007-1-26 15:42 |
|
|
qasa
高级用户
   
积分 959
发帖 311
注册 2006-4-11 来自 广东-LianJiang
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
哈哈,试了一下,知道怎么样改了,原来这么简单,以前都没想到。
Haha, I tried it and know how to change it. It's so simple originally. I didn't think of it before.
|

κχυμγνξοθπρωψιαδλεηφβτζσ┬╀┾┳┞┯┰┱┣┲┳╂╁│├┟┭┠这是什么??这就是我的人生 |
|
2007-1-26 15:50 |
|
|
429499381
中级用户
  
积分 452
发帖 202
注册 2006-12-21
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
Originally posted by bob1989 at 2007-1-25 05:45 PM:
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
/IM 写一个就够了把`
3个进程是关联的, 任何一个关了, 另外的2个都会重新启动被关掉的一个或者重起=关机
Originally posted by bob1989 at 2007-1-25 05:45 PM:
taskkill /im pubwin.exe /im run1l32.exe /im reclock.exe
/IM only needs one to be written. `
The 3 processes are related. If any one is closed, the other 2 will restart the closed one or restart = shut down
|
|
2007-2-1 13:25 |
|
|
429499381
中级用户
  
积分 452
发帖 202
注册 2006-12-21
状态 离线
|
『第 9 楼』:
过几天会有普及版
使用 LLM 解释/回答一下
一切都是为了学习, 多少有点恶意!!!
普及版会有使用限制!!如果我能做出来的话!!
呵呵, 支持的朋友顶一下!!!
Everything is for learning, somewhat malicious!!!
The popular version will have usage restrictions!!! If I can make it!!!
Hehe, friends who support, please give a thumbs up!!!
|
|
2007-2-1 13:30 |
|
|
chainliq
高级用户
    学无尽止
积分 635
发帖 244
注册 2006-4-15 来自 广西贵港
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
现在新版的Pubwin.exe好像不能破解的呵,我这儿就是这样啦,以前可以改IP破解,现在如果服务器一发现在有改IP的机子,马上命令锁定``````````
不知道哪位知道如何破解网吧实名认证的过滤王啊,最近我们网吧都装啦实名认证过滤王,网速被拉慢还不要紧,最重要的是,有时候会同步三方失败,害得我啊,忙得头晕转向的```
Now the new version of Pubwin.exe seems to be unbreakable. It's like this here. Before, we could crack it by changing the IP. Now if the server finds a machine with a changed IP, it immediately issues a command to lock... I don't know if anyone knows how to crack the Real-name Authentication Filter King in internet cafes. Recently, our internet cafe has installed the Real-name Authentication Filter King. It's not a big deal if the internet speed is slowed down. The most important thing is that sometimes the synchronization with the three parties fails, which makes me so busy that I'm dizzy...
|

学无尽止 |
|
2007-2-1 20:54 |
|
|
bthecs
新手上路

积分 2
发帖 1
注册 2007-3-16
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
我没积分啊!怎么办大哥帮帮忙
I have no points! What should I do, brother, help me out
|
|
2007-3-16 11:29 |
|
|
zhxy9804
中级用户
  
积分 208
发帖 97
注册 2006-12-28
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
一旦发现就重启 ,我这里是左轮 ,结束左轮也重启,看你还嚣张!!!
Once detected, it will restart. Here I am Zuǒlún. Ending Zuǒlún also restarts. See how arrogant you are!!!
|
|
2007-3-16 22:31 |
|