[Documentation] [TitleIndex] [WordIndex

Caller ID spoofing

spoofcard: https://www.spoofcard.com/caller-id/

mobile application: https://play.google.com/store/apps/details?id=com.teltechcorp.spoofcard&hl=en

Note: This is illegal to use for illegal purpose like fraud, it legal to just prank someone.

Email Spoofing

https://www.youtube.com/watch?v=jXUXKlrY-JY

1. You need to find email exchange server(or smtp server)

$nslookup
>set type=mx
>website

2. After finding the smtp server, usually port number is 25, and smtp_server is the address you found in the above step.

telnet smtp_server portnumber

3. Communicating with the server

>helo
>mail from: <>
>rcpt to: <>
>data

>From: " name " <from email id>
 To: <to email id>
 Subject:write the subject here
 write info here
 dont forget full stop and enter

Mobile hacks

changing mac id

1. root your phone without breaking

2. example for yu yureka plus rooting https://www.youtube.com/watch?v=re-BLoWViEY

Download zip file from https://drive.google.com/file/d/0B_aCRdb2PZn7RXBnLUpnY0xhTzQ/view?usp=sharing

Note: backup your files before doing this

> extract
> install pdanet in your laptop
> setting-> aboutphone-> build number (tap 7times)
> developer options -> advance reboot(yes), update cyanogen (no), android debugging(yes)
> power button -> reboot ->bootloader (stay usb connected and start thee unlock_bootloader.bat in yu yureka root files)
> once unlocking is done disconnect usb and restart your phone
> copy UPDATE-SuperSU-v2.46.zip file to your internal storage of phone
> developer options -> advance reboot(yes), update cyanogen (no), android debugging(yes)
> power button -> reboot ->bootloader (stay usb connected and start the flash_TWRP.bat in yu yureka root files)
> disconnect usb, volup+voldown+powerdown(sametime)
> install-> find the supersu zip file -> swipe to confirm flash button then reboot system now

3. install busybox, terminal from the play store

Open terminal, you can use just like you use in linux
$ su [HIT ENTER]
$ busybox iplink show wlan0 [HIT ENTER]
$ busybox ifconfig wlan0 hw ether XX:XX:XX:XX:XX:XX [HIT ENTER]
$ busybox iplink show wlan0 [HIT ENTER]

(Now you should see your new MAC address)

metasploit and controlling others phone

https://www.youtube.com/watch?v=5tkjvuBgtE8

1. install metaspoilt in ubuntu or linux based os

curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \
  chmod 755 msfinstall && \
  ./msfinstall

2.create apk file with payload

man in middle attack (spying others under same network)

https://www.youtube.com/watch?v=TDhGpAZ5IGg

1. install ettercap and driftnet

sudo apt-get install ettercap-graphical
sudo apt-get install driftnet

2. if you are on linux change the /etc/ettercap/etter.conf file

sudo gedit /etc/ettercap/etter.conf

3. editing

line 16: ec_uid = 0
line 17: ec_gid = 0
line 171: uncomment
line 172: uncomment

4. finding who all connected to network

arp -a

5. start ettercap

sudo ettercap -G

6. using ettercap for mitm

OPTIONS-> promisic mode
sniff -> unified sniffing -> wlan2or wlan0 // depending on your connection
hosts -> scan for hosts
hosts -> hosts list
start-> start sniffing
mitm -> arp poisoning ->sniff remote connections

7. start driftnet to visualise

sudo driftnet -i wlan2 or wlan0// depending on your connection

8.select the target in ettercap visualize in driftnet

SMS Spoofing

Send sms from any email id

Useful link: https://evilzone.org/hacking-and-security/can-a-php-script-used-for-sending-sms/

1.

email  phonenumber@service.com

2.you can find the carrier provider and sms gateway at http://www.freecarrierlookup.com/

3.You know how to spoof email id via smtp server

Send sms from any caller id

article how to convert to pdu data: http://letsunlockiphone.guru/send-raw-pdu-errors-sms/

How to use Iphone to send pdu data: http://letsunlockiphone.guru/how-to-sms-spoofing-sendrawpdu-iphone-4-ios/

PDU spy download link: http://www.nobbi.com/download/pduspy.zip

http://www.pod2g.org/2012/08/never-trust-sms-ios-text-spoofing.html

Finding gps location of a phone

goto: https://try.locationsmart.net/ 1.

fake the yes to 84787 the confirmation sms

2023-10-28 12:46