Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ierror/pythonforioshacks

Proof of concept for missing? iOS features
https://github.com/ierror/pythonforioshacks

Last synced: 3 months ago
JSON representation

Proof of concept for missing? iOS features

Awesome Lists containing this project

README

        

# PythonForiOSHacks - No jailbreak

Proof of concept for missing? iOS features using the [Python for iOS](http://itunes.apple.com/us/app/python-for-ios/id485729872?mt=8&ign-mpt=uo%3D4) app.

## Prerequisite
* [Python for iOS](http://itunes.apple.com/us/app/python-for-ios/id485729872?mt=8&ign-mpt=uo%3D4)

## Examples

Enter the following examples into the Python for iOS shell.
Please review the fetched scripts if you don't trust me. Just some simple lines of python code…. ;)

* Telnetserver: http://pastebin.com/HTjPFEZN
* Webserver: http://pastebin.com/0J1HJ7M4

### Telnetserver

#### Start

import urllib2
exec(urllib2.urlopen('http://pastebin.com/raw.php?i=HTjPFEZN').read())

#### Connect to your iOS device
telnet 4711

#### Type one of the implemented commands
* ls /
* whoami
* date

### Webserver

#### Start

import urllib2
exec(urllib2.urlopen('http://pastebin.com/raw.php?i=0J1HJ7M4').read())

#### Browse your iOS device
http://:4711/

## Contact
* [Twitter](https://twitter.com/#!/i_error)