mercredi 18 décembre 2019

How to send a SMS with ADB SHELL

I have just read the following topic on Stackoverflow (click to view it) and I have made a test on my Samsung J6+ mobile phone and it works perfectly.

Here is the way to send a SMS through ADB SHELL (Android Debug Brigde) :
adb shell service call isms 7 i32 0 s16 "com.android.mms.service" s16 "+33122334455" s16 "null" s16 "Hey\ you\ !" s16 "null" s16 "null"
Wouldn't that be a good idea do have an PC application that uses this feature to send mass sms ?

vendredi 13 décembre 2019

How to set current date and time in a request in SoapUI ?

If you need to set the current date and time in a request while using SoapUI for testing a service (eg. a RESTful POST call), then you can click this link to get the basic info about how to do that very easily.

On the above link, the current date only is set, but here is the improvement needed to also have the current time in the request :

"${=def now = new Date();now.format("yyyy-MM-dd HH:mm:ss")}"

Here is a sample of a full resquest that includes the current date and time that is sent to the server in a RESTful POST request :

{
   "payments":[
   ],
   "date":"${=def now = new Date();now.format("yyyy-MM-dd HH:mm:ss")}",
   "depositPaymentMode":{
      "id":"2519386551735787230",
   },
   "bankAccountData":{
      "id":19,
   },
   "total":1954.08,
}



jeudi 12 décembre 2019

Règles de confidentialité PoneyVid Audio Recorder et Android Humoristes FR

PoneyVid Audio Recorder ne démarre l'enregistrement du microphone de l'Android uniquement sur la demande expresse de l'utilisateur.

Cette application permet d'enregistrer rapidement et discrètement une conversation.

L'enregistrement démarre quand l'utilisateur clique sur Start et s'arrête quand l'utilisateur clique sur Stop.

Après le démarrage d'un enregistrement, l'utilisateur peut sortir de l'application, et l'enregistrement continue de s'effectuer en tâche de fond même si le téléphone se vérouille.

dimanche 17 novembre 2019

Ubuntu / Kali : Installer le front-end web pour bettercap

Par défaut quand on installe bettercap sur Kali Linux, on peut démarrer l'interface web mais cette dernière ne s'affiche pas quand on essaie d'accéder à l'url 127.0.0.1 dans Firefox... A la place de la page de login on voit une belle erreur 404... Car en fait, par défaut, le serveur web de bettercap n'est pas installé et il est alors nécessaire de lancer la commande suivante "sudo apt-get install bettercap-ui" pour ensuite avoir la possibilité d'utiliser la fonction "sudo bettercap -caplet http-ui" !

Have fun !

vendredi 15 novembre 2019

Ubuntu / Kali : Rechercher et supprimer des fichiers

Afin de rechercher et supprimer des fichiers en ligne de commande sur un système d'exploitation Linux Ubuntu (comme par exemple Kali Linux), il suffit d'exécuter la commande suivante :

find / -name *.log -exec rm {} +

Dans l'exemple ci-dessus, on demande au système de rechercher tous les fichiers du système comportant une extention ".log" et de supprimer automatiquement le fichier.

Le premier paramètre "/" signifie qu'on lance la recherche à partir de la racine du disque en cours.

mardi 5 novembre 2019

How to exploit the BlueKeep vulnerability ?

Here is an interesting article for those who need to investigate and exploit the BlueKeep vulnerability that affects Windows server systems :

https://pentest-tools.com/blog/bluekeep-exploit-metasploit/

You will also find valuable information about this exploit at  the following URL :

https://github.com/rapid7/metasploit-framework/pull/12283


mardi 15 octobre 2019

How to get phone contact data in Kotlin (Android programming)

Here is the way to adopt to get data from phone contacts, in Kotlin programming for Android devices :

https://gist.github.com/reuniware/53cbee352341a098c3f875d60cd79c55#file-get_contact_web_url-kt

This can be improved but this will be a good starting point for you if you need to implement this functionality in your application development.


mardi 24 septembre 2019

Android FileSearch now allows to search files and folders :)

Android FileSearch now allows to instantly search for files and folders on Android.

It also allows you to browse the filesystem, rename and delete files and folders, view text files and force the view of files in text format. You can also view (by default) the first 1024 bytes of any files if it is not a text file.


You can download it from Google Play Store by clicking here.

Alternative link on Github by clicking here.

Direct download from Sourceforge by clicking here.


Here are some screenshots :