일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PlayBook
- centos 8
- proxycfg
- ssh key 배포
- Proxy
- freebsd
- pfsense
- 로그인불가
- Kibana server is not ready yet
- 보안양파
- ansible
- G-suite
- hardening
- bash
- XCP-ng
- elastic stack
- 한글가이드
- xe guest utilities
- macos
- application security
- ELASTIC
- Windows
- miniconda
- endpoint security
- x-pack
- docker
- GitLab
- Elasticsearch
- Kibana
- Today
- Total
목록전체 글 (677)
선 밖에 선 자유인
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 문이 있는 부분을 수정하여 이용 가능
http://blog.websecurify.com/2014/08/hacking-nodejs-and-mongodb.html
- awk 명령어 사용법http://www.dreamy.pe.kr/zbxe/CodeClip/6332 - awk 관련 글들http://jikime.tistory.com/378http://mydoc.digimoon.net/board/skin/ggambo7002_board/print.php?id=board&no=343 - sed 및 awk 사용법http://egloos.zum.com/slog2/v/3689816 - 예제로 배우는 awk/필드와 레코드hhttps://ko.wikibooks.org/wiki/%EC%98%88%EC%A0%9C%EB%A1%9C_%EB%B0%B0%EC%9A%B0%EB%8A%94_AWK/%ED%95%84%EB%93%9C%EC%99%80_%EB%A0%88%EC%BD%94%EB%93%9C -..
해킨토시에서 맥 앱스토어 로그인 시 아래의 메시지가 보이며 로그인되지 않는 경우"장비 또는 컴퓨터를 확인할 수 없습니다. 고객 지원팀에 도움을 요청하십시오" 카멜레온 부트로더의 org.chameleon.Boot.plist 파일에 ㄷEthernetBuiltin 설정 추가 - 아래의 내용을 파일에 추가하거나EthernetBuiltIn y chamelon wizard 에서 Ethernet Builtin 에 체크
HKEY_CURRENT_USER\Control Panel\Desktop 에서
/* 테이블 생성 */create table [테이블명](id int,name varchar(20)); /* 컬럼 추가 */alter table [테이블명] add [컬럼명] [타입] [옵션]; ex) alter table [테이블명] add [컬럼명] varchar(100) not null default '0'; /* 컬럼 중간에 추가 */alter table [테이블명] add [컬럼명] [type명] after [위치할컬럼명]; /* 컬럼 순서 이동 */alter table [테이블명] modify [컬럼명] [type명] after [위치할컬럼명]; /* 컬럼 삭제 */alter table [테이블명] drop [컬럼명]; /* 컬럼명 변경 및 타입 변경 */alter table [테이블명] ch..