목록전체보기 (373)
EASY7
Notepad++을 이용해서 엔터 없애기 1. Notepad++ 을 설치합니다. 2. ctrl + h 를 누릅니다. 3. 찾을 내용에 \r\n을 입력합니다. 4. 정규 표현식을 클릭합니다. 5. 모두 바꾸기를 클릭합니다.
개요 리눅스의 패스워드를 암호화하는 해시 알고리즘은 리눅스 버전마다 다르다. /etc/passwd 또는 /etc/shadow에서 해시 알고리즘을 확인할 수 있다. 사용되는것은 $1, $5, $6 이다. 해시 알고리즘 Identifier Scheme Hash function Salt length (in # of characters) Salt length (in bits) 1 MD5-crypt MD5 8 64 2a B-crypt Blowfish 8 64 md5 Sun MD5 MD5 8 64 5 SHA-crypt SHA-256 16 128 6 SHA-crypt SHA-512 16 128 해시 알고리즘 확인 및 변경 운영체제별 알고리즘 CentOS 5 : MD5 CentOS 6 : SHA512 CentOS 7 ..
Internet Explorer는 보내주도록 해요 MS사가 2020년 8월 17일에 IE11에 대한 서비스를 종료를 한다고 밝혔다. 진작 보내주었어야했는데.. 이제 안녕.. techcommunity.microsoft.com/t5/microsoft-365-blog/microsoft-365-apps-say-farewell-to-internet-explorer-11-and/ba-p/1591666 Microsoft 365 apps say farewell to Internet Explorer 11 and Windows 10 sunsets Microsoft Edge Legacy Today, we’re announcing that Microsoft 365 apps and services will no longer s..
Panel의 Events(번개) 클릭 Drag Drop의 Dragdrop, DragEnter에 두번씩 클릭 private void splitContainer1_Panel2_DragEnter(object sender, DragEventArgs e) { e.Effect = DragDropEffects.All; } private void splitContainer1_Panel2_DragDrop(object sender, DragEventArgs e) { string[] file = (string[])e.Data.GetData(DataFormats.FileDrop); MessageBox.Show(file[0]); } Panel의 Properties(장비) 클릭 Behaivor의 ALlowDrop 을 true로 변경
print('str') str문자 출력 var = input('문자를 입력하세요.') 문자를 입력하면 변수 var에 문자열로 삽입 a, b=var.split() 기본 공백으로 나누어 변수 a, b에 삽입 a, b = var.split(',') 콤마로 나누어 변수 a, b에 삽입 print(값1, 값2, sep='문자') 값1, 값2 사이에 문자 삽입하여 출력 map(int, a, b) a와 b를 int형으로 변경
utmp : 현재 로그인한 사용자의 상태정보를 담고 있는 로그 파일, binary 파일로 되어있으며 확인하기 위해서 "w", "who", "finger" 등을 이용 리눅스 /var/run/utmp | 유닉스 /var/adm/upmpx wtmp : 사용자의 성공한 로그인/로그아웃 정보, 시스템의 Boot/Shutdoun 정보에 대한 히스토리, binary 로 "last" 명령 사용 리눅스 /var/log/wtmp | 유닉스 /var/adm/wtmpx lastlog : 가장 최근에 성공한 로그인 파일을 담고 있는 로그파일, binary 파일로 되어있으며 "lastlog", "finger" 명령 사용 리눅스 /var/log/lastlog | 유닉스 /var/adm/lastlog last -u 유저명, last..
http://ctf-d.com/