일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pfsense
- 한글가이드
- macos
- ELASTIC
- Kibana
- 보안양파
- miniconda
- proxycfg
- application security
- GitLab
- freebsd
- centos 8
- endpoint security
- Windows
- xe guest utilities
- hardening
- Kibana server is not ready yet
- 로그인불가
- elastic stack
- bash
- XCP-ng
- G-suite
- Elasticsearch
- ssh key 배포
- x-pack
- ansible
- Proxy
- docker
- PlayBook
- Today
- Total
목록IT/Security (221)
선 밖에 선 자유인
Install and Configure PulledPorkSnort needs to have an updated set of rulesets in order to be able to detect and respond to emerging threats as effectively as possible. Pulledpork is a Perl script that is able to keep your Snort rulesets updated at all times with a minimal amount of effort.Install prerequisites:apt-get install libcrypt-ssleay-perl liblwp-useragent-determined-perl -y Next, go to ..
DDoS 방어 레지스트리 수정 reg add HKLM\System\CurrentControlSet\Services\Tcpip\Parameters /v SynAttackProtect /t REG_DWORD /d 2reg add HKLM\System\CurrentControlSet\Services\Tcpip\Parameters /v EnablePMTUDiscovery /t REG_DWORD /d 0reg add HKLM\System\CurrentControlSet\Services\Tcpip\Parameters /v NoNameReleaseOnDemand /t REG_DWORD /d 1reg add HKLM\System\CurrentControlSet\Services\Tcpip\Parameters /v Ena..
RAT tool
net share /delete C$ 와 같은 방식으로 제거만 하면 재부팅시 다시 공유가 됨 우선 cmd> net share /delete C$ 와 같은 방식으로 제거를 하고 재부팅 시 올라오지 않도록 레지스트리 수정 - xp, 7 경우HKLM\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters / 에 AutoShareWks 라는 이름의 DWORD 값을 생성하고 0으로 지정 - WINDOWS 2003, 2008HKLM\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters / 에 AutoShareServer 라는 값을 0으로 추가 간단히 cmd에서 작업하게 되면 REG ADD HKLM\SYSTEM\Curr..
서버측에서 ssh-keygen 실행$ ssh-keygenGenerating public/private rsa key pair.Enter file in which to save the key (/home/danielsong/.ssh/id_rsa):Created directory ‘/home/danielsong/.ssh’.Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in /home/danielsong/.ssh/id_rsa.Your public key has been saved in /home/danielsong/.ssh/id_rsa.pub.The key finger..
http://www.xxx.com/index.php?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 같은 방법으로 PHP Credits 정보를 확인할 수 있다. expose_php=Offdisplay_errors=offsession.name=session_id 를 통해 해결 가능
아파치에서 SSL 2.0을 비활성화 아파치에서 SSL 2.0을 (SSLv2) 해제하는 방법 자세히 만 SSL 3.0 (SSLv3) 및 TLS 1.0되도록는 SSL (Secure Socket Layer) 연결에 사용할 수 있습니다. 기존의 아파치 conf의 파일을 백업 cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak httpd.conf에서 SSLCipherSuite에 대한 기존 참조를 주석 sed -i 's/SSLCipherSuite/#SSLCipherSuite/g' /etc/httpd/conf/httpd.conf 값을 httpd.conf에 다음 두 줄을 추가 SSLProtocol all -SSLv2SSLCipherSuite ALL:!ADH:!N..