일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- endpoint security
- ssh key 배포
- macos
- 보안양파
- Kibana server is not ready yet
- pfsense
- elastic stack
- ELASTIC
- xe guest utilities
- docker
- ansible
- 로그인불가
- XCP-ng
- centos 8
- Windows
- GitLab
- Elasticsearch
- Kibana
- application security
- PlayBook
- freebsd
- G-suite
- 한글가이드
- Proxy
- x-pack
- proxycfg
- miniconda
- hardening
- bash
- Today
- Total
목록IT/Security (221)
선 밖에 선 자유인
- mongodb 보안 관련 내용http://cinema4dr12.tistory.com/entry/MongoDB-Administration-Security-Authentication
http://www.slideshare.net/sukkim737/oracle-enterprise-linux-new-featurefirewalld?ref=http://solatech.tistory.com/337
출처: http://blog.naver.com/bitnang/220692059829
- erambahttp://www.eramba.org/
최신 취약점 및 patch 버전 관련 https://tomcat.apache.org/security-8.htmlhttps://tomcat.apache.org/security-7.htmlhttps://tomcat.apache.org/security-6.html
- nginx security advisories pagehttp://nginx.org/en/security_advisories.html
#!/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..