GSM Shop GSM Shop
GSM-Forum  

Welcome to the GSM-Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features.
Only registered members may post questions, contact other members or search our database of over 8 million posts.

Registration is fast, simple and absolutely free so please - Click to REGISTER!

If you have any problems with the registration process or your account login, please contact contact us .

Go Back   GSM-Forum > Other Gsm/Mobile Related Forums > GSM Programming & Reverse Engineering

GSM Programming & Reverse Engineering Here you can post all Kind of GSM Programming and Reverse Engineering tools and Secrets.

Reply
 
LinkBack Thread Tools Display Modes
Old 05-23-2011, 15:39   #1 (permalink)
No Life Poster
 
bilalzaink's Avatar
 
Join Date: May 2008
Location: G S M
Age: 36
Posts: 554
Member: 774744
Status: Offline
Thanks Meter: 774
what is iphuc??? discusss here


what is iphuc???
An OpenSource command line interface to the iPhone.....
iPHoneUtilityClient (iPHUC) is the second generation of iPhoneInterface which allows convenient command line access to the iphone from a desktop computer.
Now with a maintainable source!
using this commands rename and delete .plist files.......make and remove Directies..and cydia,s .deb file installing in yor iphone...
i m not a programer ...i just post this thread for that purpose to a help community about iphuc.
Example

..."mkdir" using like this..
if your iphuc in C:\ drive ..then

Full command..
cd c:\
c:\cd c:\iphuc -a com.apple.afc2 -s mkdir /var/root/Media/Cydia/
For this the dir creat in /var/root/Media...."cydia"

other one...

"rmdir"
cd c:\
c:\cd c:\iphuc -a com.apple.afc2 -s mkdir /var/root/Media/Cydia
For this Remove dir Cydia....
using this commands ..delet .plist file also..

"putfile"
cd c:\
c:\cd c:\iphuc -a com.apple.afc2 -s putfile ultrasn0w.deb /var/root/Media/Cydia/AutoInstall/ultrasn0w.deb
your .deb present in your exit drive or other folder....then put your iphone.....
@
@
Here is some sourc code.....
@
COMMAND normal_shell[] = Normal mode.........
{
{ "help", sh_help, ">> help <command> - Display help information on <command>. No args lists commands." },
{ "cd", n_cd, ">> cd <path> - Change directory to <path>" },
{ "lcd", n_lcd, ">> lcd <path> - Change local directory to <path>" },
{ "ls", n_ls, ">> ls [path] - List directory at current working path or [path]" },
{ "mkdir", n_mkdir, ">> mkdir <path> - Create directory at <path>" },
{ "rmdir", n_rmdir, ">> rmdir <path> - Remove directory at <path>" },
{ "rename", n_rename, ">> rename <oldpath> <newpath> - Rename a file/directory" },
{ "activate", n_activate, ">> activate <path> - Activate iPhone with .plist file at <path>" },
{ "deactivate", n_deactivate, ">> deactivate - Deactivate iPhone" },
{ "readvalue", n_readvalue, ">> readvalue <value> - Read <value>. No args lists knownn values." },
{ "enterrecovery", n_enterrecovery, ">> enterrecovery - Enter recovery mode. **WARNING: You'll need to restore the iPhone." },
{ "reconnect", n_reconnect, ">> reconnect - Exit current shell and reconnect to device." },
{ "startservice", n_startservice, ">> startservice <service> - Starts service <service> on the iPhone. No args lists services." },
{ "deviceinfo", n_deviceinfo, ">> deviceinfo - Display device info." },
{ "getfilesize", n_getfilesize, ">> getfilesize <path> - Display size of file at <path>" },
{ "getfile", n_getfile, ">> getfile <path> [localpath] - Get file on iPhone at <path> and write it to [localpath]" },
{ "putfile", n_putfile, ">> putfile <localpath> [path] - Put file at <localpath> on iPhone at [path]" },
{ "fileinfo", n_fileinfo, ">> fileinfo <path> - Display info for file at <path>" },
{ "exit", n_exit, ">> exit - Escape to shell. The other shell, the one whos child i am." },
{ "lpwd", n_lpwd, ">> lpwd - Display the current local working directory." },
{ "pwd", n_pwd, ">> pwd - Display the current remote working directory." },
{ "setafc", n_setafc, ">> setafc <name string> - Set the name of the afc service to use."},
{ "run", sh_run, ">> run <path> - runs a script at <path>."},
{ (char *)NULL, (shell_funct *)NULL, (char *)NULL }
};
COMMAND restore_shell[] =
{
{ "mount", restore_mount, ">> mount <device> <path> - Mount device at path."},
{ "partition", restore_partition, ">> partition <device> - Partition device."},
{ "erase", restore_erase, ">> erase <device> - Erase device."},
{ "ditto", restore_ditto, ">> ditto <path1> <path2> - Copy file at path1 to path2."},
{ "umount", restore_umount, ">> umount <path> - Unmount device from path."},
{ "FileSystemCheck", restore_filesystemcheck,">> filesystemcheck <device> - Check filesytem on device" },
{ "mkdir", restore_mkdir, ">> mkdir <path> - Make directory 'path'."},
{ "force", restore_force, ">> force <command> - send cmd to phone."},
{ "help", sh_help, ">> help <command> - Display help information on <command>. No args lists commands." },
{ "exit", restore_exit, ">> exit - Disconnect and wait for device normal reconnect." },
{ "run", sh_run, ">> run <path> - runs a script at <path>."},
{ (char *)NULL, (shell_funct *)NULL, (char *)NULL }
};
COMMAND recovery_shell[] = Recovery mode
{
{ "restore", recovery_restore, ">> restore - enter restore mode. "},
{ "grestore", recovery_grestore, ">> grestore <restorebundle> - enter restore mode interactively."},
{ "filecopytophone", recovery_filecopytophone, ">> filecopytophone"},
{ "serial", recovery_serial, ">> serial"},
{ "cmd", recovery_cmd, ">> cmd <command> - send command to phone."},
{ "exit", recovery_exit, ">> exit - Escape to shell. The other shell, the one whos child i am." },
{ "disconnect", recovery_disconnect, ">> disconnect - disconnect from shell and await reconnect." },
{ "help", sh_help, ">> help <command> - Display help information on <command>. No args lists commands." },
{ "run", sh_run, ">> run <path> - runs a script at <path>."},
{ (char *)NULL, (shell_funct *)NULL, (char *)NULL }
};
COMMAND dfu_shell[] = DFU mode
{
{ "restore", dfu_restore, ">> restore - enter restore mode. "},
{ "exit", dfu_exit, ">> exit - Escape to shell. The other shell, the one whos child i am." },
{ "disconnect", dfu_disconnect, ">> disconnect - disconnect from shell and await reconnect." },
{ "help", sh_help, ">> help <command> - Display help information on <command>. No args lists commands." },
{ "run", sh_run, ">> run <path> - runs a script at <path>."},
{ (char *)NULL, (shell_funct *)NULL, (char *)NULL }\
@


Regard
Bilalzaink
  Reply With Quote
The Following User Says Thank You to bilalzaink For This Useful Post:
Old 05-24-2011, 06:52   #2 (permalink)
No Life Poster
 
eyestrain's Avatar
 
Join Date: Feb 2006
Location: Caribbean
Posts: 1,034
Member: 237911
Status: Offline
Thanks Meter: 632
huwow!
bunch of iphone additional knowledge,

thanks for giving this info sir,
can you also share the original link?


thanks
  Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
thread Thread Starter Forum Replies Last Post
my 8810 is phone locked ,can somebody please help duyphuc Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 18 12-23-2014 09:03
what prog changes imei on 6110 and how do i do it? Ravetrancer Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 3 07-31-2012 20:09
SIM restriction pending -- what does it mean? Ryu Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 7 07-17-2011 10:05
buy your GSM here midlandcellular Main Sales Section 0 09-04-1999 17:14

 



All times are GMT +1. The time now is 09:57.



Powered by Searchlight © 2024 Axivo Inc.
vBulletin Optimisation provided by vB Optimise (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
- GSM Hosting Ltd. - 1999-2023 -
Page generated in 0.16364 seconds with 9 queries

SEO by vBSEO