Skip to main content

PROJECT GREPINFO


INTRODUCTION

  • Project Name: GrepInfo
  • Purpose:  An automated framework for retrieving device specifications.
  • Developed In Purpose: Python
  • Specification to be Collected:
    1. Hardware Specifications
    2. Software Specifications
    3. CPU Specifications
    4. Memory Specifications
    5. Display Specifications

 

ROOTED VS NON- ROOTED DEVICES

Rooted Devices:

  • Rooted devices are like super-powered phones that let you change almost anything you want.
  • You can customize your phone to do things it couldn't do before, like making it faster or removing apps you don't need.

Non-Rooted Devices:

  • Non-rooted devices are like regular phones that stick to the rules set by the phone's maker.
  • They're safer and more stable, but you can't tweak them as much as rooted phones.

 

TYPES OF DEVICES FOR RETRIEVING SPECS

1. Commercial Devices (Non-Rooted Devices):

  • Description: Standard smartphones or tablets bought from stores, operating without modifications.
  • Access: Limited info via basic commands like adb shell, getprop, and apps

2. Lab Devices (Rooted Devices):

  • Description:  Android devices in research labs or development centers, with root access.
  • Access: Root privileges for extensive exploration and data extraction.

 AUTOMATION FRAMEWORK DIRECTORY STRUCTURE


 

GREPINFO CLASS DIAGRAM


 

  GREPINFO SEQUENCE DIAGRAM


CONCLUSION

The grepinfo project shows how Python and regular expressions can be used to quickly and accurately extract mobile phone specifications . By automating this process, we save time and reduce mistakes compared to doing it manually.

Comments

Popular posts from this blog

Understanding AOSP Architecture: A Comprehensive Guide

AOSP Basics What is AOSP? AOSP stands for Android Open Source Project. It’s a project led by Google to develop the Android platform, and it includes everything you need to build an Android OS from scratch. The code is freely available, allowing manufacturers, developers, and hobbyists to create their own versions of Android. History and Evolution of AOSP AOSP started with the release of Android in 2008. Over the years, it has evolved significantly, incorporating numerous features, enhancements, and security improvements. Each new version of Android brings updates to AOSP, reflecting the latest innovations in mobile technology. Differences between AOSP and  Android While AOSP provides the core of Android, Android includes additional proprietary features and services like Google Play Store, Google Maps, and other Google apps. Manufacturers often use AOSP as the base and then add their own customizations and Google’s services to create the Android experience on their devices.  A...

Comprehensive Guide to Linux IOE Redirection Commands

  Introduction Linux is a powerful and versatile operating system widely used for its robustness and flexibility. One of the key features that make Linux so powerful is its ability to manage input and output efficiently through redirection commands.  1. Understanding Standard Streams In Linux, there are three standard streams: Standard Input (stdin): It is represented by file descriptor 0. Standard Output (stdout): It is represented by file descriptor 1. Standard Error (stderr): It is represented by file descriptor 2. 2. Meta Characters in Redirection Common meta characters used in redirection include: >: Redirects standard output to a file. >>: Appends standard output to a file. <: Redirects standard input from a file. 2>: Redirects standard error to a file. |: Pipes the output of one command as input to another. 3. Output Redirection Redirecting to a File (>) To redirect the output of a command to a file, us...