본문 바로가기

전체 글202

[모바일 포렌식] 안드로이드 폰 이미지 획득하기 https://androidapksfree.com/busybox/busybox-latest-version-apk-download/ BusyBox 설치 - netcat 기능 제공 BusyBox 64 APK for Android - Download Home » Apps » Tools » BusyBox BusyBox by Stephen (Stericson) (no ratings) More about BusyBox Download BusyBox APK v64. BusyBox belongs to the Tools category and the developer of this app is Stephen (Stericson). The average rating is 0.0 out of 5 stars o android.. 2021. 10. 28.
[BAEKJOON] 2178번: 미로탐색 2178번 문제이다. 사진을 누르면 문제로 이동한다. 문제는 Python언어로 구현하였다. from collections import deque N, M = map(int, input().split()) graph = [] for _ in range(N): graph.append(list(map(int, input()))) def bfs(x, y): dx = [-1, 1, 0, 0] dy = [0, 0, -1, 1] # deque 생성 queue = deque() queue.append((x, y)) while queue: x, y = queue.popleft() for i in range(4): nx = x + dx[i] ny = y + dy[i] if nx = N or ny < 0.. 2021. 10. 26.
[BAEKJOON] 1260번: DFS와 BFS 1260번 문제이다. 사진을 누르면 문제로 이동한다. 문제는 Python언어로 구현하였다. from sys import stdin n, m, v = map(int, stdin.readline().split()) matrix = [[0] * (n + 1) for _ in range(n + 1)] for _ in range(m): line = list(map(int, stdin.readline().split())) matrix[line[0]][line[1]] = 1 matrix[line[1]][line[0]] = 1 def bfs(start): visited = [start] queue = [start] while queue: n = queue.pop(0) for c in range(len(matrix[st.. 2021. 10. 26.
[BAEKJOON] 10828번: 스택 10828번 문제이다. 사진을 누르면 문제로 이동한다. 문제는 C++언어로 구현하였다. import sys input=sys.stdin.readline n = int(input()) #명령의 수 stack=[] def push(x): #리스트의 마지막에 추가 stack.append(x) #딱히 int(x)할 필요는 없을 듯 def pop(): if(len(stack)==0): print(-1) else: print(stack.pop()) def size(): print(len(stack)) def empty(): if(len(stack)==0): #비면 print(1) else: #안 비면 print(0) def top(): if(len(stack)==0): print(-1) else: print(sta.. 2021. 9. 30.
[BAEKJOON] 1874번: 스택 수열 1874번 문제이다. 사진을 누르면 문제로 이동한다. 문제는 Python언어로 구현하였다. import sys input = sys.stdin.readline #입력값 N N = int(input()) #스택 stack = [] #스택에 넣는 값 count = 1 #결과를 모으는 리스트 result = [] for i in range(N): #값 입력 num = int(input()) #num값까지 스택에 push while count 2021. 9. 30.
[Webhaking.kr] old 20번 20번 문제이다. 문제만 보았을 때 nickname, comment, captcha를 입력하고 submit을 눌러야 하는 것 같다. 위와 같이 입력하였더니 too slow라는 글자가 나오고 사라진다. script문을 확인하였다. 뒤에 ck 함수가 있는 것을 보니 ck 함수를 호출하는 것 같다. hack 값과 attackme랑 같아야 한다. 값이 adgUZr5AAZ인 것을 발견하였다. 한 번 대입해보자. 틀렸다는 문구가 나왔다. 콘솔을 이용해보자 lv5frm.id.value=1; lv5frm.cmt.value=1; lv5frm.captcha.value=lv5frm.captcha_.value; lv5frm.submit(); 위와 같은 값을 콘솔에 입력해보자. 개발자도구의 콘솔에 위와 같은 입력 후 ENTER.. 2021. 9. 30.