Wednesday 31 October 2012

La mejor forma de encriptar contraseñas en C# y VB.NET

bcrypt es seguro


Hace como dos años hice este post pero la encriptacion md5 es considerada insegura, incluso desde mucho antes de crear ese post

¿Porque md5 es inseguro?


Con el hardware actual es posible crackear md5, de hecho en internet hay herramientas y hasta paginas web como http://crackstation.net/ que te ayudan a crackear no solo md5 sino una amplia cantidad de algoritmos de hash/encriptacion, pero existe una utilidad mucho mas poderosa capaz de crackear md5 llamada oclHashcat-lite que usa el procesador grafico GPU(tarjeta de video/grafica)

Esta utilidad es capaz de crackear los siguientes algoritmos:

  • MD5
  • md5($pass.$salt)
  • Joomla
  • SHA1
  • nsldap, SHA-1(Base64), Netscape LDAP SHA
  • sha1($pass.$salt)
  • nsldaps, SSHA-1(Base64), Netscape LDAP SSHA
  • Oracle 11g
  • MSSQL(2000)
  • MSSQL(2005)
  • MySQL
  • MD4
  • md4($pass.$salt)
  • NTLM
  • Domain Cached Credentials, mscash
  • SHA256
  • sha256($pass.$salt)
  • descrypt, DES(Unix), Traditional DES
  • SHA512
  • sha512($pass.$salt)
  • SL3
  • Cisco-PIX MD5
  • Double MD5
  • vBulletin < v3.8.5
  • vBulletin > v3.8.5
  • IPB2+, MyBB1.2+
  • LM
  • Oracle 7-10g, DES(Oracle)
  • y muchos mas...

Segun http://www.codinghorror.com/blog/2012/04/speed-hashing.html arroja estos resultados en este GPU y CPU:

  • Radeon 7970           8213.6 M c/s
  • 6-core AMD CPU   52.9     M c/s
 (PRONTO HARE PRUEBAS EN MI AMD HIS 6950 2GB Y CORE i5 2500K)

Ejecute el archivo: oclExample.cmd que contiene el siguiente comando de prueba:

oclHashcat-lite64.exe 9b957cc6ab97cbf88c4f6f0f146adafe

Tardo elrededor de 20minutos para crackear con:


  • AMD 6950 2GB: 4600 M/s
AMD 6950 2GB

Tardo alrededor de 20 minutos en crackear

Con una carga de 96% y 71° de temperatura


Sin duda las tarjetas ATi/AMD son las mejores para este tipo de trabajo

Es por eso que la mejor opcion es Bcrypt


Que para definirlo brevemente es:  

Una funcion derivada de claves

Para la tecnologia .NET tenemos esta libreria llamada BCypt.NET, te puedes descargar la libreria y el codigo fuente tambien, incluso viene con UnitTest para testearla

Recuerda agregar el archivo BCrypt.Net.dll como referencia al proyecto

Es muy sencillo de usar ya que posee solo cuatro metodos y ademas son estaticos, asi que no es necesario instanciar la clase BCrypt para acceder a esos metodos:

  1. GenerateSalt()
  2. HashPassword()
  3. HashString()
  4. Verify()

La documentacion te la puedes descargar de aqui, es un archivo de ayuda de Windows que por cierto esta en ingles, pero como dije es muy facil de usar

Existen dos pasos importantes aqui a la hora de de/encriptar contraseñas:

  1. Encriptar la contraseña cuando se agregue/edite un usuario
  2. Usar el metodo Verify() para verificar que la contraseña de la base de datos corresponde con la contraseña dada

Codigo C#: (pseudocodigo por los momentos)

Aqui tengo un sistema de login usando esta encriptacionen Access 2007

/*
* Creado por tttony 2012
* http://tttony.blogspot.com/
*
* POR FAVOR NO BORRES ESTE COMENTARIO
*/

public bool AddUser(string name, string pass)
{
string hashed = BCrypt.Net.BCrypt.HashPassword(pass, BCrypt.Net.BCrypt.GenerateSalt());

//
// Agregar aqui la sentencia sql INSERT para guardar el usuario
// y contraseña encriptada
//

// Retornar el valor necesario
//
return false;
}

public bool Login(string name, string pass)
{
//
// Primero encuentra el usuario
//
// SELECT * FROM TablaUsuarios WHERE = 'name'
//
// if (founds == 1) si encontro uno
//
// Entonces con el objecto del usuario encuentra la contraseña
// y pasala a la funcion BCrypt.Net.BCrypt.Verify()
//

//
// La funcion Verify() verifica si la contraseña encriptada que
// esta guardada en la base de datos contiene la palabara clave
// con la contraseña dada
//
bool verify = BCrypt.Net.BCrypt.Verify(pass, password);

return verify;
}


ESTE POST SE ACTUALIZARA


Publicado en tttony.blogspot.com

Sunday 28 October 2012

Sapir - October 28th Release

Sometimes you just have to have a distraction free working or playing environment. So, the main change in this release is the addition of the Expandable Desktop settings for the Power Menu.

The download links, as always, are to the right.
The full updated change log:
  • Sapir: Change Trebuchet layout in tablet mode
  • Sapir: Changed Battery styles in status bar from AOKP to CM
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Added Expandable Desktop settings for power menu
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerrit merges as of Sun Oct 28 15:57:52 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
(M) Merged to CM10

Descargar Internet Explorer 8 Offline



Internet Explorer 8 Windows XP x86
Internet Explorer 8 Windows Server 2003 x86 SP2
Internet Explorer 8 Windows Server 2003 x64 SP2 y Windows XP x64
Internet Explorer 8 Windows Vista y Server 2008 x86
Internet Explorer 8 Windows Vista y Server 2008 x64


Publicado en tttony.blogspot.com

Descargar Internet Explorer 9 Offline


Descargas directas desde la pagina de Microsoft

Esta version de Internet Explorer no es compatible con Windows XP

Internet Explorer 9 Windows 7 y Windows Server 2008 R2 x86

Internet Explorer 9 Windows 7 y Windows Server 2008 R2 x64
Internet Explorer 9 Windows Vista y Windows Server 2008 x86
Internet Explorer 9 Windows Vista y Windows Server 2008 x64


Publicado en tttony.blogspot.com

Saturday 27 October 2012

Descargar Windows Live Essentials Offline


Descargas directas desde la pagina de Microsoft

Windows Live Essentials permite a los usuarios seleccionar e instalar algunas de las siguientes aplicaciones de software:


  • Microsoft Family Safety
  • Windows Mail Desktop
  • Windows Live Messenger
  • SkyDrive para Windows
  • Windows Movie Maker
  • Windows Photo Gallery
  • Windows Writer
  • Microsoft Outlook Hotmail Connector

Mas info en Wikipedia


Windows 7, 8 y Server 2008

Windows Vista

Windows XP


Publicado en tttony.blogspot.com

Friday 26 October 2012

Aplicaciones sospechosas para Android


He estado viendo que en el Google Play hay una serie de aplicaciones llamadas anzuelos, estas aplicaciones que hasta en su misma descripcion al final dicen ser, aplicaciones para "engañar" a tus amigos, como por ejemplo el WiFi Hacker ULTIMATE

Lo peor de todo es que tiene buena puntuacion ¿? y al leer los comentarios he quedado




Pues les digo que no las instalen, ya que estas lo que hacen es instalar Adware, publicitando la descarga de otras aplicaciones y juegos

WiFi Hacker ULTIMATE como dije antes NO HACE NADA, no crackea contraseñas ni nada de eso, es una excusa para que la descargues

Porque esa aplicacion pide permisos como:

  • Ubicación aproximada (basada en la red)
  • Ubicación precisa (GPS)
  • Escribir historial y favoritos del navegador
  • Leer historial y marcadores del navegador
  • Leer la identidad y el estado del teléfono
  • Descubrir cuentas conocidas
  • Ejecutar automáticamente al iniciar

Para que necesita tantos permisos si solo con: Acceso total a Internet es suficiente?

Ademas he visto(gracias a Fiddler) que se conecta a unas paginas de publicidad que no son de Google Adsense

NO SE DESCARGUEN ESTE TIPO DE APLICACIONES, LEAN LA DESCRIPCION DE LA APLICACION, MIRA QUE ES TU TELEFONO/TABLET Y PUEDE RECOGER INFORMACION PERSONAL Y ENVIARLA POR INTERNET

ACTUALIZACION: 09/04/2013

Una buena noticia

Google ha borrado unas 60.000 aplicaciones de Google Play por baja calidad

Entre ellas me imagino que estaba la tal WiFi Hacker Ultimate porque ahora ya no existe y me alegra muchisimo

Publicado en tttony.blogspot.com

Salida de internet por el puerto LAN de tu PC/Laptop usando WiFi



Si te conectas a una red Wi-Fi y tienes otro/s pc/s pero sin antena Wi-Fi, puedes usar tu propia PC para enviar internet por el puerto LAN a la/s otra/s pc/s

Como configurarlo?


  1. Conectate a tu red Wi-Fi
  2. Abrir Centro de redes y recursos compartidos


  3. Haz click en la parte izquierda en: Cambiar configuracion del adaptador
  4. Click derecho: Propiedades (en el adaptador que usas para la conexion inalambrica)
  5. Selecciona la pestaña: Uso compartido


  6. Activa la opcion: Permitir que los usuarios de otras redes de conecten a traves de la conexion a internet de este equipo
  7. En: Conexion de red domestica selecciona la conexion de red lan de tu PC, que por defecto se llama: Conexion de area local
  8. Listo!!

Ahora conecta un cable LAN/RJ-45 en tu PC y conecta el otro extremo a otro PC/laptop u otro dispositivo con entrada de ethernet LAN y veras que tienen internet


Publicado en tttony.blogspot.com

Thursday 25 October 2012

Sapir - October 26th Release

Finally. It took some time, but I can now present the first Ubuntu-made Sapir build.
For me, it's like returning home. The end result of it, of course, is that there are no new proprietary changes, only another CM catch-up.

The download links, as always, are to the right.
The full updated change log:
  • Sapir: Change Trebuchet layout in tablet mode
  • Sapir: Changed Battery styles in status bar from AOKP to CM
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Fri Oct 26 03:17:13 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
(M) Merged to CM10

Tuesday 23 October 2012

Detectar a que sitios web se conectan las aplicaciones

Si necesitas saber a que sitios web entran las aplicaciones que se ejecutan en tu Windows pues lo que necesitas es un proxy y con Fiddler se puede crear uno en segundos

  1. Descarga el programa Fiddler
  2. (te recomiendo el Fiddler4 ya que la version 2 me dio problemas en Windows 7 x64 Ultimate)
    NOTA:
    Fiddler2 necesita .NET Framework 2.0
    Fiddler4 necesita .NET Framework 4.0
  3. Instala el Fiddler en tu computador
  4. Luego ejecuta Fiddler y dirijete al menu:
  5. Tool -> Fiddler Options... -> Pestaña: Connections
  6. Configuralo de esta manera:


  7. Click en: OK
  8. Listo!!

Empezaras a ver en la ventana principal de Fiddler a que sitios haz entrado y a que sitios entran las aplicaciones, aplicaciones como un virus, adware, malware, etc...

NOTA IMPORTANTE: el equipo tiene que estar encendido y con el Fiddler ejecutado para que los dispositivos se conecten mediante tu equipo

Tambien puedes usarlo para ver a que sitios se conectan las aplicaciones en dispositivos con Android 4.0, pero antes debes saber que IP tiene asignado la PC

Menu Inicio -> Ejecutar -> cmd -> Luego escribe: ipconfig -> Mira la opcion: Direccion IPv4 (al estar conectado a un router la IP deberia comenzar por: 192.168.x.x
Otra forma de averiguar la IP es:

Click en el icono de la red que esta junto al reloj en la esquina inferior derecha -> Selecciona la red Wi-Fi a la que estas conectado y haz click derecho en ella -> Selecciona la opcion: Estado -> Click en: Detalles... -> Copia el Valor de la Propiedad: Direccion IPv4




Configurar proxy en Android 4.0


  1. Dirijete a: Config -> Wi-Fi -> Selecciona y deja presionado la red que al quieras conectarte hasta que te aparezca una ventana con dos opciones:
    • Olvidar red
    • Modificar red <-- Selecciona esta opcion
      • Activa: Mostrar opciones avanzadas
        • Nombre de host de proxy: 192.168.1.116 (pega tu IP antes averiguada)
        • Puerto: 8888

Configurar proxy en Android 2.3


  1. Conectate a tu Wi-Fi
  2. Presiona menu
  3. Selecciona: Avanzado
  4. Wi-Fi Proxy:
    • Proxy: 192.168.1.116 (pega tu IP antes averiguada)
    • Puerto: 8888

Ahora si quieres navegar internet con un proxy Anonimo, puedes visitar esta pagina:

http://aliveproxy.com/

Alli encontraras una lista de proxies anonimos, aunque no se puede confiar 100% en ello, ofrecen anonimidad pero no lo uses para entrar al banco o sitios donde este comprometida tu privacidad


Publicado en tttony.blogspot.com

Changing Build Systems

For the past few days, I've been re-installing my build system, which explains the time passed since the last build.
I'll be now building on a 1210 Ubuntu rather than a OS X ML one.
It should only take a few more hours to a day or two and then I'll roll out a new build.

Saturday 20 October 2012

Sapir - October 20th Release

Just another CM catch-up for this release. Got a lot on my plate at the moment.
For the next one, I'll probably improve tablet mode some more.

The current update change log:
  • Sapir: Change Trebuchet layout in tablet mode
  • Sapir: Changed Battery styles in status bar from AOKP to CM
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Sat Oct 20 08:57:55 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
(M) Merged to CM10

Wednesday 17 October 2012

Sapir - October 17th Release

The main changes was in the way Trebuchet works in Tablet Mode. Also, I enabled the option to deselect voicemail notifucations on the Sasung Galaxy Tab.

The download links are to the right.

The full update changelog:
  • Sapir: Change Trebuchet layout in tablet mode
  • Sapir: Changed Battery styles in status bar from AOKP to CM
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Wed Oct 17 01:32:00 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
(M) Merged to CM10

Tablet UI - Second Take

The main issue I (and most of you) see with Tablet UI is the Trebuchet rendering. It seems problematic especially in Landscape mode, but Portrait is no paradise as well.

The reason for that - I opted for the any-DPI approach when supplying Tablet UI - not all apps are set for that. The good thing, though, is that Trebuchet is part of our code base - and a correction is possible.

So, today or tomorrow, you'll get the better looking Tablet UI with the new CM 10 style battery.

Stay tuned - soon.

Friday 12 October 2012

Sapir - October 12th Release

I'm aware of the many issues with the layout of the tablet mode - at least in higher DPIs, and I'm working through them. However, I didn't want to leave you guys without the upgrade to 4.1.2 and other bug fixes, so I'm releasing the 4.1.2 update with no Sapir specific changes.

The links are to the right, and the updated change log is:
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Additional Battery styles in status bar, including circle
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Fri Oct 12 06:02:43 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
(M) Merged to CM10

Configurar APN en Digitel



NOTA IMPORTANTE!
LEER ANTES DE CONFIGURAR O PREGUNTAR


Para que esta configuracion funcione 100%, tu dispositivo, ya sea un telefono o tablet, debe soportar la banda de Digitel 3G 
Banda 8: 900 Mhz

Para conectarse a 4G, el dispositivo debe soportar la banda de Digitel 4G y ademas el dispositivo debe tener una U-SIM para que puedas disfrutar del 4G, debes solicitarla en Digitel
Banda 3: 1800 Mhz

Mas informacion de Digitel en Wikipedia


AQUI esta el mapa de cobertura de Digitel, en la parte superior derecha estan las opciones del 3G y 4G


BUSQUEN EN INTERNET, ENCONTRARAN MAS RAPIDO LA INFORMACION, NO HAGAN PREGUNTAS COMO: MI X TELEFONO NO SE CONECTA QUE PUEDO HACER?

CON EL MODELO DEL TELEFONO ENCONTRARAS MAS RAPIDO LA RESPUESTA, NO ESPEREN A QUE CONTESTE ESAS PREGUNTAS



Averiguar que bandas soporta el telefono


  • En la caja del telefono debe decirte que bandas soporta
  • Busca en la pagina oficial del fabricante
  • En las paginas: gsmarena.com, phonearena.com, pdadb.net
  • Recuerda que para un modelo de telefono existen otros modelos, y debes buscar por el modelo exacto que es tu telefono
  • Busca en Google: marca modelo exacto


Agregar APN segun la version del Android


Android automaticamente descarga la configuracion para el 3G y Mensajes Multimedia (MMS) en Digitel (al menos en el Android 4.0.3) pero de todas maneras lo publico

Esta guia no es especifica para telefonos con Android, puede usarse tal cual para otros sistemas operativos moviles, lo unico es que debes averiguar donde se agrega el APN en dicho sistema

Para versiones anteriores a Android 4.0 ir a:

Configuraciones / Conexiones inalambricas y redes / Redes moviles / APN:
En Android 4.0 o superior:

Config. / Mas... / Redes celulares / Nombre puntos acceso / click en menu y selecciona: APN nuevo

  • Nombre: Digitel 412 (escribe el que quieras)
  • APN: gprsweb.digitel.ve
  • Proxy: No definido
  • Puerto: No definido
  • Nombre de usuario: No definido
  • Contraseña: No definido
  • Servidor: No definido
  • MMSC: No definido
  • Proxy de MMS: No definido
  • MCC: 734
  • MNC: 02
  • Tipo de autenticacion: Ninguno
  • Tipo de APN: default,supl,a-gps,dial up networking

  • (NOTA: viendo que algunos tienen problemas con el Android 2.3 que al parecer no tienen la opcion de cambiar el modo de red, agreguen tambien estas opciones: internet,mms, avisen si les funciono, aqui mas info sobre como conectar con 3G y no con EDGE)

  • Protocolo APN: IPv4
  • Tipo de conexion: Sin especificar

Configuracion para los Mensajes Multimedia MMS


Agregar otro APN


  • Nombre: MMS412 (escribe el que quieras)
  • APN: expresate.digitel.ve
  • Proxy: No definido
  • Puerto: No definido
  • Nombre de usuario: No definido
  • Contraseña: No definido
  • Servidor: No definido
  • MMSC: http://mms.412.com.ve/servlets/mms
  • Proxy de MMS: 10.99.0.10
  • Puerto de MMS: 8080
  • MCC: 734
  • MNC: 02
  • Tipo de autenticacion: Ninguno
  • Tipo de APN: mms
  • Protocolo APN: IPv4
  • Tipo de conexion: Sin especificar

Es la configuracion actual en mi telefono Sony Xperia P LT22i que no fue necesario hacerla ya que Android la descargo automaticamente


Publicado en tttonyblogspot.com

Tuesday 9 October 2012

Sapir - October 9th Release

Battery is back to tablet mode.

For example (AT&T Samsung Galaxy S III):





Full updates change log:
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Additional Battery styles in status bar, including circle
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Tue Oct 9 20:24:33 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
  • (M) Merged to CM10

Monday 8 October 2012

Sapir - October 8th Release

The new release features mostly Tablet Mode.
As this is not a copy of the regular tablet mode, it should be available in any DPI you set - but you can be it won't look good if you don't have enough space :)

As I wrote in my previous post, tablet mode is not perfect yet. For example, you won't see the battery. You can get around this by using a widget or even the lockscreen. I'm now using Tablet Mode on all my devices.

In the meantime, links are, as always, to the right and the full updated changelog is:
  • Sapir: Added Tablet Mode in Sapir settings
  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Additional Battery styles in status bar, including circle
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Mon Oct 8 04:39:38 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
  • (M) Merged to CM10

Sunday 7 October 2012

Tablet Mode is (almost) Here

Tablet mode is finally working.
The toggle is the first one in the new Sapir Settings item.

This is how it looks on AT&T Samsung Galaxy S III, for example:








It should work on all devices, though I'm still testing it.

Not everything is working yet - for example, I still need to add the battery icon to some of the views and clock will only show on the expanded bar, but it's already usable as it is.
Looking forward to hearing your comments after I release this. Probably later today.

Saturday 6 October 2012

Sapir - October 6th Release

The October 6th release is now available.

Main change - Transparency setting for status bar. You'll be able to fine tune it to the exact transparency percentage you prefer. Here is how it looks:


The download links are, as always, to the right.

Now, for the full updated change log:


  • Sapir: Added DPI Changer in Display settings
  • Sapir: Transparent status bar slider in Settings
  • Sapir: Additional Battery styles in status bar, including circle
  • Sapir: Changes to init.rc tp enhance performance
  • Sapir: Added file explorer
  • Add SMS to Calnedar
  • Fix for adding emoji and smiley to cursor position
  • Fix for caller name not sticking to missed calls
  • Brightness control in lock screen
  • Option to disable auto screen-lock after a phone call
  • Delay auto screen-off when answering call
  • T9 Dialer searches also in company and nickname
  • Option to keep the proximity sensor on during calls using a headset
  • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
  • (Google Galaxy Nexus) Changed to franco kernel self compiled
  • (Samsung Galaxy Tab) Reverted back to CM kernel
  • CM Gerritmerges as of Sat Oct 6 03:49:02 UTC 2012
  • New Calculator features
  • Added handling of vol rocker long press in camera
  • Changed USB connected icon to feature Cid
  • Center Clock option
  • Ability to enable navigation bar from settings
  • Left navigation bar in landscape mode option
  • Status bar can show both signal strength and network tech
  • Call log: Add lookup in Call logs
  • Corrected Kernel string in Settings (M)
  • Messaging - Ability to change soft keyboard when composing (M)
  • Added fullscreen toggle to Browser (M)
  • Enable installing shortcuts in Trebuchet (M)
  • Tethering Fix (M)
  • Clock: Stopwatch and Countdown (M)
  • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
  • Lockscreen Clock alignment (M)
  • Mms: Only display template button if templates defined (M)
  • Mms: Add Template support to QuickMessage pop-up(M)
  • Torch: Modify widget to utilize AOSP power widget UI (M)
  • Variable size pattern in lock screen (M)
  • Advanced Phone Settings (M)
  • Control cursor in text fields with volume rocker (M)
  • Quick message support in SMS (M)
  • Nfc card emulation (M)
  • (M) Merged to CM10


    Friday 5 October 2012

    Transparent Goverments

    I enjoy the transparent status bar, and so do quite a lot of you guys.
    But - not all of you. And then again, some of you wanted it to be more transparent than it is.

    What to do? What to do? :)

    A few minutes ago, the status bar in my build started to have a life of its own - which is good, because that's what I was aiming for. I'm just going to put the Settings part in, build it and then you'll be able to control the transparency as you wish.

    See you soon in the build post.

    Tuesday 2 October 2012

    Sapir - October 2nd Release

    What is going on in here?
    I've got the following things lined up:

    • Remove the reboot requirement for Navigation Bar enable / disable - this helps with some games and has been requested a lot
    • Integrate Tablet Mode - Currently causes a lot of merge issues
    • Individual DPI - Still in design
    • Transparency Toggle for Status Bar - Looking for a solution
    While I'm working on this things, however, there are a lot of changes coming in from CM, and I don't want you guys to miss out on them, which is why the list above takes some time to implement.
    When things get a bit more stable on the CM front, though, the proprietary Sapir features (as well as merges) will pick up pace as well.

    So, for now, with the links on the right side as usual, here is the updated changelog:
    • Sapir: Added DPI Changer in Display settings
    • Sapir: Transparent nav bar / status bar
    • Sapir: Additional Battery styles in status bar, including circle
    • Sapir: Changes to init.rc tp enahance performance
    • Sapir: Added file explorer
    • Add SMS to Calnedar
    • Fix for adding emoji and smiley to cursor position
    • Fix for caller name not sticking to missed calls
    • Brightness control in lock screen
    • Option to disable auto screen-lock after a phone call
    • Delay auto screen-off when answering call
    • T9 Dialer searches also in company and nickname
    • Option to keep the proximity sensor on during calls using a headset
    • *** (Samsung Galaxy Tab P1000) * Using old partition structure, so data partition is large enough for user applications *
    • (Google Galaxy Nexus) Changed to franco kernel self compiled
    • (Samsung Galaxy Tab) Reverted back to CM kernel
    • CM Gerritmerges as of Tue Oct 2 19:27:58 UTC 2012
    • New Calculator features
    • Added handling of vol rocker long press in camera
    • Changed USB connected icon to feature Cid
    • Center Clock option
    • Ability to enable navigation bar from settings
    • Left navigation bar in landscape mode option
    • Status bar can show both signal strength and network tech
    • Call log: Add lookup in Call logs
    • Corrected Kernel string in Settings (M)
    • Messaging - Ability to change soft keyboard when composing (M)
    • Added fullscreen toggle to Browser (M)
    • Enable installing shortcuts in Trebuchet (M)
    • Tethering Fix (M)
    • Clock: Stopwatch and Countdown (M)
    • (Google Galaxy Nexys) Change USB On-the-Go mount point to /storage (M)
    • Lockscreen Clock alignment (M)
    • Mms: Only display template button if templates defined (M)
    • Mms: Add Template support to QuickMessage pop-up(M)
    • Torch: Modify widget to utilize AOSP power widget UI (M)
    • Variable size pattern in lock screen (M)
    • Advanced Phone Settings (M)
    • Control cursor in text fields with volume rocker (M)
    • Quick message support in SMS (M)
    • Nfc card emulation (M)
    (M) Merged to CM10