일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 는 하지마...
- 윈도우 프로세스
- 24시간의 전사
- 실기
- 생활코딩
- disk
- Multimeida
- pythonchallenge
- ZIP 파일구조
- 네트워크관리사2급
- slack space
- 정보처리기사 필기 합격
- html
- 포렌식
- 2022시작
- 디지털포렌식
- network
- N0Named
- 디지털포렌식 with CTF
- ftz
- vinetto
- Multimedia
- 생활코딩 html
- 네트워크 보안
- 윈도우 프로세스 종류
- 슬퍼유
- memory
- CTF-D
- Window process
- blkls
- Today
- Total
목록분류 전체보기 (253)
ssoL2 TISTORY
python -m pip install whl파일명 whl 파일 => https://www.lfd.uci.edu/~gohlke/pythonlibs/ 위 사이트에서 Ctrl+F로 bsddb3 치면 나옴. python version에 맞게 다운로드. (cp39일 경우, python 3.9)
안녕하십니까... (^人^) 2022년 정기 기사 1회 정보처리기사를 "단 하루 만"에 공부하고, 당당히.. (😅??) 필기 합격하고 돌아온 블로그 주인 ssoL2 입니다 ~ 아래는 증거 사진을 첨부합니다~! 저의 필기 시험 날짜는 3/5일 토요일이었는데요, ㅎㅎㅎ 저의 필기합격을 위한 계획 메모장을 보시면 아시겠지만, 3/4일 금요일부터 시작한 것을 확인하실 수 있습니다 ...^^; 내용을 한 번 보면... 금요일 새벽에 시작해서 35시간 남았다고 나름대로 계획을 짜보았네요. ㅎㅎ (사실상, 24시간 입니다... 계획과 달리,, 많이,, 자버렸거든요..^^ㅋ) 이때 새벽 6시는 물론 토요일 새벽 6시 입니다 ^^ (잠을 안자겠다는 마인드 🙄) 자세한 시간 계획은 아래와 같습니다.^^ 그러나 결국은 ..
보호되어 있는 글입니다.
예정. 매우. 자세히. 진짜. 죽여버릴ㄹ꺼야.......... 후.................................... 낱낱이 분석해서 찢어버릴거임 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1 으ㅑ갸갸갸ㅑ갸ㅑㅑㅑㅑㅑ갸ㅑㅑㅑㅑㅑㅑ
보호되어 있는 글입니다.
보호되어 있는 글입니다.
Daddy told me I should study arm. But I prefer to study my leg! Download : http://pwnable.kr/bin/leg.c Download : http://pwnable.kr/bin/leg.asm ssh leg@pwnable.kr -p2222 (pw:guest) #include #include int key1(){ asm("mov r3, pc\n"); } int key2(){ asm( "push{r6}\n" "addr6, pc, $1\n" "bxr6\n" ".code 16\n" "movr3, pc\n" "addr3, $0x4\n" "push{r3}\n" "pop{pc}\n" ".code32\n" "pop{r6}\n" ); } int key3()..
Mom? how can I pass my input to a computer program? ssh input2@pwnable.kr -p2222 (pw:guest) #include #include #include #include #include int main(int argc, char* argv[], char* envp[]){ printf("Welcome to pwnable.kr\n"); printf("Let's see if you know how to give input to program\n"); printf("Just give me correct inputs then you will get the flag :)\n"); // argv if(argc != 100) return 0; if(strcmp..
Daddy, teach me how to use random value in programming! ssh random@pwnable.kr -p2222 (pw:guest) #include int main(){ unsigned int random; random = rand(); // random value! unsigned int key=0; scanf("%d", &key); if( (key ^ random) == 0xdeadbeef ){ printf("Good!\n"); system("/bin/cat flag"); return 0; } printf("Wrong, maybe you should try 2^32 cases.\n"); return 0; } 1. rand() 함수는 seed가 일정해서 계속 동일..
Mommy told me to make a passcode based login system. My initial C code was compiled without any error! Well, there was some compiler warning, but who cares about that? #include #include void login(){ int passcode1; int passcode2; printf("enter passcode1 : "); scanf("%d", passcode1); fflush(stdin); // ha! mommy told me that 32bit is vulnerable to bruteforcing :) printf("enter passcode2 : "); scan..