일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- K-shield Jr 10기
- 모바일프로그래밍
- upx
- 써니나타스
- 침해사고대응
- Frida
- 포렌식
- Autoware
- CodeEngn
- SW에듀서포터즈
- 파일해시생성
- 안티디버깅
- ZIP
- tar
- Multimedia
- crack
- ctf-d
- Interceptor
- K-sheild Jr
- 디스크
- 케쉴주
- Reversing
- disk
- 리버싱핵심원리
- Android
- Mobile
- swing
- John the ripper
- shadow
- Today
- Total
목록분류 전체보기 (275)
물먹는산세베리아
문제 Do you have a password? Does it have a real password? I am afraid that this challenge is very esay. (...easy 힌트인가..?) You need not do brute-force 풀이 문제에서 준 So_Simple.zip의 모든 파일들은 비밀번호가 걸려있다. 저기서 바로 할 수 있는게 없기 때문에 냅다 HxD로 열었다. Am_I_key.zip Am_I_key2.txt Am_I_key3.txt 의 Central Directory에 대한 부분인데 파일 모두 암호가 걸려 있기 때문에 각 파일에서 암호를 설정하는 부분만 수정해주면 될 것 같다. [ Zip Central Directory 구조 ] ZIP File Format ..
보호되어 있는 글입니다.
1. 파일 해시값 생성 리눅스 sha256sum 파일경로 mychecksum.txt MacOS, BSD기반 sha256 파일경로 mychecksum.txt Win10 CertUtil 유틸리티 사용, 출력 값 중 해시(16진수)만 복사해서 사용 certutil -hashfile 파일경로 SHA256 2. 파일 해시값 비교 리눅스 파일 내용 비교 명령어 diff 사용 diff mychecksum.txt 웹사이트제공해시파일.txt 아무것도 출력되지 않으면 해시값이 동일한 것이다.
https://hacker.house/free-trial/ Try Hacker House Hacker House are absolutely amazing, I completed the Hands-on-Hacking course run by Matthew and it was absolutely fantastic! Matthew was such an amazing, patient instructor and I learnt absolutely tonnes from it... SOPHIA MCALL 2017 Alumni, New York City hacker.house 평가판(e-mail attack) 누가 550달러 줬으면 좋겠다
관련 플랫폼 www.bugcrowd.com www.hackerone.com HackerOne | Hacker-Powered Security, Bug Bounties, and Pentests Get the latest news and insights beamed directly to you. www.hackerone.com hacker101 - CTF - web security 학습 가능 hacktivity(https://hackerone.com/hacktivity)
Information Systems Security Assessment Framework, ISSAF Penetration Testing Execution Standard, PTES (http://www.pentest-standard.org/index.php/Main_Page) Penetration Testing Guidance; Payment Card Industry Data Security Standard 일부 Open Source Security Testing Methodology Manual, OSSTMM (https://www.isecom.org/research.html#content5-9d) OWASP - testing framewark MITRE ATT&CK
ViewController.swift // // ViewController.swift // BMICalc // // Created by swuad_26 on 2022/01/03. // import UIKit class ViewController: UIViewController { @IBOutlet weak var label1: UITextField! @IBOutlet weak var label2: UITextField! @IBOutlet weak var label3: UITextField! let numberFormatter:NumberFormatter = { let nf = NumberFormatter() nf.numberStyle = .decimal nf.minimumFractionDigits = 0..
문제 Do you know password of suninatas? evidence.tar 풀이 tar파일은 tape archive의 약자로 여러 개의 파일을 하나로 합치는 역할을 한다. (!=압축) 주어진 파일을 열어보면 파일 풀기 tar -xvf 파일명.tar 파일 내용 보기 tar -tvf 파일명.tar passwd 파일과, shadow 파일이 들어있다. 각 파일에서 suninatas 계정 정보를 확인할 수 있었는데 참고로 passwd 파일은 사용자의 로그인 계정, 암호화된 비밀번호, UID, 기본 GID, 이름, 홈디렉토리, 로그인 쉘이 저장되어 있는 파일이고 shadow 파일은 사용자 계정에 대한 암호화된 패스워드와 패스워드 설정 기간, 유효성 정보가 들어있는 파일이다. 유닉스 기반의 리눅스 시..
Homebrew를 통해 cocoapod설치 할 때 생긴 문제이다. /usr/local/bin/pod: /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby: bad interpreter: No such file or directory 해결책 sudo gem install cocoapods https://stackoverflow.com/questions/31442214/running-pod-setup-gives-me-bad-interpreter-no-such-file-or-directory-error Running pod setup gives me "bad interpreter: No such file or directory" error ..
보호되어 있는 글입니다.