3.142.199.138´Ô ·Î±×ÀÎ ÇØÁÖ¼¼¿ä

MY wikix
óÀ½À¸·Î
³»¼Ò°³
»çÁø¹æ
°øºÎ¸Ç
ÀϱâÀå
¿µÈ­±¤
µ¶¼­±¤
À⵿»ç´Ï
¹æ¸í·Ï
À§Å° ÆäÀÌÁö
¸ðµç ÆäÀÌÁö
Àαâ ÆäÀÌÁö
º¯°æ ÆäÀÌÁö
°Ë»öÇϱâ

Today : 215  Total : 332572
ViewSource | info | diff | files

sis14 

°ü¸®¹æ¾î °ø°£ 41-50  

°ü¸®¹æ¾î °ø°£ 41-50 / level 41 / level 42 / level 43 / level 44 / level 45 / level 46 / level 47 / level 48 / level 49 / level 50

level 41  

+ Ç®ÀÌ ¹æ¹ý

  1. ufsdump ¸í·É »ç¿ë ¹é¾÷
  2. ufsrestore ¸í·É »ç¿ë º¹±¸

- ½ÇÁ¦ Ç®ÀÌ
# ufsdump 0ufv /data_bak/data.dump /data
DUMP: 32 KB ·¹Äڵ带 ¾²´Â Áß
DUMP: /dev/md/rdsk/d0À»(¸¦) ´ýÇÁÇϴ Áß (test:/data) /data_bak/data.dump(À¸)·Î.
DUMP: ¸ÅÇΠ(Æнº I) [Á¤±Ô ÆÄÀÏ]
DUMP: ¸ÅÇΠ(Æнº II) [µð·ºÅ丮]
DUMP: 6498 ºí·Ï (3.17MB)ÀÌ ¿¹»óµË´Ï´Ù.
DUMP: ´ýÇÁ Áß (Æнº III) [µð·ºÅ丮]
DUMP: ´ýÇÁ Áß (Æнº IV) [Á¤±Ô ÆÄÀÏ]
DUMP: ¸¶Áö¸· ´ýÇÁ º¼·ý ¾²±â ¿Ï·á
DUMP: È®ÀΠÆнº¸¦ ½ÃÀÛÇÕ´Ï´Ù
DUMP: º¼·ý 1ÀÇ 6462 ºí·Ï (3.16MB) 4888 KB/sec
DUMP: ´ýÇÁ ¿Ï·á
# ufsrestore -xvf /data_bak/data.dump ./data/test.data
Verify volume and initialize maps
Media block size is 126
Extract directories from tape
Initialize symbol table.
Dump   date: Fri Aug 08 11:27:04 2003
Dumped from: the epoch
Level 0 dump of a partial file system on mdsol:/data
Label: none
Extract directories from tape
Initialize symbol table.
Make node ./data
Extract new leaves.
Check pointing the restore
extract file ./data/test.data

# finish

> pass = blackdumpbackup

level 42  

+ Ç®ÀÌ ¹æ¹ý

  1. AddType »ç¿ë inc ÆÄÀÏ ³»¿ë À¯Ãâ ¹æÁö
  2. Æнº¿öµå º¯°æÈÄ ¾ÆÆÄÄ¡ Àç½ÇÇà

- ½ÇÁ¦ Ç®ÀÌ
# vi /usr/local/apache/conf/httpd.conf

        // Áß°£ »ý·«
##
## httpd.conf -- Apache HTTP server configuration file
#And for PHP 4.x, use:
#
AddType application/x-httpd-php .php .php3 .php4 .phtml .inc    // Ãß°¡ ºÎºÐ
AddType application/x-httpd-php-source .phps

AddType application/x-tar .tgz

"/usr/local/apache/conf/httpd.conf" 922 lines, 30919 characters written

# cd /usr/local/apache/htdocs
# ls
connect.inc
# vi connect.inc 

<? php

        &mysql_host = "100.100.100.100";
        &mysql_name = "sqlserver";
        &mysql_user = "test";
        &mysql_passwd = "opop";              // ¼öÁ¤ ºÎºÐ

        $connect = mysql_connect(&mysql_host, &mysql_user, &mysql_passwd) or die("SQL ");

        $mysql_select_db(&mysql_name, $connect) or die("select db error");

?>
~
"connect.inc" 13 lines, 276 characters written
# ps
   PID TTY      TIME CMD
 28118 pts/22   0:00 bash
 28124 pts/22   5:24 mysqld
 28223 pts/22   0:00 ps
 28197 pts/22   0:00 httpd
# kill -1 28197
# finish

> pass = patchvirus

level 43  

+ Ç®ÀÌ ¹æ¹ý

  1. httpd.conf ÆÄÀÏ ¼öÁ¤ IncludesNOEXEC ¿É¼Ç »ç¿ë
  2. /etc/default/passwd ÆÄÀÏ ¼öÁ¤
  3. /etc/opt/ipf/ipf.conf ÆÄÀÏ ¼öÁ¤

- ½ÇÁ¦ Ç®ÀÌ
# vi /usr/local/apache/conf/httpd.conf 

         // Áß°£ »ý·«
#
# This should be changed to whatever you set DocumentRoot to.
#  
<Directory "/usr/local/apache/htdocs">

#  
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
    Options IncludesNOEXEC        // ¼öÁ¤ ºÎºÐ

"/usr/local/apache/conf/httpd.conf" 831 lines, 27497 characters written
# ps
   PID TTY      TIME CMD
 28412 pts/22   0:00 ps
 28395 pts/22   0:00 httpd
 28392 pts/22   0:00 bash
 28400 pts/22   0:00 ipmon
# kill -1 28395
#
# vi /etc/default/passwd 
#ident  "@(#)passwd.dfl 1.3     92/07/14 SMI"

MAXWEEKS=8
MINWEEKS=0
WARNWEEKS=1
PASSLENGTH=8
~
"/etc/default/passwd" 6 lines, 90 characters written
#
# vi /etc/opt/ipf/ipf.conf 
#
# The following routes should be configured, if not already:
#
   // Áß°£ »ý·«

block in quick from 200.200.200.1/32 to any         // Ãß°¡ ºÎºÐ
"/etc/opt/ipf/ipf.conf" 29 lines, 937 characters written
#
# ps 
   PID TTY      TIME CMD
 28395 pts/22   0:00 httpd
 28392 pts/22   0:00 bash
 28400 pts/22   0:00 ipmon
 28442 pts/22   0:00 ps
# kill -1 28400
# finish

> pass = gonextlevel

level 44  

+ Ç®ÀÌ ¹æ¹ý

  1. ¶ó¿ìÅÍ ½ÇÁ¦ Ç®ÀÌ ÂüÁ¶

- ½ÇÁ¦ Ç®ÀÌ
switch# conf t
Enter configuration commands, one per line.
switch(config)# no ip igmp snooping
switch(config)# exit
switch# write
%SYS-5-CONFIG_I: Configured from console by console
Building configuration...
[OK]
switch# exit
exit from router
# finish

> pass = thefirstconsul

level 45  

+ Ç®ÀÌ ¹æ¹ý

  1. ¶ó¿ìÅÍ ¼³Á¤ ¹®Á¦ ½ÇÁ¦ Ç®ÀÌ ÂüÁ¶

- ½ÇÁ¦ Ç®ÀÌ
Router# show user
   Line       User       Host(s)             Idle       Location     
 *130 vty 0                idle              00:00:00 211.241.82.54   
  131 vty 1                idle              03:01:06 5.5.5.5   
Router# clear line 131          // À¯Àú Á¢¼Ó ²÷±â
Router# conf t
Enter configuration commands, one per line. 
Router(config)# line vty 0 4                 // À¯Àú ¸í¼ö ¼¼ÆÃ
Router(config-line)# transport input none
Router(config-line)# exit                              
Router(config)# line con 0                   // Äܼ֠ȯ°æ ¼³Á¤
Router(config-line)# login local
Router(config-line)# exec-timeout 2
Router(config-line)# exit
Router(config)# exit
Router# write
%SYS-5-CONFIG_I: Configured from console by console
Building configuration...
[OK]
=============
Router# exit
exit from router
# finish

> pass = haveaweakpoint

level 46  

+ Ç®ÀÌ ¹æ¹ý

  1. ¶ó¿ìÅÍ ¼³Á¤ ¹®Á¦ ½ÇÁ¦ Ç®ÀÌ ÂüÁ¶

- ½ÇÁ¦ Ç®ÀÌ
Router# copy tftp flash
                            ****  NOTICE  **** 
   Flash load helper v1.0 
   This process will accept the copy options and then terminate 
   the current system image to use the ROM based image for the copy. 
   Routing functionality will not be available during that time. 
   If you are logged in via telnet, this connection will terminate. 
   Users with console access can see the results of the copy operation. 

                           ---- ******** ---- 
   Proceed? [confirm][Enter]                             // ¿£ÅÍ Çѹø..

   System flash directory: 
   File  Length   Name/status 
     1   4305884  c2500-i-l.112-18   
   [4305948 bytes used, 4082660 available, 8388608 total] 
        Address or name of remote host ? 10.1.1.1   10.1.1.1       // 10.1.1.1 ÁÖ¼Ò ÀÔ·Â..
   Source file name? newIOS.update newIOS.update                   // newIOS.update ÆÄÀϸí ÀÔ·Â
   Destination file name [newIOS.update]? [Enter]                  // ¿£ÅÍ Çѹø

   Accessing file 'newIOS.update' on 10.1.1.1...

   Loading newIOS.update .from 10.1.1.1 (via Ethernet0): ! [OK]    // ¿£ÅÍ Çѹø..

   Erase flash device before writing? [confirm][Enter]             // ¿£ÅÍ Çѹø..


   Flash contains files. Are you sure you want to erase? [confirm][Enter]   // ¿£ÅÍ Çѹø..




   Copy 'newIOS.update' from server
     as 'newIOS.update' into Flash WITH erase? [Enter]            // ¿£ÅÍ Çѹø..


   FLH: newIOS.update from 10.1.1.1 to flash ... 

   System flash directory:
   File  Length   Name/status
     1   4305884  c2500-i-l.112-18  
   [4305948 bytes used, 4082660 available, 8388608 total]
   Accessing file 'newIOS.update' on 10.1.1.1...
   Loading newIOS.update from 10.1.1.1 (via Ethernet0): ! [OK]    // ¿£ÅÍ Çѹø..




   Erasing device... eeeeeeeeeeeeeeeeeeeeeeeeeeeeee...erased 






   Loading  newIOS.update from 10.1.1.1 (via Ethernet0): !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
   [OK - 7524464/8388608 bytes] 



   Verifying checksum...  OK (0x26FB)

   Flash copy took 0:03:46 [hh:mm:ss]

   FLH: Re-booting system after download

   F3: 7416580+107852+570760 at 0x3000060


                 Restricted Rights Legend



   Use, duplication, or disclosure by the Government is
   subject to restrictions as set forth in subparagraph
   (c) of the Commercial Computer Software - Restricted
   Rights clause at FAR sec. 52.227-19 and subparagraph
   (c) (1) (ii) of the Rights in Technical Data and Computer
   Software clause at DFARS sec. 252.227-7013.

              cisco Systems, Inc.
              170 West Tasman Drive
              San Jose, California 95134-1706

   Cisco Internetwork Operating System Software 
   IOS (tm) 2500 Software (C2500-I-L), Version 12.3, RELEASE SOFTWARE (fc1)
   Copyright (c) 1986-2000 by cisco Systems, Inc.
   Image text-base: 0x0303D3A0, data-base: 0x00001000

   cisco 2500 (68030) processor (revision N) with 6144K/2048K bytes of memory.
   Processor board ID 19492718, with hardware revision 00000000
   Bridging software.
   X.25 software, Version 3.0.0.
   1 Ethernet/IEEE 802.3 interface(s)
   2 Serial network interface(s)
   32K bytes of non-volatile configuration memory.
   8192K bytes of processor board System flash (Read ONLY)



   Press RETURN to get started! 


   Cisco Internetwork Operating System Software 
   IOS (tm) 2500 Software (C2500-I-L), Version 12.3, RELEASE SOFTWARE (fc1)
   Copyright (c) 1986-2000 by cisco Systems, Inc.
   00:00:45: INK-5-CHANGED: Interface Serial0, changed state to administratively down
   00:00:45: INK-3-UPDOWN: Interface Ethernet0, changed state to up
   00:00:45: INK-5-CHANGED: Interface Serial1, changed state to administratively down
   00:00:46: INEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
   00:00:46: INEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0, changed state to up
   00:00:46: INEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
Router# conf t
Enter configuration commands, one per line. 
Router(config)# line vty 0 4
Router(config-line)# password DoNotTouch
Router(config)# enable secret AuthOnly
Router(config)# exit
Router# write
%SYS-5-CONFIG_I: Configured from console by console
Building configuration...
[OK]
=============
Router# exit
exit from router
# finish
success

> pass = astrongpoint

level 47  

+ Ç®ÀÌ ¹æ¹ý

  1. http://httpd.apache.org/docs-2.0/ko/mod/mod_rewrite.html
  2. http://httpd.apache.org/docs-2.0/ko/misc/rewriteguide.html

- ½ÇÁ¦ Ç®ÀÌ
# vi httpd.conf

RewriteEngine On
RewriteLogLevel 9
RewriteLog /usr/local/apache/logs/rewrite.log
RewriteRule /sbin|/bin|/etc|httpd\.conf|access_log|error_log - [F]

~
~
"httpd.conf" 934 lines, 31155 characters written
# ps
   PID TTY      TIME CMD
 26000 pts/64   0:00 ps
 25958 pts/64   0:00 httpd
 25955 pts/64   0:00 bash
# kill -1 25958

# finish

> pass = apacherewriteok

level 48  

+ Ç®ÀÌ ¹æ¹ý

  1. ¶ó¿ìÅÍ ¼³Á¤ ¹®Á¦ ½ÇÁ¦ Ç®ÀÌ ÂüÁ¶

- ½ÇÁ¦ Ç®ÀÌ
Router# conf t
Enter configuration commands, one per line. 
Router(config)# interface null0
Router(config-if)# no ip unreachables 
Router(config-if)# exit
Router(config)# ip route 61.144.253.3 255.255.255.255 null0
Router(config)# ip route 202.104.111.0 255.255.255.0 null0
Router(config)# exit
Router# write
%SYS-5-CONFIG_I: Configured from console by console
Building configuration...
[OK]
Router# exit
exit from router
# finish
success

> pass = blackholeisblack

level 49  

+ Ç®ÀÌ ¹æ¹ý

  1. mysql ¼³Á¤ ¹®Á¦..
  2. Ç®ÀÌ °úÁ¤ ÂüÁ¶

- ½ÇÁ¦ Ç®ÀÌ
# vi /etc/my.cnf

[mysqld]
user=btevdocd
datadir=/www/database/mysql
socket=/www/database/mysql/mysql.sock
skip-innodb
skip-networking             //  ³×Æ®¿öÅ©¿¡¼­ÀÇ Á¢±Ù Á¦¾î

[mysql.server]
user=btevdocd
basedir=/www/database

[client]
user=btevdocd
socket=/www/database/mysql/mysql.sock

[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
~
~
"my.cnf" 19 lines, 316 characters written

# mysqladmin drop test -p                // test µðºñ »èÁ¦..
Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.

Do you really want to drop the 'test' database [y/N]
y
Database "test" dropped
# mysql -u root -p
mysql>update user set Password=password('akdlsql') where user="root";    // ·çÆ® Æнº¿öµå º¯°æ
Query OK, 1 row affected (0.02 sec)
mysql>delete from user where user="evil";            // evil »ç¿ëÀÚ »èÁ¦
Query OK, 1 row affected (0.05 sec)
mysql>delete from db where db="test";                // µ¥ÀÌŸ º£À̽º Á¤º¸ Å×ÀÌºí¿¡¼­ testÇʵ堻èÁ¦
Query OK, 1 row affected (0.05 sec)
mysql>flush privileges                               // º¯°æ»çÇ× Àû¿ë
Query OK, 1 row affected (0.05 sec)
mysql>quit 

> pass = mysqlsetupok

level 50  

+ Ç®ÀÌ ¹æ¹ý

  1. /etc/cron.d/cron.allow ÆÄÀÏ »ý¼º À¯Àú Ãß°¡

- ½ÇÁ¦ Ç®ÀÌ
# vi cron.allow 

dump_admin
~
~
"cron.allow" 1 line, 11 characters written
#    
# finish

> pass = cronallowok


Last : 2004-11-19 03:53:20   Who : 211.242.59.68
Version : v9
4048 hits