Categories
Archives
- April 2014
- March 2014
- July 2013
- January 2013
- July 2012
- June 2012
- May 2012
- January 2012
- December 2011
- October 2011
- June 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- July 2010
- May 2010
- April 2010
- November 2009
- March 2009
- July 2008
- June 2008
- May 2008
- April 2008
- April 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- January 2004
Category Archives: linux
Motorola Xoom: Review from an early adopter
Yesterday morning I received the wifi-only version of the 10.1-inch Android tablet Motorola Xoom. I bought it in USA because it wasn’t yet available in Europe when I purchased it. I choose the wifi-only version because of the following main … Continue reading
WiFite patch for WLAN/JAZZTEL networks WEP & WPA cracking
I have made a quick patch for wifite r67, which adds support to crack WLAN and JAZZTEL networks in Spain, both WEP and WPA versions. The WPA keys are computed statically using the already known algorithms and the guessed key … Continue reading
4sqcheat – automatic foursquare checkin
This is a quick script I wrote some time ago to steal the mayorship from a friend on a concrete foursqure venue. You can launch it from cron to steal a mayorship or launch it manually get any impossible badge … Continue reading
exif2maps – get google maps link from picture exif data
A quick shell script to generate a google maps link from geo-location data found inside a picture exif tags. Usage example: $ ./exif2maps.sh la-foto-3.jpg http://maps.google.com/maps?q=40.9673333,-5.6058333 Download: exif2maps.sh
Posted in linux, minipost
Tagged exif, geolocation, google, location, maps, photo, picture
Leave a comment
From APK to readable java source code in 3 easy steps
Android applications are packed inside a APK file, which is just a ZIP file containing among other things a compact Dalvik Executable (.dex) file. First step is to extract the “classes.dex” file from the APK: $ unzip program.apk classes.dex Archive: … Continue reading
Edit image resources inside an android APK file
Today I had to change some image resources in a APK file, the process is easy once you know it, so I just post it here for future reference: First use the tool “aapt” from the android SDK to list … Continue reading
[tip] generate transparent text images using imagemagick
To generate 100 images, containing numbers 0 to 100: for f in `seq 0 100` ; do convert -size 25×25 xc:transparent -font /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Bold.ttf \ -fill $COLOR -pointsize 19 -draw “text 1,20 ‘$f'” res/drawable/notify_$f.png done
[tip] Change colors using imagemagick
This will replace all black color for white color: convert input.png -fill white -opaque black output.png
Algoritmo para generar claves WPA de las redes WLAN_XXXX y JAZZTEL_XXXX
El 15 de Diciembre de 2010 la página de SeguridadWireless publico un servicio que calculaba las claves WPA de los SSID WLAN_XXXX y JAZZTEL_XXX screenshot aqui. No publicaron el código, y al cabo de pocas horas la página dejó de … Continue reading
Posted in linux, wireless
Tagged crack, jazztel, jazztel_xxx, telefonica, wifi, wlan, wlan_xxxx, wpa
21 Comments
Generic load balancer for multiple WAN links
So you have two or more ADSL lines and want to use them all? … or maybe you’re stealing your neighbor’s wifi and you have more than one network available? … or you have cloned your SIM card and want … Continue reading