Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해킹
- webhackingkr
- SQL Injection
- lordofsqlinjection
- XSS
- 알고리즘
- 운영체제
- webhacking.kr
- CCE
- hacking
- MySQL
- Los
- crosssitescripting
- Python
- Writeup
- 상호배제
- web
- rubiya
- 웹해킹
- 시스템
- Linux
- SQL
- sqli
- 시스템프로그래밍
- ubuntu
- ctf
- SQLInjection
- CODEGATE
- 프로세스
- WebHacking
Archives
- Today
- Total
One_Blog
Bcrypt _ 맞추기 본문
728x90
import bcrypt
def compare_password(input_password, hashed_password):
return bcrypt.checkpw(input_password.encode('utf-8'), hashed_password)
hashed_password = b'$2a$10$HOOZa0SLnGgHgH4dmCxAceYWrv8BE8E5VUeG70c26LWNGRSRWQgUa'
# User input
while(1):
user_input = input("Enter the password: ")
if compare_password(user_input, hashed_password):
print("O")
else:
print("X")
hashed_password에 탈취한 패스워드 넣고
Enter the password: 에 예상되는 패스워드 때려서 맞으면 O, 틀리면 X 출력하는 간단한 파이썬 코드였습니다~
대신에 귀여운 고양이를 드리겠습니다.
'웹해킹' 카테고리의 다른 글
EJS Server Side Template Injection 취약점 [CVE-2022-29078] (6) | 2023.10.07 |
---|---|
CodeGate 2023 Web myboard WriteUp (0) | 2023.06.23 |
WebHacking Intro - 내가 생각하는 웹해킹의 공부 방향 (7) | 2023.03.11 |
los - succubus 풀이 (0) | 2023.02.27 |
Lord of SQL Injection - giant 풀이 (0) | 2023.02.23 |