Git Product home page Git Product logo

phoneextractor's Introduction

PhoneExtractor

Windows Application for extracting data from phone, .NET Framework + WPF

Overview

1. 主要功能

  • 手机提取
    • 安卓提取
      自动连接、手动连接、密码破解
    • 苹果提取
      同步获取、密码文件绕过
  • 案件管理
    案件列表、案件导入、案件创建、删除 ...
  • 物证管理
    物证列表
  • 工具管理
    系统工具、安卓工具、苹果相关、附件工具
  • 设置
    系统设置、环境检测、在线更新、用户反馈 ...

2. 技术内容

整体开发模式为MVVM, WPF框架

2.1 UI Implementation

  • 使用MergedDictionaries分开颜色、大小等常用值
<ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="/Resources\Values.xaml" />
    <ResourceDictionary Source="/Resources\Colors.xaml" />
</ResourceDictionary.MergedDictionaries>
  • Window style
    • 窗口边缘拖拽调整大小
<WindowChrome x:Key="SubWindowChromeKey" CaptionHeight="0">
    <WindowChrome.ResizeBorderThickness>
        <Thickness>5</Thickness>
    </WindowChrome.ResizeBorderThickness>
</WindowChrome>
  • 多语言处理
    • String.zh-CN.xaml
    • String.en-US.xaml
      代码设置语言
//
// 加载语言
//
ResourceDictionary langRd = null;
try
{
    langRd = Application.LoadComponent(
            new Uri(@"Resources/Strings/String." + User.LoginUser.USER_LANGUAGE + ".xaml", 
            UriKind.Relative)
        ) as ResourceDictionary;
}
catch
{
}

if (langRd != null)
{
    // 删除已设置的语言
    if (Application.Current.Resources.MergedDictionaries.Count() > 2)
    {
        Application.Current.Resources.MergedDictionaries.RemoveAt(2);
    }

    // 添加新的语言
    Application.Current.Resources.MergedDictionaries.Add(langRd);
}

2.2 Function Implementation

  • iOS提取
  • 安卓提取: 使用第三方库
    • Adb连接
    • busyBox, service.apk, mydos2unix, AdbWinUsbApi.dll, libintl3.dll, libiconv2.dll, sms.tp, contact.tp, Devinfo.tp, appInfo.tp, calllog.tp, Data.mdb, Rar.exe

2.3 Code tricks

2.4 Third-Party Libraries

Need to Improve

  • 优化界面 & 完善功能

phoneextractor's People

Contributors

highjump0615 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.