일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- Sysinternals
- 행정구역분류
- Windows10
- deployment
- kubectl
- Flutter
- Java
- nginx-media-server
- Android
- Kubernetes
- ebpf
- namespace
- android studio
- aws
- HLS
- configmap
- golang
- aws cli
- wireshark
- macos
- Shell script
- dart
- Pod
- service
- Python
- spring cloud config
- RTMP
- ffmpeg
- VSCode
- Today
- Total
목록분류 전체보기 (120)
woonizzooni
Strings https://docs.microsoft.com/en-us/sysinternals/downloads/strings Working on NT and Win2K means that executables and object files will many times have embedded UNICODE strings that you cannot easily see with a standard ASCII strings or grep programs. So we decided to roll our own. Strings just scans the file you pass it for UNICODE (or ASCII) strings of a default length of 3 or more UNICOD..
o 소개 "ZoomIt is a screen zoom and annotation tool for technical presentations that include application demonstrations...." https://docs.microsoft.com/en-us/sysinternals/downloads/zoomit o 다운로드 : '2'의 경우 SysInternalsSuite내에 ZoomIt.exe 1.개별 : https://download.sysinternals.com/files/ZoomIt.zip 2 몽땅(SysinternalsSuite): .https://download.sysinternals.com/files/SysinternalsSuite.zip o ZoomIt.exe 실행 - ..
아주(!!) 초단간 코드로... 정보 선택 : 아래 그림의 '다음을 시작페이지로'를 가져와보자 (https://www.daum.net) 코드 작성 (예외처리 등은 고려하지 않음. 말그대로 예제...) #!/usr/bin/python # -*- coding: utf-8 -*- import requests from bs4 import BeautifulSoup def get(url): headers = {\ 'Host':'www.daum.net',\ 'Connection':'close',\ 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)',\ 'Accept':'*/*',\ 'Accept-E..
python 설치된 상태 (Windows10에서 Microsoft Store에서 제공하는 Python 3.7을 설치함. 명령프롬프트에서 python입력하니 그쪽으로 랜딩되길래... 그냥 해봄) VSCode - Python 플러그인 설치된 상태 아래 경로를 workspace로, D:\Workspace\VSCode\ 그 밑에 가상환경을 만들까 한다. ('가상 환경' 참고 : https://docs.python.org/ko/3/tutorial/venv.html) VSCode실행 터미널 실행 : View > Terminal or Ctrl+Shift+` Workspace로 이동 & 가상 환경 생성 PS C:\Users\..........> cd D:\Workspace\VSCode\ PS D:\Workspace\V..
DoH (DNS over Https) https://en.wikipedia.org/wiki/DNS_over_HTTPS DNS Queries over HTTPS (DoH) https://tools.ietf.org/html/rfc8484 DoT (DNS over TLS) https://en.wikipedia.org/wiki/DNS_over_TLS Specification for DNS over Transport Layer Security (TLS) https://tools.ietf.org/html/rfc7858 Usages Profiles for DNS over TLS and DNS over DTLS https://tools.ietf.org/html/rfc8310 QUIC는?으로 생각해고 찾아보니, 오.....
"javascript 헬로월드 예제 코드들에서 보이는 { foo: "bar" }와 같은 foobar가 도대체 뭘까요?" 예전 협력사 개발자가 이런 질문을 해왔는데, 문득 궁금해져 찾아본 내용을 끄적여 본다. Foobar https://en.wikipedia.org/wiki/Foobar 2차 세계대전, Smokey Stover라는 코믹스 등 기원설(?)이 있는데, MIT TMRC(클럽?동아리?)에서 프로그래밍 컨텍스트로 사용하다가 1960~1970초 DEC라는 회사 시스템 메뉴얼에서 용어로 사용하던 것이 포트란 변수명으로 사용되는 등 퍼진 모양이네. ... The word Foo means Good-Luck. ... http://www.smokey-stover.com/history.html 프로그래밍 언어..
bashrc inputrc 등등에서 rc의 의미는? rc파일이 뭔지 찾아보면 리소스 파일이다 뭐다 이런것만 나오는데 이거다 라고 할만한 내용을 안나온다. 이해할 때 까지 한번 찾아보자. What does "rc" mean in dot files? https://stackoverflow.com/questions/11030552/what-does-rc-mean-in-dot-files What domes "rc" in .bashrc stand for? https://unix.stackexchange.com/questions/3467/what-does-rc-in-bashrc-stand-for The Origin of the Shell : https://multicians.org/shell.html CTSS wa..
※ 2019/10/18 업데이트 https://woonizzooni.tistory.com/entry/tcpdump-SSLTLS-패킷-복호화 https://woonizzooni.tistory.com/entry/SSLTLS-패킷-복호화-관련-nss-libnss 일단, 모든 패킷 내용을 볼 수 있는 것은 아니고 (핫스팟 모드로 동작 중인 상태에서 흐르는 모든 패킷) 개인PC환경에서 Chrome/Firefox 등 SSLKEYLOGFILE환경 변수를 지원(?)할 수 있는 앱에서의 통신 패킷만 복호화 가능함. 즉, 개인 PC에서 크롬브라우저 패킷 복호화 정도라고 해두자. "SSLKEYLOGFILE" 환경변수 추가 Windows '제어판\시스템 및 보안\시스템 : 고급시스템설정 클릭' or 'Win+R > sysdm..