Everything about TLS
Everything About TLS (Transport Layer Security) SSL or TLS? Secure Socket Layer (SSL) was developed by Netscape in the early 1990s to secure web communications. It was later standardized by t...
Everything About TLS (Transport Layer Security) SSL or TLS? Secure Socket Layer (SSL) was developed by Netscape in the early 1990s to secure web communications. It was later standardized by t...
privileged program: 접근 권한이 적용되어 있는 프로그램 이런 프로그램에 접근하기 위해서는 2가지 방법이 필요하다. Set-UID program. 사용자가 필요에 따라 privilege변환이 필요할때 이용하는 프로그램이다. Daemons(Services...
Hash and encryption 해시 알고리즘을 거쳐 생성된 결과물을 digest라고 부른다. Hash는 단방향이고 encryption은 양방향이다. Hash의 종류에는 MD5, SHA-1, SHA-256, SHA-512, WHIRLPOOL등이 있으나 PBKDF2(Password-Based Key Derivation Function),...
Introduction hping is a powerful command-line tool for network testing and packet crafting. While Nmap is widely known for network discovery and security scanning, hping complements it by providin...
Base64 and Hex encoding & decoding 주로 url과 관련된 문제, 즉 웹과 관련해서 많이 나오는 것 같다. 문자가 a-zA-Z0-9,space,/ 구성된 긴 string이면 base64를 의심하면 좋다. Base 64란 binary data를 text로 바꾸는 인코딩이다. Binary data를 6bit씩 ...
NetCat TCP나 UDP프로토콜을 사용하는 네트워크 연결에서 데이터를 읽고 쓰는 간단한 유틸 프로그램. 간단한 연결 방법으로는 nc 192.168.10.200 22
Brup Suite 웹 애플리케이션 테스트에 주로 사용되는 툴이다. 패킷을 분석하고 조작하여 내보기 쉽게 만들어진 툴이다. MITM
Nmap (Network Mapper) is the industry standard for network discovery and security auditing. Understanding its various scanning techniques is crucial for effective network security assessment. Basi...
시작 OpenVPN을 설치합니다. 링크 로그인 후 오른쪽 CONNECT TO HTB를 클릭합니다. 그리고 그 아래 Starting Point 혹은자신이 실행시킬 머신을 클릭합니다. 새로 뜨는 창에 보이는 OpenVPN을 눌러줍니다. .ovpn 파일을 다운 받습니다. 다운 받은 ovpn파일을 OpenVPN을 열어 파일 섹션에 드...
All, Any 파라미터로 iterable를 받아서 각 item들이 모두가 참일때 true를 반환하는 것이 all, 하나라도 참일때 true를 반환하는 것이 any이다. return all(r ==0 or c == 0 or matrix[r-1][c-1] == val for r, row in enumerate(matrix...