China DOS Union

-- Unite DOS · Advance DOS · Grow DOS --

Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!

中国DOS联盟论坛
The time now is 2026-06-24 06:50
中国DOS联盟论坛 » 其它操作系统综合讨论区 » [Super Skill] Abnormal Directory [Updated on 2006-10-19] View 31,983 Replies 54
Floor 31 Posted 2007-05-25 20:20 ·  中国 湖北 黄冈 电信
中级用户
★★
Credits 376
Posts 164
Joined 2006-12-05 01:28
19-year member
UID 72582
Gender Male
Status Offline
I introduced the method of hiding with a directory name containing.. here before. Today I found a virus on a colleague's computer at the company, with the directory file name runauo..\, and I also found a virus hidden in recycled not long ago. Both are learning the "Panda Burning Incense" trick. Actually, these techniques were originally intended to teach everyone to collect their own things, but I didn't expect someone to use them for bad purposes. I hope everyone does some good deeds, learns the real hacker spirit, and doesn't harm others. Maybe one day it will harm yourself.

I mostly use my real name when I come to the forum. My name is Min Cheng'an. I hope to make some friends.
Floor 32 Posted 2007-06-01 15:01 ·  中国 福建 龙岩 电信
初级用户
Credits 56
Posts 28
Joined 2006-10-26 11:30
19-year member
UID 68358
Gender Male
Status Offline
Retain device name
Create: md D:\con\ (Note: The following \ number!! Cannot be less!!)
Access: Direct access under XP. But cannot be directly deleted in explorer. In 2k, use Run D:\con\. Unknown in 9x~~ Should not be accessible
Delete: rd /s D:\con\ (If not working, use the above rd /s /q \\.\D:\con\)
--------------------------------------------------------------------------------------------------
The folder established in the FAT32 file system partition of Windows XP SP2 through this method cannot be deleted using the command line provided by the landlord. Do you need to do it in pure DOS? Thanks :)
淡淡风...
光盘启动交流群:
19658936
Floor 33 Posted 2007-06-01 23:06 ·  中国 广东 深圳 联通
新手上路
Credits 18
Posts 10
Joined 2007-05-11 22:00
19-year member
UID 88228
Gender Male
Status Offline
What a lot of fuss, is it possible to delete after building?
Floor 34 Posted 2007-06-16 15:12 ·  IANA 局域网IP(Private-Use)
新手上路
Credits 16
Posts 8
Joined 2007-06-04 21:57
19-year member
UID 90264
Gender Male
Status Offline
Admired, it's possible like this...
Floor 35 Posted 2007-06-23 21:35 ·  中国 湖南 岳阳 电信
新手上路
Credits 18
Posts 9
Joined 2007-06-21 09:49
19-year member
UID 91948
Gender Male
From 湖南
Status Offline
Floor 36 Posted 2007-06-28 12:01 ·  中国 北京 海淀区 联通
新手上路
Credits 10
Posts 5
Joined 2007-06-27 10:12
18-year member
UID 92455
Gender Male
Status Offline
Whether it's a disease, a vulnerability, or a defect, it depends on how you utilize it. For example, I often, after locating a trojan, delete the virus itself through another system or an optical disc system, and then create a folder with the same name as the original virus's exe, dll, etc. files, and then create some "abnormal folders" inside it. This can effectively resist the resurrection means of trojans, etc. Many times, invaders modify trojans or use multiple trojans jointly. After the anti-virus software detects some and successfully removes them, when it restarts, the trojan recovers again. At this time, the abnormal directory is an effective tool to resist the resurrection of trojans.

[ Last edited by hamapanama on 2007-6-28 at 01:08 PM ]
Floor 37 Posted 2007-07-10 23:19 ·  中国 山东 聊城 电信
系统支持
★★★
Credits 1,010
Posts 434
Joined 2007-02-08 00:00
19-year member
UID 78999
Gender Male
Status Offline
Floor 38 Posted 2007-07-13 00:11 ·  中国 广东 广州 电信
初级用户
Credits 44
Posts 25
Joined 2007-03-10 08:07
19-year member
UID 81294
Gender Male
Status Offline
Floor 39 Posted 2007-07-26 09:01 ·  中国 山西 大同 移动
新手上路
Credits 6
Posts 3
Joined 2007-07-26 08:35
18-year member
UID 94053
Gender Male
Status Offline
Really gain knowledge, learned!
Floor 40 Posted 2007-11-14 15:20 ·  中国 广东 广州 电信
新手上路
Credits 18
Posts 8
Joined 2007-01-07 05:42
19-year member
UID 75689
Gender Male
Status Offline
Floor 41 Posted 2008-02-03 22:29 ·  中国 广东 电信
银牌会员
★★★★
SuperCleaner
Credits 2,362
Posts 1,133
Joined 2008-02-02 21:36
18-year member
UID 110072
Gender Male
Status Offline
Tried it oh,
md autorun.inf
cd autoru~1
md a..\ &……
Then cd.. and then rd autorun.inf /s /q to delete it
Later, because my hard drive is in NTFS format, use the access permission command cacls autorun.inf /p everyone:n
Then open avkiller and it was still succeeded by avkiller. The original autorun.inf folder was changed to another name:(
Floor 42 Posted 2008-02-04 16:06 ·  中国 广东 广州 电信
银牌会员
★★★★
SuperCleaner
Credits 2,362
Posts 1,133
Joined 2008-02-02 21:36
18-year member
UID 110072
Gender Male
Status Offline
::Should... it will not cause bad results. Suitable for disks in NTFS format
@echo off
for %%a in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do (
if exist %%a: (
%%a: &cd\
for /f "tokens=*" %%b in ('dir /a-d /b autorun.inf') do (del /a /f /q %%b)
::If there is still autorun.inf at this time, it should be a folder that cannot be deleted
if exist autorun.inf goto :fail
md autorun.inf &cd autorun.inf
md a..\ &md con\ &md nul\ &md aux\ &md com1\
cd..
attrib autorun.inf +a +s +h +r
echo y|cacls autorun.inf /p everyone:n
))

:2
cls
echo Do you want to cancel?
set /p in=(y/n)
if /i %in%==y goto delete
if /i %in%==n (exit) else (goto 2)

:delete
for %%c in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do (
if exist %%c:\autorun.inf (
%%c: &cd\
echo y|cacls autorun.inf /p everyone:f
cd autorun.inf
rd a..\ &rd con\ &rd nul\ &rd aux\ &rd com1\
cd..
rd autorun.inf /s /q
))
exit

:fail
echo It may have been established, or other problems occurred. Press any key to go to the delete item.
pause>nul
goto :2


[ Last edited by 523066680 on 2009-10-14 at 19:50 ]
Floor 43 Posted 2008-03-17 13:21 ·  中国 湖南 益阳 电信
新手上路
Credits 14
Posts 7
Joined 2008-03-17 12:01
18-year member
UID 113184
Gender Male
Status Offline
Collected..
I have the same feeling as building 36.
Floor 44 Posted 2008-03-17 14:53 ·  中国 广东 肇庆 电信
初级用户
Credits 24
Posts 12
Joined 2008-03-16 16:25
18-year member
UID 113135
Gender Male
Status Offline
Hehe. There are indeed many methods, but I have a question. After I merged two partitions, the content in one folder can't be opened. How to get it out? Friends who find the method can reply an email to me
zhi-052@tom.com
Floor 45 Posted 2008-03-22 10:23 ·  中国 广东 揭阳 电信
银牌会员
★★★★
SuperCleaner
Credits 2,362
Posts 1,133
Joined 2008-02-02 21:36
18-year member
UID 110072
Gender Male
Status Offline
Almost re-posted a big thread, might as well post it here.

Earlier it was mentioned about the folder whose device name is the folder name.
I tried to create a folder with the drive letter as the name: md "c: \"
Result... Created a folder with no name... Then when directly deleting with the mouse, it said --- Unable to read the original disk or file.

After plp626's explanation, I was shocked... Oh, it turns out it's the same as md " \" with c:
Forum Jump: