Amazon Fire TV nun in Deutschland

Da öffnet man Amazon ohne böse Vorahnung und bekommt einen Hinweis:

Liebe Kunden,

wir freuen uns, Ihnen heute das Amazon Fire TV vorzustellen.

Endlich.

Und noch schöner, bis Montag gibt es das Amazon Fire TV für Amazon Prime Kunden zum Vorzugspreis von 50 Euro statt 99 Euro.

PS: Das Fire TV bietet neuen und existierenden Prime-Mitgliedern noch mehr. Sie können Tausende beliebte Filme und Serienepisoden mit Prime Instant Video sofort unbegrenzt streamen und erhalten in den nächsten fünf Tagen das Fire TV für nur 49 EUR statt regulär 99 EUR.

Zuschlagen lohnt sich also.

Edit: Golem schreibt nun auch darüber

Android Samsung Galaxy S5 mini Osx Mavericks sync

Samsung has recently released a pretty nice Phone, Samsung Galaxy S5 Mini. Water resistent etc etc.

Having that phone after some days I found a serious problem: how can you sync and backup your Samsung Galaxy S5 mini with your Apple Mac running the latest version Apple OSX 10.9 called Mavericks?

Of course you can use File transfer for Android to transfer single files / Folders. But being a iPhone user for quite some time, I was compfortable using Apple iTunes, simple to use, mostly no problems.

So what can you do with your Android Phone? According to Samsung you should use „Kies„. This is also avaliable for Mac.
Starting the Application in latest version:

Kies_error

:-/

So what now?
I found an tutorial: http://www.pavtube.cn/guide/make-kies-work-on-mountain-lion-108.html with a link to an older Version. First I check the linked file if it contains malware, nothing found.
I followed the instructions, started the Application, at least no crash.
Tried to install drivers for the device, but even then, no success for syncing my Android Samsung Galaxy S5 mini.

Last chance: Use Kies for Windows…

Anyone else any suggestions?

Is rooting of the device a possible solution? Maybe a virtual machine within OSX in order to run KIES and then pass USB to the virtual machine?

Is there any software available for syncing your Android device with Linux (Ubuntu, Debian etc.)?

Simsme a secure messenger

(c) Deutsche Post AG

(c) Deutsche Post AG

There have been some ongoing discussions about Facebook Messanger / Whattsapp – security, encryption, privacy etc.
Just a few days ago Facebook made a big move pushing more users to the Facebook Messenger.
And now a new big player enters the field of messengers: Deutsche Post.

They announced a product called „Sims Me“ being a „free and secure messenger on iOS and Android“.

Of course Deutsche Post has some expirience with delivering messages for hundrets of years. But this is not the first App Deutsche Post is providing, officially the apps are developed by „DP IT Brief GmbH“.

Key Features of SimsMe

– End to end encryption
– everything stored on servers
– self destructive messages *
– Ability to connect to your existing contacts (but only by granting SimsMe access to your contacts)
– Confirm users by QR code (same like Threema)
– App is password protects -> if your possword got lost, your app data is gone, you have to reinstall it.

* only for th first million users for free

There is a good FAQ on the page.

Conclusion

The starting phase was a bit to much for Deutsche Post as to much users tried the service, but for now it is okay, some bugs have to been fixed, there is some space for improvement regarding UI, but overall a nice product.

Of course stating „it is end-to-end encrypted“ does not mean anything. I haven’t seen a Audit of the App, even if it would be open source, there is no evidence that the open source code is the code DP IT Brief GmbH is sending to Apple / Google. And there is no way to check wether the app uploaded from DP IT Brief GmbH to Apple / Google is the App that you are downloading to your device (they are in a position to madify apps). That said, having a big company providing an app with end to end encryption is better than using a plain-text or not properly encrypted app. But still, if you want to exchange sensitive stuff, face to face is the way to go.

Download

iOS Itunes download
Andoid Google Playstore

Upload kippo ssh honeypot files to viper

You want to store all your samples catched by your SSH-Kippo Honeypot to your malware repository operated with viper?

Go that way:
Start Viper API:

foo@bar ~/scripts/viper $ ./api.py -H 0.0.0.0 -p 8080

and upload all your samples to viper:

for i in /home/pi/kippo-read-only/dl/*; do curl -F file=@$i -F tags="honeypot" http://covert:8080/file/add; done 

Result:

{
    "message": "added"
}{
    "message": "added"
}

(you might want to modify the dir to your setup)
Why not automate uploading from kippo to viper?
– The „attacker“ might upload more then just malware / samples. You do not want to waste space in your malware zoo with another copy of netcat…

Raspberry Pi ZNC IRC bouncer problem and SSH tunneling into bouncer

Installing Raspberry Pi with a ZNC IRC bouncer and having the following problem:

<*status> Cannot connect to IRC (Cannot assign requested address (Is your IRC server’s host name valid?)). Retrying…

Even when your irc server adress is correct?

Looks like the dev team of znc is aware of the problem and the following will help:

/znc setbindhost 0.0.0.0
/msg *status jump

To make it persistent:

user@host /home/pi $ killall znc
user@host /home/pi $ vi $HOME/.znc/configs/znc.conf
insert:
BindHost = 0.0.0.0 //to every user
Start znx:
user@host /home/pi $ znc

Happy bouncing

Btw. a bouncer is a tool to stay connected to your irc network(s) in order to buffer stuff that is being posted while you are not on your keyboard.
The bouncer will stay on the server and in the channels you configured.
Also private messages will be stored, so you will get them after you return to your keyboard.

The other feature is that the bouncer also is your one and only irc server, so you do not have to connect to multiple server instead just the bouncer, which might be quite handy.

To install ZNC on your raspberry:

user@host /home/pi $ sudo apt-get update
user@host /home/pi $ sudo apt-get upgrade
user@host /home/pi $ sudo apt-get install znc
user@host /home/pi $ znc --makeconf
follow the instructions to configure your Bouncer
Remember Port, username and password!

To connect to your bouncer use:

[ ** ] Try something like this in your IRC client...
[ ** ] /server +$PORT $USERNAME: [ ** ] And this in your browser...
[ ** ] https://:$PORT/

You can also configure the bouncer via web interface, if you have choosen to use SSL remember to connect https:// and not http://

To secure your bouncer it might be worth to activate the module fail2ban within znc, that will ban users that have n wrong login attempts.

Also it might be worth to not bring your bouncer to the public internet, better hide it in your local network and just ssh to your system and forward the port via SSH, so it will be a IRC over SSH tunnel.

Howto:

IRC via SSH tunnel



Enivrenment:
Bouncer:
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN aus (0.00/0/0)
tcp 0 0 0.0.0.0:1025 0.0.0.0:* LISTEN aus (0.00/0/0)

SSH is available from public internet and 1025 is firewalled with DENY

Use the following SSH tunnel:


ssh pi@yourpublicip -L 7778:129.168.1.51:1025

where 1025 is your znc port
7778 will be the port your local system is listening to
So you can then connect to your bouncer using:

/server 127.0.0.1 +7778 username:passwort

Happy remote bouncing!

Bozen – balzano

Balzano Cathedral Bozen Italien

Balzano Cathedral
Bozen
Italien

Botzen is famous for Ötzi, also called the icema, and they are showing the old dead body in a special museum, but expect the museum to be very crowded. The building is not very huge and I think that is the unique selling point, we would have to wait for an hour and is about 9 € per adult (August 2014).
According to the museum web page:

A visit to the museum takes about 1-2 hours.
The interior of the museum is easily accessible to disabled people.

So it is up to you if you want to wait.
The mumy was found 1991 in the Ötztal alps and scientiests assume that he was living around 3300 before christus. Funny fact: he was found by two german tourists, so if you walking around in the alps, watch carefully, you might find Ötzi 2.0.

Besides the museum, Balzano has some nice churches and older buildings that could be worth to check out.

The pedestrian zone is very very nice, lots of small shops with unique stuff (but also the big brands have their space), and you should save around two hours to give it a look.

If you plan to rest for a while have a look for the „Kornplatz“, with some nice wooden seats. Try to be there during market time so you can buy fresh and high quality stuff for a fair amount of money. According to this page the schedule is like following:

Fruits, vegetables, food, clothes, custome jewellery, items for home…

Monday: Piazza Don Bosco
Tuesday: Via Piacenza-Via Aslago
Thursday: Via Rovigo, Piazza Matteotti
Saturday: Piazza della Vittoria and surroundings

For parking you should give this one a try, it is pricewise fair and very central just next to the Balzano Cathedral

Italy:
Parcheggi Italia Spa
10/A Piazza Walther Von Der Vogelweide, Bolzano, BZ 39100
Italien

A little confusing is going back to the autobahn / motorway, if your GPs is recommending Balzano south / Bozen Süd, be careful. We ended on a

A nice spot it the Ponte Talerva, a bridge with some locks as a symbol of love and you can walk to the „Siegesdenkmal“ – „Monumento alla Vittoria“

Balzano love locks on a bridge

Balzano love locks on a bridge

Recommendation!

Here is a new feature, an OpenStreetMap with most of the spots mentioned in the Blogpost.

[osm_map lat=“46.499″ lon=“11.353″ zoom=“15″ width=“600″ height=“450″ marker_file=“http://alexanderjaeger.de/osm/osm_marker_bozen.txt“]

Niagara falls

the_falls

Going To Michigan and or Canada / Toronto the first spot on the todo list should be Niagara falls. 4200 liters per seconds are falling 58 meters and are a tourist magnet category a++.
Around the falls a fluent tourism addicted village has grown and try to get as much money as possible out of the tourist wallet. Hotels, Casinos, Food, Parking spots, souvenirs, boat tours, helicopter tours, behind the falls tours and many more, take what you want.

camera

What amused me very much is the fact that niagara falls looks like „selfie-eldorado“, it’s just amazing how many people using their Smartphones, Tablets, Camcorder or Digicams to capture them selves. Of course most of these pictures do not look that good, some years ago John Doe simply asked Carla Carrot to make a picture of John and John will also take a picture of Carla, tourist interaction at its best, but now, no one is willing to ask, even if that would end up in better pictures.

Things I planned for Niagara falls:
watch the water…

Things I haven’t done in Niagara falls:
helicopter tour (haha, the price for that is just a waste of money)
both any souvenirs or other swag (if you want to buy some souvenirs, go some streets further away from the main roads, their are quite a lot Souvenir-outlets)
eaten anything their, it is just to expensive

Things I would do within the next trip:
actually I did everything I wanted for niagara falls, there is not that much more to do there

Niagara Falls are awesome to watch, Boat tour is okay, but not a must-do, because it is quite expensive for only aprox. 20 minutes

burger_king

The village is just bizarre like a big „funfair“ or Las Vegas style.
Burger King in Frankensteinis very cool..-

outlook

Things I have learned:
– pre buy boat ticket —> will save a lot of time or just do not make the boat trip
– selfie, selfie selfie…
– the closer you go to the falls area, the more the parking will cost you —> spend 5 minutes walking and save 50 %
– stuck in a elevator can be caused by a lady hitting a wrong button but can also be solved by a ladie hitting the right button
– mark your parking sport on GPS!
– never ever rent a car without „cruise control“ when going to Canada or US —> just boring only going straight for hundreds of miles

Viewpicture.de now with HTML5

viewpicture.de my picture page now got an update to replace the simpleviewer gallery with juicebox.

Simpleviewer is using Flash to display images, due to technical capability reasons, flash is not the best choise and it also has security issues, that is why I moved to HTML5.

juicebox.net is offering a good script and App to create galleries.

Hope you enjoy the new page.

Following is a small test with Juicebox WordPress plugin: