• chevron_right

      PhoneSploit Pro, l’outil de pentest tout-en-un pour Android

      news.movim.eu / Korben · Saturday, 9 September, 2023 - 07:00 · 2 minutes

    Si vous êtes expert en sécurité, PhoneSploit Pro est un outil tout-en-un écrit en Python qui va vous intéresser. Spécialement conçu pour exploiter à distance les appareils Android en utilisant ADB (Android Debug Bridge) et Metasploit-Framework, ce projet vise à faciliter la réalisation de tests de pénétration sur les appareils Android.

    Évidemment, PhoneSploit Pro peut également être utilisé comme une trousse à outils ADB pour effectuer diverses opérations sur les appareils Android que ce soit via le Wi-Fi ou un simple câble USB.

    Parmi les nombreuses fonctionnalités de PhoneSploit Pro, il y a la connexion à distance à l’appareil en utilisant ADB, l’accès au shell de l’appareil connecté, l’arrêt du serveur ADB, etc… L’outil permet également de faire des captures d’écran et de les récupérer automatiquement sur votre ordinateur, ou encore d’enregistrer ce qui se passe à l’écran pendant une certaine durée.

    Vous pourrez également télécharger et envoyer de fichiers, lancer une application et avoir accès aux moindres recoins du smartphone.

    Voici quelques-unes des fonctionnalités de PhoneSploit Pro :

    • Copier toutes les photos de la caméra sur l’ordinateur.
    • Envoyer des SMS via le périphérique cible.
    • Déverrouiller et verrouiller le périphérique avec une facilité déconcertante.
    • Extraire tous les SMS, contacts et journaux d’appels du périphérique vers l’ordinateur.
    • Obtenir des informations sur le périphérique et la batterie.
    • Et obtenir une image de tout ce qui se passe à l’écran ou contrôler le périphérique cible.

    Pour profiter de toutes ces fonctionnalités, il vous suffit de vous assurer que tous les logiciels requis sont installés, puis de suivre le tutoriel pour configurer votre téléphone Android. Une fois la configuration terminée, vous pourrez connecter votre téléphone Android à votre ordinateur via Wi-Fi en utilisant adb. Sur Linux ou macOS, ouvrez le terminal et collez les commandes suivantes pour installer PhoneSploit Pro :

    git clone https://github.com/AzeemIdrisi/PhoneSploit-Pro.git

    cd PhoneSploit-Pro/

    python3 phonesploitpro.py

    Sur Windows, les étapes sont légèrement différentes. Ouvrez le terminal, saisissez les commandes suivantes :

    git clone https://github.com/AzeemIdrisi/PhoneSploit-Pro.git

    cd PhoneSploit-Pro/

    Puis téléchargez la dernière version de platform-tools et copiez tous les fichiers extraits de platform-tools ou du répertoire adbdirectory dans le répertoire PhoneSploit-Pro, et enfin exécutez

    python phonesploitpro.py .

    PhoneSploit Pro est compatible avec plusieurs systèmes d’exploitation, mais je vous recommande d’utiliser Linux pour profiter pleinement de ses fonctionnalités.

    Évidemment, ce projet est uniquement destiné à des fins éducatives ou dans le cadre d’une mission de cybersécurité réalisée par un professionnel. L’utilisation de cet outil sur le téléphone de quelqu’un sans sa permission est totalement interdite et vous finirez en prison si vous ne respectez pas la loi ( sauf si à un moment vous avez eu une responsabilité politique importante. Dans ce cas, vous n’aurez qu’un bracelet électronique et vous pourrez continuer à mener une vie normale ).

    À découvrir ici

    • Fo chevron_right

      What Is ‘ADB’ On Android? What Can I Do Using ADB?

      pubsub.do.nohost.me / FossBytes · Wednesday, 24 March, 2021 - 11:13 · 2 minutes

    What is ADB in Android

    ADB or Android Debug Bridge is a term that you would have come across quite often. Every time you connect your device to your computer via cable or if you browse around the ‘Developer Options,’ you will come across the term Android Debug Bridge or ADB for short.

    But what does it mean? And what is its purpose? It is a versatile tool that helps your Android device function as it is, so let us tell you more about ADB.

    For starters, Google details the following explanation, telling what’s the importance of ADB in the simplest manner possible.

    “Android Debug Bridge (ADB) is a versatile tool lets you manage the state of an emulator instance or Android-powered device.”

    If you still didn’t get the gist of it, allow us to break it down even further. ABD is two different applications: one is running on your computer, which could be running Windows 10, Linux or even macOS, while the other application is running on your phone.

    When your phone connects to the machine that is running any desktop operating system, and if USB debugging is enabled, you can issue commands and communicate with the phone using the command line utility. Google has made it part of its Android software development kit for Windows, Mac, and Linux, so incompatibility is going to be the least of your problems.

    The Android OS itself is based on Linux and therefore, it uses the Linux kernel and tools as a base. What this means is that there are quite a few Linux commands that can be sent through the ADB server (this server is the application that is running on your computer) to the ADB client (this is the one that is running on your phone).

    Using the server-client relationship, this tag team can become a beneficial tool as you will be able to debug things when nothing or very little is going right for you. Also, you can execute unexplored commands when you’re on your hacking spree, so as far as exploration goes, there are several options present at your fingertips.

    The majority of the time, you will require the ADB feature when you’re attempting to debug something actively or if you are tenaciously trying to hack your smartphone. Regardless, if you do get a chance, try to use the ADB feature as much as possible and have fun with your device. You never know what you’re missing out on.

    Also Read: Best WiFi Hacking Apps For Android Smartphones

    I hope you have found this article on Android Debug Bridge or ADB helpful. In case we’ve missed anything or you wish to share some inputs, let us know in comments below.

    Android ADB FAQs

    How to check if ADB is working?

    To test if ADB is working for your device, open terminal after connecting your computer to an Android device using a suitable cable. After it run adb devices command and you should get an output of list of connected devices. This result with your device’s serial number confirms ADB working on your device.

    Is ADB safe?

    While as a tool ADB is very safe, it all comes down to how you use it. So don’t use ADB to make changes that you aren’t sure of.

    What can I do using ADB?

    Using ADB, you can perform functions like mirroring your screen, transferring files, remotely controlling your device, changing file permissions, etc.

    The post What Is ‘ADB’ On Android? What Can I Do Using ADB? appeared first on Fossbytes .