![]() |
China DOS Union-- Unite DOS · Advance DOS · Grow DOS --Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum |
| Guest | Log in | Register | Members | Search | China DOS Union |
|
中国DOS联盟论坛 The time now is 2026-09-23 14:10 |
47,812 topics / 349,917 posts / today 0 new / 48,273 members |
| DOS批处理 & 脚本技术(批处理室) » Please help experts to decrypt the batch processing |
| Printable Version 2,246 / 11 |
| Floor1 xyz1234111 | Posted 2010-11-29 22:47 |
| 初级用户 Posts 32 Credits 32 | |
|
Since I can't determine the specific meaning of this encoded content and it doesn't seem to be a standard batch file code that can be simply decrypted in a conventional way, and there may be some special encoding or garbled situation here. The original content remains as follows:
┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥┥汣൳䀊捥潨漠晦楴汴敳牡档删坁搠瑡⸮潣潬昲潭敶䤠⹄硴⁴䑉種灩潣祰⨠琮瑸愠汬琮瑸渾汵潭敶䤠⹄楺⁰䑉琮瑸潦是┠椥椠䤨⹄硴⥴搠晀湩獤牴∠┥≩愠汬琮瑸㸾楦摮畯硴൴搊汥愠汬琮瑸潦是∠潴敫獮⨽•┥湩⠠搧物⤧搠捥潨∠┥≢晼湩昢湩潤瑵㸢畮☦映牯士琢歯湥㵳∳┠挥椠∨┥≢ 潤椠┢挥㴢∽∰朠瑯潮楦摮晩渠瑯∠┥≣㴽〢•潧潴映湩ഊഊ㨊潮楦摮敀档景൦搊汥映湩潤瑵琮瑸渾汵敀档潎⁴楦摮愠祮爠汥瑡癩慤慴慰獵☦攠楸൴ഊ㨊楦摮慰獵籥敀档潆湵䅒⁗慤慴椠楦摮畯硴⁴楦敬⸮മഊഊ [ Last edited by xyz1234111 on 2010-11-29 at 22:49 ] |
|
| Floor2 wewebb | Posted 2010-11-29 22:52 |
| 初级用户 Posts 53 Credits 66 | |
|
Actually, it's just using a "Notepad" bug. Change the batch file's suffix to .rtf and open it with "WordPad".
|
|
| Floor3 xyz1234111 | Posted 2010-11-29 22:59 |
| 初级用户 Posts 32 Credits 32 | |
|
It doesn't work, it's still garbled.
|
|
| Floor4 wewebb | Posted 2010-11-29 23:17 |
| 初级用户 Posts 53 Credits 66 | |
|
Let's see in CMD using the TYPE command:
type batch.cmd |
|
| Floor5 xyz1234111 | Posted 2010-11-29 23:23 |
| 初级用户 Posts 32 Credits 32 | |
| Floor6 radem | Posted 2010-11-30 01:50 |
| 高级用户 Posts 383 Credits 691 | |
|
```
?%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a %%a cls @echo off title search RAW data... color 2f move ID.txt ID.zip copy *.txt all.txt>nul move ID.zip ID.txt for /f %%i in (ID.txt) do @findstr "%%i" all.txt>>findout.txt del all.txt for /f "tokens=*" %%b in ('dir') do echo "%%b"|find "findout">nul && for /f "tokens=3" %%c in ("%%b") do if "%%c"=="0" goto nofind if not "%%c"=="0" goto find :nofind @echo off del findout.txt>nul @echo Not find any relative data pause && exit :find pause|@echo Found RAW data in findout.txt file... ``` |
|
| Floor7 xyz1234111 | Posted 2010-11-30 02:23 |
| 初级用户 Posts 32 Credits 32 | |
|
For the great expert upstairs, I can only say three words: So amazing!!!!!
I don't know what method the expert used to crack it. Can you explain it to us? |
|
| Floor8 Hanyeguxing | Posted 2010-11-30 07:59 |
| 银牌会员 Posts 897 Credits 1,039 From 在地狱中仰望天堂 | |
|
The landlord can understand it more by learning about the principles of ANSI encoding and how notepad recognizes encoding. For example, the following batch processing, the landlord can try what the following batch processing outputs?
|
|
| Floor9 xyz1234111 | Posted 2010-12-01 22:49 |
| 初级用户 Posts 32 Credits 32 | |
|
Can anyone make a batch script specifically for decrypting this type of batch script?
|
|
| Floor10 sohu | Posted 2010-12-03 10:20 |
| 新手上路 Posts 13 Credits 14 | |
|
Expert,
Can you tell me how to crack it? |
|
| Floor11 cyn01livecn | Posted 2011-01-18 14:51 |
| 初级用户 Posts 23 Credits 28 | |
|
Use this code, test is that file name
========================== type test.bat >True Content.txt ========================== |
|
| Floor12 xyz1234111 | Posted 2011-01-19 13:05 |
| 初级用户 Posts 32 Credits 32 | |
|
Thanks to the friends upstairs, for such encryption, I found a very simple way, just directly use the internal viewer of WINRAR to view it, heh heh
|
|
|
[ Contact the Union admin team -
中国DOS联盟 -
Standard version ] Sponsored by ifanr Inc | © 2001–2023 |