일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kibana
- elastic stack
- 한글가이드
- pfsense
- freebsd
- ansible
- docker
- GitLab
- Elasticsearch
- G-suite
- xe guest utilities
- Kibana server is not ready yet
- XCP-ng
- PlayBook
- application security
- proxycfg
- macos
- endpoint security
- ssh key 배포
- Windows
- ELASTIC
- centos 8
- Proxy
- bash
- hardening
- 로그인불가
- 보안양파
- miniconda
- x-pack
- Today
- Total
목록전체 글 (677)
선 밖에 선 자유인
컴파일 옵션 예시 출처: https://gist.github.com/envi/5523460 ./configure \--prefix=/usr/local/stow/nginx \--conf-path=/etc/nginx/nginx.conf \--sbin-path=/usr/sbin \--http-log-path=/var/log/nginx/access.log \--error-log-path=/var/log/nginx/error.log \--pid-path=/var/run/nginx.pid \--lock-path=/var/lock/nginx.lock \--http-client-body-temp-path=/var/lib/nginx/body \--http-proxy-temp-path=/var/lib/nginx/proxy..
- nginx security advisories pagehttp://nginx.org/en/security_advisories.html
nginx 설치 전 소스 수정 nginx-1.8.1/src/http/ngx_http_header_filter_module.c 49번째 라인 수정 49 static char ngx_http_server_string[] = "Server: nginx" CRLF; 50 static char ngx_http_server_full_string[] = "Server: " NGINX_VER CRLF; => 49 static char ngx_http_server_string[] = "change" CRLF; 50 static char ngx_http_server_full_string[] = "change" CRLF; buid 후 install
특정 폴더에 다운로드 하기 $ wget -P or$ wget -P
#!/usr/bin/python import sys import socket target = str(sys.argv[1]) port = 80 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((target, port)) s.send("OPTIONS / HTTP/1.1\r\nHost: www.google.com\r\n\r\n") response = s.recv(4096) print response 혹은 #!/usr/bin/python import socket import sys # Building Socket af,type,proto,name,conn = socket.getaddrinfo(sys.argv[1], sys.argv[2], 0, 0..
영어 메일 작성 50개 패턴 https://quizlet.com/2432857/50-flash-cards/
테스트 #!/bin/bash num=1 result="result.txt" if [ -f $result ]; then rm -f ./$result fi for file in `cat file-list.txt` do type=`echo "$file" | awk -F "." '{print $2}'` count=`grep -c "$file" ` pi='None' grep "$file" | awk -F " - - " '{print $1}' | sort -u > ip.txt arr=() for line in `cat ip.txt` do line=`echo $line | tr -d ','` arr+=($line) done src=${arr[@]} fullpath=`grep "$file" full-path-file...