반응형 전체 글27 수리카타 사용자 가이드 (Suricata User Guide 번역) 수리카타 사용자 가이드 1. 수리카타 소개 (What is Suricata) 1.1. About the Open Information Security Foundation 2. 설치 (Installation) 2.1. Source 2.2. Binary packages 2.3. Advanced Installation 3. 명령줄 옵션 (Command Line Options) 3.1. Unit Tests 4. Suricata 탐지 규칙 (Suricata Ruleset) 4.1 탐지 규칙 양식 (Rules Format) 4.2. Meta Keywords 4.3. IP Keywords 4.4. TCP keywords 4.5. ICMP keywords 4.6. Payload Keywords 4.7. Transfor.. 2019. 8. 29. firebase init (location is not set error) 에러 발생시 firebase init (location is not set error) 에러 발생시 firebase init 명령 실행중 아래 에러가 발생하는 경우가 있습니다. === Firestore Setup Error: Cloud resource location is not set for this project but the operation you are attempting to perform in Cloud Firestore requires it. Please see this documentation for more details: https://firebase.google.com/docs/projects/locations 해당 에러는 "Google Cloud Platform(GCP) 리소스 위치"를 지정하.. 2019. 7. 31. Node.js HTTP Request 보내기 (with request.js) 1. HTTP GET 요청 1) 단순 GET 요청 (1) Code const request = require('request'); // Get 요청하기 http://www.google.com const options = { uri: "http://www.google.com" }; request.get(options, function (error, response, body) { //callback }); (2) Payload 2) Query String을 포함한 GET 요청 (1) Code const request = require('request'); // Get 요청하기 http://www.google.com?id=1000 const options = { uri: "http://www.google.c.. 2019. 7. 16. Nodejs Forever 모듈 설치 및 기본 사용법 Nodejs Forever 모듈 설치 및 사용법 Nodejs는 기본적으로 단일 쓰레드 방식으로 동작하기 때문에 개발 과정에서 별도의 처리를 해주지 않을 경우 서비스 도중 예외가 발생하면 서버가 비정상 종료될 가능성이 높다. 이러한 상황에서 지속적으로 서버를 재실행 시켜주는 방법중 하나는 nodejs의 forever모듈을 사용하는 것인데 이번 글에서는 forever 모듈의 설치 ln -s /opt/nodejs/node-v10.14.1-linux-x64/bin/forever /usr/bin/forever방법과 사용법을 정리하였다. 참고 1) Linux 환경에서 Nodejs 설치하기2018/12/05 - [IT일반/Linux] - Linux에 nodejs 설치하기 1) forever 모듈 설치하기(1) 설치#.. 2018. 12. 6. 이전 1 ··· 3 4 5 6 7 다음 반응형