Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/urraka/iphone-callblock
Simple application for jailbroken iphones that blocks incoming calls based on a list of regex patterns to test against the caller number.
https://github.com/urraka/iphone-callblock
Last synced: about 1 month ago
JSON representation
Simple application for jailbroken iphones that blocks incoming calls based on a list of regex patterns to test against the caller number.
- Host: GitHub
- URL: https://github.com/urraka/iphone-callblock
- Owner: urraka
- Created: 2013-09-27T23:16:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-02T13:57:40.000Z (about 11 years ago)
- Last Synced: 2023-03-31T16:34:40.226Z (almost 2 years ago)
- Language: Objective-C
- Size: 105 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Simple application for jailbroken iphones that blocks incoming calls based on a list of regex patterns to test against the caller number.
BUILD
./make
Might need to edit the makefile so sysroot matches the iPhone SDK installed.
RUN
Upload bin/callblocker to iPhone along with a file called blocklist, which has a list of regex patterns to match against the incoming numbers. The file is loaded from the current working directory of the application.
Example for a blocklist file which blocks all numbers that start with +54341681:
^\+54341681
You can run the application on the background using ssh like this:
./callblocker > out.log 2> error.log < /dev/null &
This is working for me on a jailbroken iPhone with iOS 6.1. It shows the call screen but closes it immediately.