Sms

De Admin -- TALEVAS.
(Différences entre les versions)
 
 
(Une révision intermédiaire par un utilisateur est masquée)
Ligne 1 : Ligne 1 :
 
 
 
http://code.google.com/p/iphone-sms-archive/wiki/Instructions
 
http://code.google.com/p/iphone-sms-archive/wiki/Instructions
  
Ligne 24 : Ligne 22 :
 
  gcc main2.c
 
  gcc main2.c
 
  ./a.out out.txt out.html
 
  ./a.out out.txt out.html
 +
 +
 +
fichier main2.c téléchargé dans le rep images sur le serveur dans le homedir wiki

Version actuelle en date du 16 avril 2009 à 10:09

http://code.google.com/p/iphone-sms-archive/wiki/Instructions

Prerequisites

You must have an SFTP server installed and working.

These instructions are tailored for Mac OS X General Idea

We will SFTP into the phone, grab the sms.db file, use SQLITE3 to dump the contents of the database, and run a simple C program to convert the dump file to an HTML page. Instructions

sftp root@<iPhone IP address>
get /private/var/root/Library/SMS/sms.db sms.db
quit
sqlite3 sms.db
.output out.txt
SELECT * from message;
.quit
gcc main2.c
./a.out out.txt out.html


fichier main2.c téléchargé dans le rep images sur le serveur dans le homedir wiki