### postgresql password reset ###
Step 1. Edit PostgreSQL config file to establish trust relationship to login without password:
# vi /var/lib/pgsql/data/pg_hba.conf
Old Line:
local all postgres password
Change it to:
local all postgres trust

Step 2. Restart PostgreSQL Server:
# /etc/rc.d/init.d/postgresql restart

Step 3. Change password:
# psql -U postgres template1 -c alter user postgres with password ‘newpassword’;

Step 4. Password has been updated. Revert back the original settings of config file:
# vi /var/lib/pgsql/data/pg_hba.conf
Old Line:
local all postgres trust
Change it to:
local all postgres password

Step 5. Restart server and use your new password to access PostgreSQL Server.
# /etc/rc.d/init.d/postgresql start


0X00. database conn #############
# psql -U segio template1

0x01. database list #########
=# \l
# psql -U postgres -l
        List of databases
   Name    |  Owner   | Encoding
-----------+----------+----------
 cell_000  | user_000 | UTF8
 postgres  | postgres | UTF8
 template0 | postgres | UTF8
 template1 | postgres | UTF8
(4 rows)

0x02.  database access#########
# psql -U postgres cell_000

0x03.  database table#########
cell_000=# \dt

0x04. user table #############
cell_000=# select * from user_info;
 no | rname  | uname  |   uid    |    passwd     |        email        |   mobile    |  birth   | zipcode | zipcode2 | addr1 | addr2 | addr3 | addr4 |           quiz           | answer | polimg | uimg |  level   |   wdate    | udate | open | type | class | ext1 | ext2 | ext3 | ext4 | ext5 | ext6
----+--------+--------+----------+---------------+---------------------+-------------+----------+---------+----------+-------+-------+-------+-------+--------------------------+--------+--------+------+----------+------------+-------+------+------+-------+------+------+------+------+------+------
  1 | sysop  | sysop  | sysop    | ㅇㅇㅇㅇ |                     |             |          |         |          |       |       |       |       |                          |        |        |      | 9,관리자 | 1294742453 |       |      | 0    |       |      |      |      |      |      |
(1건 있음)

Posted by 김주일
시스템/윈도우보안2010. 12. 31. 14:04
Posted by 김주일
어플리케이션/웹보안2010. 12. 28. 14:24
Posted by 김주일
Posted by 김주일
Posted by 김주일
보안관리체계/뉴스2010. 12. 4. 11:02

링크 : http://edu.fsa.or.kr

- 웹 보안 교안 
- DDoS 공격 및 대응실무 교안

### 웹보안 ###
- 국내 공개된 컨텐츠 중 내용, 구성 면에서 만족할 수준
- 웹 보안 중 ju12, lalala 문자열이 보임..ㅎㅎ

### DDoS 공격 및 대응실무
- 공격별 트래픽 이상 징후 패킷화면이 있었으면 좋을 듯
- 한국정보보호교육센터 대표이사님 말씀 부분이 나오질 않음
Posted by 김주일
보안관리체계2010. 12. 2. 10:43
Posted by 김주일
시스템/윈도우보안2010. 12. 1. 18:32
ㅁ 개요
ㅇ사내 도입된 백신소프트웨어인 알약을 통해 악성트래픽 관리방안 전달
ㅇ이를 위해 전 직원은 현 사용중인 알약 버전 확인 후 버전 2.0으로 업그레이드 필요
※ 파일 서버 참조 (\파일서버\05.공용파일\03.SAK용보안솔루션메뉴얼\01.알약)

ㅁ 주요 내용
윈도우 창 우측 하단의 알약을 클릭하여 알약열기를 클릭




ㅇ상위 메뉴 중 네트워크 보호를 클릭 후 방화벽 설정 버튼 클릭



ㅇ네트워크(방화벽) 메뉴 중 방화벽 기능을 활성화들어오는 연결과 나가는 연결을 모두 체크
ㅇ또는 방화벽 규칙설정 설정을 통해 수동으로 허용/차단 트래픽 제어가 가능



ㅇ이 후 외부/내부 향하는 트래픽 발생시 윈도우 창 우측 하단에 아래와 같은 화면이 팝업되는 것을 확인가능
프로그램 정보통신정보를 확인 후 트래픽의 허용/차단여부를 결정



ㅁ 기타
ㅇ용어 정의
 - 트래픽 : 내/외부 통신을 위해 컴퓨터(PC)에서 발생하는 데이터의 일종
Posted by 김주일
개인정보보호/가이드2010. 11. 29. 11:36
Posted by 김주일
보안관리체계2010. 11. 16. 14:02
Posted by 김주일