How to do development in Android using SSHDroid

Android market has an application called SSHDroid.   If u can root your phone (higy recommended as u will learn more –> as there are a lot more u can do and control than without root)…..then running SSHDroid will open up a port at 22, and then u can ssh into the system…..First install SSHDroid….then run it (it needs WIFI…so u must have wifi setup…it does not use GSM, and it is quite safe….as only those who have connected to your WIFI can ssh into the phone)Then SSHDroid will tell u the root password (admin)…and ip address….then u ssh inside and and basically u can do anything like a linux env, eg chmod/ls/ps/dmesg.

First I created the ARM ELF binary:   myrintdata is the file created using agcc (http://plausible.org/andy/agcc):

export LD_LIBRARY_PATH=/root/download/android/sync/ndk/build/platforms/android-8/arch-arm/usr/lib/:$LD_LIBRARY_PATH
export PATH=/sde3/root/download/android/sync/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin:$PATH
agcc myprint.c
mv a.out myprintdata

Next we will try to scp from inside the Android device to the host environment.   All the ssh/scp utilities is in the dropbear directory….but difficult/impossible to work:

# cd /data/data/berserker.android.apps.sshdroid/dropbear/
# ./scp root@10.10.1.155:/root/download/android/myprintdata /sdcard
/system/bin/ssh: No such file or directory
lost connection

# ls /system/bin/ssh
/system/bin/ssh: No such file or directory
# echo $PATH
/data/data/berserker.android.apps.sshdroid/dropbear:/usr/bin:/usr/sbin:/bin:/sbin:/system/sbin:/system/bin:/system/xbin:/system/xbin/bb:/data/local/bin

# ls /data/data/berse*/dropbear/ssh
/data/data/berserker.android.apps.sshdroid/dropbear/ssh

# ls /data/data/berse*/dropbear/scp
/data/data/berserker.android.apps.sshdroid/dropbear/scp

So we know that ssh and scp all exists in the Dropbear directory – but since it is the $PATH directory, and the binaries not using the $PATH environment variable to look for the command (eg scp and ssh and sftp), this means that the binaries actually hardcode the other binaries in the standard path (/system/bin).   Another alternative to transfer file is needed.

# cp ssh /system/bin/
cp: not found

as noted….Android does not have “cp” command.

# dd if=scp of=/system/bin/scp
/system/bin/scp: cannot open for write: Read-only file system

Yes, dd can be used…but not in the /system directory.

Finally doing a scp from outside the Android environment (ie, host env):

Copy from outside into the Android devices (and it worked):

scp myprintdata  root@10.10.1.160:/data

Copy from inside the Android devices to outside (and it worked):

scp root@10.10.1.160:/sdcard/ls.log.gz .

After we copied the binary “myprintdata” to /sdcard or /data directory – executing it immediately worked!!!!

Why do I have to use SSHDroid to connect to the Android device?   Basically because this Samsung device I have is not able to communicate with my Linux laptop via USB at all – but another different Samsung phone is able to – most likely it is hardware problem, as both have been setup in the same way.

One response to this post.

  1. I user also Servers Ultimate which also has 40 other servers beside SSH.

    It can be found here:
    https://play.google.com/store/apps/details?id=com.icecoldapps.serversultimate

    Reply

Leave a reply to Jaap Halo Cancel reply

Vickblöm

Research scattered with thoughts, ideas, and dreams

Penetration Testing Lab

Offensive Techniques & Methodologies

Astr0baby's not so random thoughts _____ rand() % 100;

@astr0baby on Twitter for fresh randomness

The Data Explorer

playing around with open data to learn some cool stuff about data analysis and the world

Conorsblog

Data | ML | NLP | Python | R

quyv

Just a thought

IFT6266 - H2017 Deep Learning

A Graduate Course Offered at Université de Montréal

Deep Learning IFT6266-H2017 UdeM

Philippe Paradis - My solutions to the image inpainting problem

IFT6266 – H2017 DEEP LEARNING

Pulkit's thoughts on the course project

Thomas Dinsmore's Blog

No man but a blockhead ever wrote except for money -- Samuel Johnson

the morning paper

a random walk through Computer Science research, by Adrian Colyer

The Spectator

Shakir's Machine Learning Blog