일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ELASTIC
- macos
- G-suite
- pfsense
- Windows
- Proxy
- PlayBook
- centos 8
- 로그인불가
- freebsd
- 보안양파
- x-pack
- elastic stack
- proxycfg
- 한글가이드
- bash
- Kibana
- XCP-ng
- docker
- xe guest utilities
- endpoint security
- miniconda
- application security
- Elasticsearch
- ansible
- GitLab
- hardening
- Kibana server is not ready yet
- ssh key 배포
- Today
- Total
목록IT (650)
선 밖에 선 자유인
boot0: error 시 installer 디스크의 boot1h 를 mac osx 가 설치된 디스크로 dd if=/usr/standalone/i386/boot1h of=/dev/ 재부팅 시 커널 패닉이 나는 경우는 -v npci=0x2000 옵션 추가 부팅
http://www.primalsecurity.net/
http://hackingdemystified.com/
- find 루 검색 및 perl, sed 를 이용 문자열 치환 - perl$ find ./ -name -exec perl -pi -e 's///g' {} \; - sed$ find ./ -name -exec sed -i 's///g' {} \; - 현재 디렉토리 하위의 모든 파일의 문자열 치환$ find . -type f -exec perl -pi -e 's//' {} \; * find ./ -name ".php" 등의 패턴으로 특정 파일 지정 가능
The OWASP Internet of Things Top 10 - 2014 is as follows: I1 Insecure Web InterfaceI2 Insufficient Authentication/AuthorizationI3 Insecure Network ServicesI4 Lack of Transport EncryptionI5 Privacy ConcernsI6 Insecure Cloud InterfaceI7 Insecure Mobile InterfaceI8 Insufficient Security ConfigurabilityI9 Insecure Software/FirmwareI10 Poor Physical Security Link: https://www.owasp.org/index.php/OWAS..
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont하위에 0494라는 이름의 문자열 키 생성*Bitstream Vera Sans Mono cmd창의 속성에서 변경 사전에 Bitstream Vera Sans Mono 폰트가 설치되어 있어야 함
EX) 인자를 받아 해당 프로세스의 PID를 출력하는 스크립트 ---------------------------------------#!/bin/sh p_list=`pgrep -x $1` for name in $p_list; do echo "$1 process PID: $name" # 필요한 작업done----------------------------------------- echo 문이 있는 부분을 수정하여 이용 가능