본문 바로가기

분류 전체보기202

[BAEKJOON] 10798번: 세로읽기 import java.io.*; public class algo_10798 { public static void main(String[] args) throws IOException { char[][] ch = new char[5][15]; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); for(int i=0; i < ch.length; i++) { String str = br.readLine(); for(int j=0; j < str.length(); j++) { ch[j][i] = str.charAt(j); } } for(int i=0; i < 15; i++) { for(int j=0; j < 5; j++) { if(.. 2022. 8. 1.
[모바일 포렌식] 밴드 (Band) DB 분석 환경: Android G Pro 분석 툴: DB Brower 93077060로 생성되는 데이터베이스 파일에는 8개의 테이블에 의미 있는 데이터가 존재한다. 데이터베이스에 저장되는 데이터는 표와 같다. [ 데이터베이스 내 전체 테이블 정보 ] Table Name Content android_metadata Country used category_info Chat information (last chat invitation created at, new message count, chat invitation count, last option chat create at) channel_user Information about channel users chat_channel Participated channel .. 2022. 5. 14.
[모바일 포렌식] Line Lite(라인 라이트) DB 분석 환경: Android G Pro 분석 툴: DB Brower 라인 라이트 데이터베이스에서는 총 6개의 의미 있는 테이블이 존재한다. 데이터베이스에 저장되는 데이터는 표와 같다. [ 데이터베이스 내 전체 테이블 정보 ] Table Name Content android_metadata Country used chat Contain clien ID, last message, last read etc. chat_history information related to chat content chat read mark Save the chat information you read at the end sqlite_sequence amount of data stored in each table ○ ‘chat’ 테이블 .. 2022. 5. 14.
[모바일 포렌식] Instagram(인스타그램) DB 분석 환경: Android G Pro 분석 툴: DB Brower 인스타그램 데이터베이스에서는 총 6개의 의미 있는 테이블이 존재한다. 데이터베이스에 저장되는 데이터는 표와 같다. [데이터베이스 내 전체 테이블 정보] Table Name Content android_metadata Country used messages Sever item id, client item id, timestamp, message type, text etc mutations Contain user id, mutation type session session type sqlite_sequence amount of data stored in each table threads Contain Last activity time, user i.. 2022. 5. 14.
[모바일 포렌식] snapchat(스냅챗) DB 분석 환경: Android G Pro 분석 툴: DB Brower 스냅챗에서는 다른 어플리케이션들과는 달리 다양한 데이터베이스를 가지고 있다. 그 중 사용자의 회원가입 정보를 확인할 수 있는 테이블인 core 데이터베이스에는 10개의 테이블에 의미 있는 데이터가 존재한다. 데이터베이스에 저장되는 데이터는 표와 같다. [ Core 데이터베이스 내 전체 테이블 정보 ] Table Name Content ConfigEtag Contain the ID and eTag ConfigRule information required to load an application DataConsumption store information about networks, content, timestamps, etc DeltaForceS.. 2022. 5. 14.
[모바일 포렌식] Telegram(텔레그램) 아티팩트 분석 -2 환경: Android G Pro 분석 툴: DB Brower Telegram 버전: 8.2.7 메시지를 삭제한 후의 분석 내용이다. Cache4 데이터베이스를 발견했던 폴더에서 해당 데이터베이스가 사라진 모습을 볼 수 있었다. 해당 cache4 데이터베이스가 날아가면 해당 메시지를 남기지 않고 안드로이드 텔레그램 디렉토리에서 삭제하였다. 2022. 5. 14.