Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ierror/pythonforioshacks
- Owner: ierror
- License: other
- Created: 2012-05-21T21:42:43.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-24T18:14:34.000Z (over 12 years ago)
- Last Synced: 2024-04-16T07:34:15.356Z (9 months ago)
- Language: Python
- Size: 105 KB
- Stars: 9
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)