ads

Affichage des articles dont le libellé est Reverse. Afficher tous les articles
Affichage des articles dont le libellé est Reverse. Afficher tous les articles

samedi 19 septembre 2015

[HELP] adding gmail account without wifi (reverse tethering)



hi everyone,i recently broke my tablet wifi chip (realtek rtl8188etv) :crying: , i figured it was a good idea to use reverse tethering ,
and it worked, but when i want to add my gmail account to my tablet(because i did a full wipe) and it wont let me pass the setting
so i wont able to add my gmail account :(
can anyone help me ?



dimanche 13 septembre 2015

Reverse tethering.. it works but no DNS!



I've a Samsung S5 with CM12.1 + FakeWifi (Xposed).
I use the following script to reverse tether with ubuntu.

Code:


#!/bin/bash

ADB="adb"

# We need root on the host to mess with networking
if [[ $(whoami) != "root" ]]; then
  echo "You must be root to run this script!"
  exit 1
fi;

# We need root on the device to mess with networking
$ADB -d root

# Keep NetworkManager from messing with the adapter
grep 'usb0 inet manual' /etc/network/interfaces
if [ ! $? ]; then
  echo 'Configuring usb0 for manual control'
  echo 'iface usb0 inet manual' >> /etc/network/interfaces
  restart network-manager
fi

echo 'Setting up usb networking on device'
$ADB -d shell 'ip addr add 192.168.200.2/30 dev rndis0;\
 ip link set rndis0 up; \
 ip route delete default; \
 ip route add default via 192.168.200.1; \
  setprop net.dns1 192.168.200.1'

echo 'Setting up usb interface on the host'
ip addr flush dev usb0
ip addr add 192.168.200.1/30 dev usb0
ip link set usb0 up

# Turn off the firewall if one is active
echo 'Checking for ufw firewall'
which ufw && ufw status || ufw disable

echo 'Enabling NAT and IP Forwarding'
# Start forwarding and nat (use existing default gw)
iptables -F -t nat
iptables -A POSTROUTING -t nat -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward

echo 'Starting dnsmasq'
dnsmasq --interface=usb0 --no-dhcp-interface=usb0

echo 'Connection is active! Press any key to shutdown.'
read

echo 'Attempting to shut down reverse tethering'
killall dnsmasq
ip link set usb0 down
iptables -F -t nat
echo 0 > /proc/sys/net/ipv4/ip_forward

echo 'Disabling usb networking on host'
$ADB shell ip route delete default

echo 'Disable and re-enable Wifi to return the device to normal'


Now the problem is that if I ping a public IP it works, but if I ping or curl the corresponding domain it fails "unknown host", "could not resolve".
What the heck should I do in order to make DNS working?
Thanks a lot for your help



samedi 5 septembre 2015

Have you tried to reverse a video? Try vidreverse.



Have you ever tried to watch a video reversed?
For example, you jumped from a height, after reversed it became that you flied to a height from the ground.
And you put water spilled, conversely it becomes you spilled water came back.
Isn't it amazing? Vidreverse can accomplish this dream.
It can be found on Google Play.



lundi 31 août 2015

Reverse engineering an app in Apk Studio.



I'm trying to add an option in an app called aizoban that you could find on fdroid. It's a manga app. What I'm trying to do is add the website goodmanga.net to the app in the settings. How do i add a website's address and link to the manga source options?



dimanche 30 août 2015

Reverse Engineering question.



Hello guys.

I friend of mine is challenging me to hack his application but I ve a little problem. I think it should be easy to do for you guys but I m noob and I need more informations.

In the application when I click a button a Webview is opened and a link is loaded. In this link I should put some informations. If the informations are correct the website loaded in the webview (or the server in which is hosted) comunicates to the applications that the informations are correct and the application unlock some cool functions I can use. My task is to find where the application retrieve these informations from the webview in order to change the verification method orin order to find where the application unlock the cool functions (but I m sure that if I find where the application is getting data from the webview I can find the rest). The problem is that I can't find nothing that is comunicating with the webview.

Can you suggest me if there is some functions or classes that are able to comunicate with webview or website?? Or if there is a fast way to find the function used ??