일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 한글가이드
- macos
- XCP-ng
- PlayBook
- miniconda
- docker
- xe guest utilities
- Kibana
- 로그인불가
- Kibana server is not ready yet
- elastic stack
- proxycfg
- 보안양파
- centos 8
- ansible
- freebsd
- pfsense
- application security
- Proxy
- GitLab
- bash
- Windows
- hardening
- x-pack
- endpoint security
- Elasticsearch
- ELASTIC
- G-suite
- ssh key 배포
- Today
- Total
목록IT (650)
선 밖에 선 자유인
Snort 분석, 오탐을 경험해 보자http://www.dailysecu.com/news_view.php?article_id=10710
Snort 분석, 패킷 발생량 기반 탐지룰-두번째http://www.dailysecu.com/news_view.php?article_id=10710
패킷 발생량 기반 탐지http://www.dailysecu.com/news_view.php?article_id=10240
- 패턴매칭 기반 보안솔루션 정확도 개선 방안http://www.dailysecu.com/news_view.php?article_id=10063
- 오탐 양산하는 원인 찾아 제거하는 과정Link: http://www.dailysecu.com/news_view.php?article_id=10053 좋다.
IP Address => Hex, Decimal, BinaryHex => IP AddressDecimal => IP Address 원본: http://ncalculators.com/digital-computation/ip-address-hex-decimal-binary.htm
- DBMS의 utf-8 설정 my.cnf 에 아래 문구 추가[mysqld]character-set-server=utf8 mysql> status;Server characterset: utf8Db characterset: utf8Client characterset: utf8Conn. characterset: utf8 - 특정 Field 선택 및 데이터 입력 시 (UTF8 형식) LOAD DATA LOCAL INFILE ''INTO TABLE table_name character set utf8FIELDS TERMINATED BY ','ENCLOSED BY '"'LINES TERMINATED BY '\n'(column1, column2, column3, ... );
특정 테이블의 내용을 select 한 결과를 다른 테이블에 추가 시 - tableA 조회 결과 => tableB insert tableB (column1, column2, column3, column4) select * from tableA where columnA = ; * 중복 제거 하면서 insertINSERT INTO tableBSELECT * FROM tableA WHERE and column2 NOT IN (SELECT column2 FROM tableB)GROUP BY column1