Copy Link
Add to Bookmark
Report

13 - Use smartphone with a BBS

Null diskmag Issue 1

eZine's profile picture
Published in 
null magazine
 · 26 Dec 2020

  Raspberries are little, neat Linux computers. Also, everyone today is having 
an old smartphone with Android. Thankfully for us, we can use Linux and ADB
tools to connect and communicate with any, Android smartphone. We can use this
functionality, to send SMS messages from our BBS to any number.

U can use this as a pager for SySoPS or notifications for any users activity
in the BBS. Its up to you to decide and imagine other uses for it. Lets see how
we can do it...

/////// REQUIREMENTS ///////

First of all you need to install ADB Tools. For that, open a terminal window
and type:

sudo apt-get install android-tools-adb

After that, type:
adb shell

If you get a prompt inside your device you are OK, else you have to figure
out whats wrong with the connection. THis is not a guide how to connect your
android phone.

Make sure that the ADB utility is inside the /usb/bin directory or else find
its exact location. If you have installed LOCATE, use it to find adb location.
Now lets go write a simple BASH script to send SMSs.



/////// THE SCRIPT ///////

Copy/paste the following BASH script, into a file.

`+----- -- -- = - - - - = -= - - - -__=- = - - - = - - - = - = = =-- +'

#!/bin/bash
# Usage:
# ./send.sh <phone_num> <text>
# Example
# ./send.sh 9999999999 "Hello there."
# -

# Change this to the correct location of ADB
ADB=/usr/bin/adb

# Check if screen is off
if $ADB shell dumpsys input_method | grep -q mScreenOn=false; then
$ADB shell input keyevent 26
$ADB shell input swipe 250 650 1000 650
sleep 1
fi

# Check if SMS app is running
test=$($ADB shell ps | grep com.android.mms | awk '{print $9}');
if [ ! -z $test ]; then
$ADB shell am force-stop com.android.mms
fi

# Wake up phone
$ADB shell input keyevent 3
# Fill SMS Stuff
$ADB shell am start -a android.intent.action.SENDTO -d sms:$1 /
--es sms_body "$2" --ez exit_on_sent true
# Wait for it...
sleep 5
# Send it...
$ADB shell input keyevent 22
# kabaam...
sleep 1
$ADB shell input keyevent 66

`+----- -- -- = - - - - = -= - - - -__=- = - - - = - - - = - = = =-- +'

Make it executable with:
chmod +x send.sh

That's it. Now you can use it at any Menu Command of your BBS software to
send SMS messages. The script will wake the phone, write the message and send
it, to the phone number provided. Make sure to test it.

One important thing is that you have to have a simple unlocker for the phone,
like Slide it, so that the script can easily unlock the phone and send the sms.
It wont work with other type of lock screens.

You can use it straight as a menu command or execute it through a BBS script,
to get any system variables you may need. Now go write some SySoP paging
scripts... :]

← previous
next →
loading
sending ...
New to Neperos ? Sign Up for free
download Neperos App from Google Play
install Neperos as PWA

Let's discover also

Recent Articles

Recent Comments

Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT