Friday, August 1. 2008Linux short tip: Extract icons from exe files
Recently I was asked by a friend for a linux tool to extract ressources from windows exe files, especially icons. He used a windows tool in wine till then.
I said that this shouldn't be so hard and already started writing my own parser (I came to the point where I could extract headers and content separately), when I found that there already is an appropriate tool called wrestool. It's part of the icoutils package. wrestool -o . -x filename.exe will extract all ressources (icons, cursors etc.) to the current directory. Sunday, July 6. 2008ACID3 with webkit-gtk and midori
Seems with the latest versions of webkit-gtk and midori, a long-standing crasher-bug got fixed and it now allows you to run the browser-test ACID3.
I just bumped the webkit-gtk ebuild in Gentoo to the latest snapshot. ACID3 is a test for the standards compliance of modern web browsers. I wrote about ACID2 some years ago. Saturday, July 5. 2008GPN7 and surveillance cameras in OpenStreetMap
It's the second day on the GPN7 (a local hacker event from the Chaos Computer Club Karlsruhe / Entropia).
Yesterday evening I hacked together a map based on openstreetmap showing surveillance cameras: http://osm-cctv.hboeck.de/ As a basis, we could use some data provided by the chaos computer club cologne. I'm working on an importer to get that into the openstreetmap database. Will probably happen within the next days. All cameras tagged with man_made=surveillance in germany.osm are already imported into the overlay. I'll keep a wiki-page up-to-date at: http://wiki.openstreetmap.org/index.php/User:Hanno/CCTV
Posted by Hanno Böck
in Code, Computer culture, English, Politics
at
15:01
| Comments (0)
| Trackback (1)
Defined tags for this entry: c4, ccc, cctv, datenschutz, entropia, gpn, gpn7, openstreetmap, privacy, surveillance, überwachung, überwachungskameras
Wednesday, July 2. 2008Routable OSM maps on Garmin with MapSource / WINE
There are two tools out there for Linux to put Garmin maps (which you can convert from OpenStreetMap Data) on devices, sendmap (proprietary) and qlandkarte (free). Sadly, both don't support my device (Garmin Quest), so I had to find an alternative solution. This should also work with other garmin devices.
After some playing around, I managed to get it running with MapSource on wine. I've used wine 1.1.0 on Gentoo, if you have problems, be sure to get a recent wine version. Steps to do:
Tuesday, June 17. 2008Linux on a Wii
Today I played around a bit with the stuff done by the Wii homebrew/hacking community, which is far more advanced than I had expected.
I had the game Twilight Princess borrowed by a friend. For those who don't know, using this game you can run homebrew software on the Wii without the need of a modchip. The way this works is that first you install a modified savegame for Twilight Princess, afterwards you can install the Homebrew Channel. The Homebrew Channel will stay in the main Wii Menu and you'll be able to run various stuff from there. While looking around the various webpages covering the topic, I found that wiibrew.org is a good place to find documentation and links to the appropriate projects. So look there for the details. The gc-linux project (originally porting linux to the gamecube) has a simple Linux image available. A warning: Nintendo released a new firmware that stops this method to work, so if you wanna have fun, don't update your Wii. And the obvious warning: Everything you do is at your own risk. Update: Seems the Firmware update is no longer a problem.
Posted by Hanno Böck
in Code, Computer culture, English, Gentoo, Linux
at
23:52
| Comments (3)
| Trackback (1)
Thursday, June 12. 20080.01 % of Xorg
Phoronix has just published an article about the development of xorg and they have a statistics of contributors from Distributions.
I'm listed there on the Gentoo part with 0.01 % contributions to Xorg. Yay! Tuesday, June 10. 2008OpenStreetMap on RTL
Today we met a team from the german television station RTL.
They made some recordings in Bad Cannstatt and in a forest near Murrhardt. It will probably come in the »Nachtjournal«, we don't know a date yet. Hopefully the recording will be available online as well. Update: You can now download Nachtjournal from 3th July.
Posted by Hanno Böck
in Computer culture, Copyright, English, Life
at
20:28
| Comments (4)
| Trackbacks (0)
Monday, May 26. 2008OpenStreetMap in »Der Spiegel«
»Der Spiegel« is (cited from Wikipedia) Europe's biggest and most influential weekly magazine. In today's edition, there's a three page article about OpenStreetMap.
I wrote a while back that we met with two journalists and started mapping in the small village Kaisersbach. Last week, there was a report in WDR (television), so we're raising interest in the mainstream media. Update: The article is now available online.
Posted by Hanno Böck
in Computer culture, Copyright, English, Life
at
13:34
| Comments (2)
| Trackbacks (0)
Sunday, May 25. 2008OpenStreetMap at the Open Source Expo in Karlsruhe
Today and tomorrow, we're presenting the OpenStreetMap-project at the Open Source Expo (or OpenExpo) in Karlsruhe.
I made some pictures, more will follow. Sadly, we didn't get a talk slot for OpenStreetMap.
Posted by Hanno Böck
in Computer culture, Copyright, English, Life, Linux
at
13:55
| Comments (0)
| Trackbacks (0)
Friday, May 16. 2008Tic Tac Toe over Jabber
One of the missing features in jabber most commercial instant messaging systems have are small games one can easily play over them. Till now, because just yesterday, gajim got support for Tic Tac Toe over jabber.
Which reminds me tic tac toe was one of the first »programming projects« I did in the past, some day I'll have to dig out the sources and publish them. My next wish would be something like tetrinet over jabber. Gajim-svn ebuild is in my overlay at http://svn.hboeck.de/overlay/.
Posted by Hanno Böck
in English, Gentoo, Linux, Retro Games
at
00:45
| Comments (2)
| Trackbacks (0)
Tuesday, April 29. 2008Hash-collissions in real world scenarios
I just read an article about the recent wordpress vulnerability (if you're running wordpress, please update to 2.5.1 NOW), one point raised my attention: The attack uses MD5-collisions.
I wrote some articles about hash collisions a while back. Short introduction: A cryptographic hash-function is a function where you can put in any data and you'll get a unique, fixed-size value. »unique« in this case scenario means that it's very hard to calculate two different strings matching to the same hash value. If you can do that, the function should be considered broken. The MD5 function got broken some years back (2004) and it's more or less a question of time when the same will happen to SHA1. There have been scientific results claiming that an attacker with enough money could easily create a supercomputer able to create collisions on SHA1. The evil thing is: Due to the design of both functions, if you have one collision, you can create many more easily. Although those facts are well known, SHA1 is still widely used (just have a look at your SSL connections or at the way the PGP web of trust works) and MD5 isn't dead either. The fact that a well-known piece of software got issues depending on hash collisions should raise attention. Pretty much all security considerations on cryptographic protocols rely on the collision resistance of hash functions. The NIST plans to define new hash functions until 2012, until then it's probably a safe choice to stick with SHA256 or SHA512.
Posted by Hanno Böck
in Code, Cryptography, English, Security
at
21:44
| Comments (3)
| Trackbacks (0)
Wednesday, April 23. 2008Free software for your canon camera (CHDK)
I own this Canon IXUS 50 camera for more than two years now. It's a fine device, but it has some small lacking features where I often asked myself if this could be enhanced with a new firmware.
Until recently, when I read about the CHDK project: It's a kind of firmware enhancements for Canon cameras. It doesn't fully replace the real firmware, but adds additional stuff (I must say I don't fully understand what they do). And now they have an experimental port for the SD400, which is built into my cam. The first big killerfeature one will notice is that the cam now has a battery monitor, which is the most obvious lacking feature of the original firmware. One more thing I always would've liked for my cam is a better video compression. The video quality is quite good, but the cam just can do mjpeg, which leads to big files and limits your maximum video size to about 20 minutes. It seems CHDK has some better compression video mode, but I'll have to dig deeper into it. Beside, I can now record raw images. So there's lot's of cool stuff to play with. Monday, April 21. 2008gajim with otr encryption
In the instant messaging world, encryption is a bit of a problem. There is no single standard that all clients share, mostly two methods of encryption are out there: pgp over jabber (as defined in the xmpp standard) and otr.
Most clients only support either otr (pidgin, adium) or pgp (gajim, psi), for a long time I was looking for a solution where both methods work. psi has otr-patches, but they didn't work when I tried them. kopete also has an otr-plugin, but I've not tested that yet. Today I found that there is an otr-branch of gajim, which is my everyday client, so this would be great. As you can see on the picture, it seems to work on a connection with an ICQ user using pidgin. I've created some ebuilds in my overlay (the code is stored in bazaar, I've copied the bzr eclass from the desktop effects overlay): svn co https://svn.hboeck.de/overlay ping with IDN
Today I asked myself if I can ping an IDN host.
My default ping (iputils on linux) couldn't do it, but I found some patches out there, e.g. from Fedora. Thanks to SpanKY, we now also have IDN-enabled ping in Gentoo (he used a modified patch).
Posted by Hanno Böck
in Computer culture, English, Gentoo, Linux
at
01:26
| Comments (2)
| Trackbacks (0)
Thursday, April 10. 2008Wordpress mass hacks for pagerank
Today heise security brought a news that a growing number of old wordpress installations get's misused by spammers to improve their pagerank. I've more or less waited for something like that, because it's quite obvious: If you have an automated mechanism to use security holes in a popular web application, you can search for them with a search engine (google, the mighty hacktool) and usually it's quite trivial to detect both application and version.
This isn't a wordpress-thing only, this can happen to pretty much every widespread web application. Wordpress had a lot of security issues recently and is very widespread, so it's an obvious choice. But other incidents like this will follow and future ones probably will affect more different web applications. The conclusion is quite simple: If you're installing a web application yourself, you are responsible for it! You need to look for security updates and you need to install them, else you might be responsible for spammers actions. And there's no »nobody is interested in my little blog«-excuse, as these are not attacks against an individual page, but mass attacks. For administrators, I wrote a little tool a while back, where I had such incidents in mind: freewvs, it checks locally on the filesystem for web applications and knows about vulnerabilities, so it'll tell you which web applications need updates. It already detects a whole bunch of apps, while more is always better and if you'd like to help, I'd gladly accept patches for more applications (the format is quite simple). With it, server administrators can check the webroots of thier users and nag them if they have outdated cruft laying around.
Posted by Hanno Böck
in Computer culture, English, Linux, Security
at
02:44
| Comment (1)
| Trackbacks (0)
« previous page
(Page 11 of 23, totaling 333 entries)
» next page
|
About meYou can find my web page with links to my work as a journalist at https://hboeck.de/.
You may also find my newsletter about climate change and decarbonization technologies interesting. Hanno Böck mail: hanno@hboeck.de Hanno on Mastodon Impressum Show tagged entries |