Battery – Jupiter Broadcasting https://www.jupiterbroadcasting.com Open Source Entertainment, on Demand. Wed, 20 Oct 2021 03:12:16 +0000 en-US hourly 1 https://wordpress.org/?v=5.5.3 https://original.jupiterbroadcasting.net/wp-content/uploads/2019/04/cropped-favicon-32x32.png Battery – Jupiter Broadcasting https://www.jupiterbroadcasting.com 32 32 Pi for the People | LINUX Unplugged 428 https://original.jupiterbroadcasting.net/146482/pi-for-the-people-linux-unplugged-428/ Tue, 19 Oct 2021 19:00:00 +0000 https://original.jupiterbroadcasting.net/?p=146482 Show Notes: linuxunplugged.com/428

The post Pi for the People | LINUX Unplugged 428 first appeared on Jupiter Broadcasting.

]]>

Show Notes: linuxunplugged.com/428

The post Pi for the People | LINUX Unplugged 428 first appeared on Jupiter Broadcasting.

]]>
How Linux Got to Mars | LINUX Unplugged 396 https://original.jupiterbroadcasting.net/144432/how-linux-got-to-mars-linux-unplugged-396/ Tue, 09 Mar 2021 17:00:00 +0000 https://original.jupiterbroadcasting.net/?p=144432 Show Notes: linuxunplugged.com/396

The post How Linux Got to Mars | LINUX Unplugged 396 first appeared on Jupiter Broadcasting.

]]>

Show Notes: linuxunplugged.com/396

The post How Linux Got to Mars | LINUX Unplugged 396 first appeared on Jupiter Broadcasting.

]]>
Unix Security Trifecta | TechSNAP 292 https://original.jupiterbroadcasting.net/104601/unix-security-trifecta-techsnap-292/ Thu, 10 Nov 2016 08:48:15 +0000 https://original.jupiterbroadcasting.net/?p=104601 RSS Feeds: HD Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed Become a supporter on Patreon: Show Notes: Unix Trifecta — Patch Your Shit This week saw the trifecta, critical vulnerabilities in 3 of the most important and widely used server applications CVE-2016-8610 […]

The post Unix Security Trifecta | TechSNAP 292 first appeared on Jupiter Broadcasting.

]]>
RSS Feeds:

HD Video Feed | Mobile Video Feed | MP3 Audio Feed | Ogg Audio Feed | iTunes Feed | Torrent Feed

Become a supporter on Patreon:

Patreon

Show Notes:

Unix Trifecta — Patch Your Shit

  • This week saw the trifecta, critical vulnerabilities in 3 of the most important and widely used server applications
  • CVE-2016-8610 – OpenSSL: A remote attacker who can initiate handshakes with an OpenSSL based server can cause the server to consume a lot of computation power with very little bandwidth usage, and may be able to use this technique in a leveraged Denial of Service attack.
  • The flaw is in the way OpenSSL handles “SSL Alerts”. The SSL alert protocol is a way to communicate problems within a SSL/TLS session. Due to improper handling of alert packets, OpenSSL would consume an excessive amount of CPU time processing undefined alert messages.
    • CVE-2016-8864 – Bind: A remote attacker who could cause a server to make a query deliberately chosen to trigger the failed assertions could cause named(8) to stop, resulting in a Denial of Service condition to its clients.
    • A defect in BIND’s handling of responses containing a DNAME answer could cause a resolver to exit after encountering an assertion failure in db.c or resolver.c.
    • CVE-2016-8858 – OpenSSH: A remote attacker may be able to cause a SSH server to allocate an excessive amount of memory. Note that the default MaxStartups setting on FreeBSD will limit the effectiveness of this attack.
  • During the SSH handshake procedure, the client and server exchanges the supported encryption, MAC and compression algorithms along with other information to negotiate algorithms for initial key exchange, with a message named SSH_MSG_KEXINIT.
  • When processing the SSH_MSG_KEXINIT message, the server could allocate up to a few hundreds of megabytes of memory per each connection, before any authentication take place.
  • Patches for most OSes should be out by now, make sure you install them.

LessPass, an open source, storage-less password manager? Or is it…

  • “Managing your Internet passwords is not easy. You probably use a password manager to help you. The system is simple, the tool generates random passwords whenever you need them and save them into a file protected with a strong password. This system is very robust, you only need to remember one password to rule them all! Now you have a unique password for each site on the Internet.”
  • But, there are some shortcomings to that type of password manager
  • How do I synchronize this file on all my devices?
  • How do I access a password on my parents’ computer without installing my password manager?
  • How do I access a password on my phone, without any installed app?
  • To solve this, LessPass does it differently
  • “The system uses a pure function, i.e. a function that given the same parameters will always give the same result. In our case, given a login, a master password, a site and options it will returns a unique password”
  • “No need to save your passwords in an encrypted file. You just need to access the tool to recalculate a password from information that you know (mostly the login)”
  • There are some issues though.
    • Some sites have different password complexity requirements, such as banks that limit the length of your password, or require a PIN that is all digits
    • Some sites obviously do not hash passwords correctly, and do not allow some characters
    • What if you want to, or need to, change your password?
  • LessPass has a solution for all of these, where you specify “password profile”, to remember the different complexity settings to generate the valid password
  • To manage to change the password, there is also a counter, that starts at 1, and you increment to get a different password.
  • Of course now, you have to remember: your login, your master password, the password complexity profile for each site, and how many times you have changed your password on that site
  • So, they have a “connected” version, that remembers each site, your login, the password profile, and your password change counter.
  • There are obviously some privacy concerns, and security concerns here.
  • How do you restrict access in the connected version, with a username and password? Is that password the same or different from your master password. Is your profile data encrypted per user?
  • Of course, being an open source project, there is the option to self-host, which eliminates a number of those concerns
  • “You can host your own LessPass database if you do not want to use the official one. The requirement for self-hosting is to have docker and docker-compose installed on your machine.”
  • The fact that the installation instructions are curl | bash (written the other way around, so that when you stick sudo in front of it it works), does raise some other concerns
  • This leaves a few problems:
    • You can never change your master password, as it will effectively change all of your passwords
    • It is still technically possible for someone to brute force your master password. Each attempt will require them to do the full PBKDF2 run, but 8192 rounds will take only a small fraction of a second, and it can be parallelized quite well. If someone does compromise your master password (via brute force, or with a keylogger, or whatever), they have access to all of your passwords, but worse, they even have access to your ‘new’ passwords, if you change your password, it just changes the ‘count’ parameter, so I could generate your next 10 gmail passwords and keep them for later.
    • The key-derivation seems weak, 8192 rounds of PBKDF2 is likely not enough. LastPass uses 100,000 rounds for its server-side key-derivation. FreeBSD’s GELI disk encryption uses a number of rounds that will take approximately 2 seconds, which on modern machines is over 1 million rounds. The issue is that changing this number in the future will change all of your passwords. At a minimum, it should be part of the password profile, so you can select a different value for each site, so you can change the default for new sites in the future, and increase the strength of the password for one site by changing the password.
    • LessPass cannot deal with SSO (Single Sign On). There are a number of sites for which I have the same password, because they all authenticate against the same LDAP database (or ActiveDirectory). LessPass ONLY allows you to use its derived passwords, which might not always work.
  • There are definitely some interesting aspects to LessPass, especially being able to self host, but, I don’t think I’ll be switching to it.

A very valuable vulnerability

  • It all started with a facebook post by Colin Percival: “I think I just accidentally exploited a “receive arbitrarily large amounts of money” security vulnerability. Oops.”
  • Colin Percival is a security and cryptography expert, and a former FreeBSD Security Officer
  • Colin’s day job is running Tarsnap – backups for the truly paranoid.
  • To accept payments for his business, he uses Stripe – a credit card processing service, which also allows him to accept bitcoins
  • “While I very firmly wear a white hat, it is useful to be able to consider things from the perspective of the bad guys, in order to assess the likelihood of a vulnerability being exploited and its potential impact. For the subset of bad guys who exploit security vulnerabilities for profit — as opposed to selling them to spy agencies, for example — I imagine that there are some criteria which would tend to make a vulnerability more valuable:”
    • the vulnerability can be exploited remotely, over the internet;
  • the attack cannot be blocked by firewalls;
    • the attack can be carried out without any account credentials on the system being attacked;
    • the attack yields money (as opposed to say, credit card details which need to be separately monetized);
    • once successfully exploited, there is no way for a victim to reverse or mitigate the damage; and
    • the attack can be performed without writing a single line of code.
  • “Much to my surprise, a few weeks ago I stumbled across a vulnerability satisfying every one of these criteria.”
  • “The vulnerability — which has since been fixed, or else I would not be writing about it publicly — was in Stripe’s bitcoin payment functionality. Some background for readers not familiar with this: Stripe provides payment processing services, originally for credit cards but now also supporting ACH, Apple Pay, Alipay, and Bitcoin, and was designed to be the payment platform which developers would want to use; in very much the way that Amazon fixed the computing infrastructure problem with S3 and EC2 by presenting storage and compute functionality via simple APIs, Stripe fixed the “getting money from customers online” problem. I use Stripe at my startup, Tarsnap, and was in fact the first user of Stripe’s support for Bitcoin payments: Tarsnap has an unusually geeky and privacy-conscious user base, so this functionality was quite popular among Tarsnap users.”
  • “Despite being eager to accept Bitcoin payments, I don’t want to actually handle bitcoins; Tarsnap’s services are priced in US dollars, and that’s what I ultimately want to receive. Stripe abstracts this away for me: I tell Stripe that I want $X, and it tells me how many bitcoins my customer should send and to what address; when the bitcoin turns up, I get the US dollars I asked for. Naturally, since the exchange rate between dollars and bitcoins fluctuates, Stripe can’t guarantee the exchange rate forever; instead, they guarantee the rate for 10 minutes (presumably they figured out that the exchange rate volatility is low enough that they won’t lose much money over the course of 10 minutes). If the “bitcoin receiver” isn’t filled within 10 minutes, incoming coins are converted at the current exchange rate.”
  • “For a variety of reasons, it is sometimes necessary to refund bitcoin transactions: For example, a customer cancelling their order; accidentally sending in the wrong number of bitcoins; or even sending in the correct number of bitcoins, but not within the requisite time window, resulting in their value being lower than necessary. Consequently, Stripe allows for bitcoin transactions to be refunded — with the caveat that, for obvious reasons, Stripe refunds the same value of bitcoins, not the same number of bitcoins. (This is analogous to currency exchange issues with credit cards — if you use a Canadian dollar credit card to buy something in US dollars and then get a refund later, the equal USD amount will typically not translate to an equal number of CAD refunded to your credit card.)”
  • The vulnerability lay in the exchange rate handling. As I mentioned above, Stripe guarantees an exchange rate for 10 minutes; if the requisite number of bitcoins arrive within that window, the exchange rate is locked in. So far so good; but what Stripe did not intend was that the exchange rate was locked in permanently — and applied to any future bitcoins sent to the same address. This made a very simple attack possible:
    • Pay for something using bitcoin.
    • Wait until the price of bitcoin drops.
    • Send more bitcoins to the address used for the initial payment.
    • Ask for a refund of the excess bitcoin.
  • “Because the exchange rate used in step 3 was the one fixed at step 1, this allowed for bitcoins to be multiplied by the difference in exchange rates; if step 1 took place on July 2nd and steps 3/4 on August 2nd, for example, an arbitrary number of bitcoins could be increased by 30% in a matter of minutes. Moreover, the attacker does not need an account with Stripe; they merely need to find a merchant which uses Stripe for bitcoin payments and is willing to click “refund payment” (or even better, is set up to automatically refund bitcoin overpayments).”
  • “Needless to say, I reported this to Stripe immediately. Fortunately, their website includes a GPG key and advertises a vulnerability disclosure reward (aka. bug bounty) program; these are two things I recommend that every company does, because they advertise that you take security seriously and help to ensure that when people stumble across vulnerabilities they’ll let you know. (As it happens, I had Stripe security’s public GPG key already and like them enough that I would have taken the time to report this even without a bounty; but it’s important to maximize the odds of receiving vulnerability reports.) Since it was late on a Friday afternoon and I was concerned about how easily this could be exploited, I also hopped onto Stripe’s IRC channel to ask one of the Stripe employees there to relay a message to their security team: “Check your email before you go home!””
  • “Stripe’s handling of this issue was exemplary. They responded promptly to confirm that they had received my report and reproduced the issue locally; and a few days later followed up to let me know that they had tracked down the code responsible for this misbehaviour and that it had been fixed. They also awarded me a bug bounty — one significantly in excess of the $500 they advertise, too.”
  • “As I remarked six years ago, Isaac Asimov’s remark that in science “Eureka!” is less exciting than “That’s funny…” applies equally to security vulnerabilities. I didn’t notice this issue because I was looking for ways to exploit bitcoin exchange rates; I noticed it because a Tarsnap customer accidentally sent bitcoins to an old address and the number of coins he got back when I clicked “refund” was significantly less than what he had sent in. (Stripe has corrected this “anti-exploitation” of the vulnerability.) It’s important to keep your eyes open; and it’s important to encourage your customers to keep their eyes open, which is the largest advantage of bug bounty programs — and why Tarsnap’s bug bounty program offers rewards for all bugs, not just those which turn out to be vulnerabilities.”
  • “And if you have code which handles fluctuating exchange rates… now might be a good time to double-check that you’re always using the right exchange rates.”
  • A very interesting attack, that was only found because someone accidentally did the wrong thing

Feedback:


Round Up:


The post Unix Security Trifecta | TechSNAP 292 first appeared on Jupiter Broadcasting.

]]>
DRM Shame and New Rig Troubles | Rover Log 16 https://original.jupiterbroadcasting.net/101437/drm-shame-and-new-rig-troubles-rover-log-16/ Mon, 25 Jul 2016 14:36:09 +0000 https://original.jupiterbroadcasting.net/?p=101437 Our road trip to SCALE14x in Pasadena gets a bit exciting when we move into our new home, a 37 foot Class A RV while on the road. Plus a behind the scenes look at attending SCALE, and thoughts on Cory Doctorow’s DRM talk. Technical challenges, new lessons, and good friends. Note: Footage is from […]

The post DRM Shame and New Rig Troubles | Rover Log 16 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Our road trip to SCALE14x in Pasadena gets a bit exciting when we move into our new home, a 37 foot Class A RV while on the road. Plus a behind the scenes look at attending SCALE, and thoughts on Cory Doctorow’s DRM talk.

Technical challenges, new lessons, and good friends.

Note: Footage is from January 2016.

The post DRM Shame and New Rig Troubles | Rover Log 16 first appeared on Jupiter Broadcasting.

]]>
Faux Use Protection Program | TTT 223 https://original.jupiterbroadcasting.net/90586/faux-use-protection-program-ttt-223/ Fri, 20 Nov 2015 11:31:41 +0000 https://original.jupiterbroadcasting.net/?p=90586 We look at the hard numbers of the biggest sector in the tech industry, have a skeptical discussion around YouTube coming to the aide content creators & debate Google+’s new UI design. Then we fail to make even the most obvious Kickstarter sound compelling & wrap it all up with a little technical disaster vamping. […]

The post Faux Use Protection Program | TTT 223 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

We look at the hard numbers of the biggest sector in the tech industry, have a skeptical discussion around YouTube coming to the aide content creators & debate Google+’s new UI design.

Then we fail to make even the most obvious Kickstarter sound compelling & wrap it all up with a little technical disaster vamping.

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

— Episode Links —

The post Faux Use Protection Program | TTT 223 first appeared on Jupiter Broadcasting.

]]>
LogMeIn to LastPass | TTT 217 https://original.jupiterbroadcasting.net/88911/logmein-to-lastpass-ttt-217/ Fri, 09 Oct 2015 10:36:51 +0000 https://original.jupiterbroadcasting.net/?p=88911 LastPass gets bought, FireFox loves Flash long time, just not your plugins, good iPhone vs bad iPhone & why the rest of the world laughs at the state of the US’ mobile payments. Direct Download: MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube RSS Feeds: MP3 Feed | OGG […]

The post LogMeIn to LastPass | TTT 217 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

LastPass gets bought, FireFox loves Flash long time, just not your plugins, good iPhone vs bad iPhone & why the rest of the world laughs at the state of the US’ mobile payments.

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

— Episode Links —

The post LogMeIn to LastPass | TTT 217 first appeared on Jupiter Broadcasting.

]]>
Trailer Picked Up and Brake Controller Installed | Rover Log #2 https://original.jupiterbroadcasting.net/88271/trailer-picked-up-and-brake-controller-installed-rover-log-2/ Fri, 04 Sep 2015 17:51:17 +0000 https://original.jupiterbroadcasting.net/?p=88271 Heading north to get the brake controller installed for the trailer & things go really well! I ended up taking the trailer with me & I give you a first peek at the new digs before we move it & make a mess! Help us with the adventure: Road Trip Wishlist: https://bit.ly/jbroadtrip Support the network […]

The post Trailer Picked Up and Brake Controller Installed | Rover Log #2 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Heading north to get the brake controller installed for the trailer & things go really well! I ended up taking the trailer with me & I give you a first peek at the new digs before we move it & make a mess!

Help us with the adventure:

Road Trip Wishlist: https://bit.ly/jbroadtrip

Support the network on Patreon: https://www.patreon.com/jupitersignal

The post Trailer Picked Up and Brake Controller Installed | Rover Log #2 first appeared on Jupiter Broadcasting.

]]>
Happy Little Accidents | TTT 205 https://original.jupiterbroadcasting.net/86732/happy-little-accidents-ttt-205/ Thu, 20 Aug 2015 09:34:46 +0000 https://original.jupiterbroadcasting.net/?p=86732 Freshly back from LinuxCon we update you on the stories of the day, the big players pushing Flash out the door & how forgetful scientists accidentally quadruple lithium-ion battery lifespan. Direct Download: MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube RSS Feeds: MP3 Feed | OGG Feed | iTunes […]

The post Happy Little Accidents | TTT 205 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Freshly back from LinuxCon we update you on the stories of the day, the big players pushing Flash out the door & how forgetful scientists accidentally quadruple lithium-ion battery lifespan.

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

The post Happy Little Accidents | TTT 205 first appeared on Jupiter Broadcasting.

]]>
Solar Freaking Tents! | Tech Talk Today 179 https://original.jupiterbroadcasting.net/83307/solar-freaking-tents-tech-talk-today-179/ Fri, 05 Jun 2015 10:42:20 +0000 https://original.jupiterbroadcasting.net/?p=83307 Preparing for a camping trip in the woods has never been more stressful, we debate how much tech to take. Plus the US suspects China breached about 4 million government records, Steam Machines get a ship date & more! Direct Download: MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube […]

The post Solar Freaking Tents! | Tech Talk Today 179 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Preparing for a camping trip in the woods has never been more stressful, we debate how much tech to take. Plus the US suspects China breached about 4 million government records, Steam Machines get a ship date & more!

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

The post Solar Freaking Tents! | Tech Talk Today 179 first appeared on Jupiter Broadcasting.

]]>
The Forced Touchables | Tech Talk Today 155 https://original.jupiterbroadcasting.net/80122/the-forced-touchables-tech-talk-today-155/ Wed, 08 Apr 2015 09:57:52 +0000 https://original.jupiterbroadcasting.net/?p=80122 Apple Watch reviews are hitting the web & we’ll give you a quick meta-roundup of the Internet’s opinion of Apple’s new wearable. Plus the Android App that truly saves battery life, Popcorn Time expands & more! Direct Download: MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube RSS Feeds: MP3 […]

The post The Forced Touchables | Tech Talk Today 155 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Apple Watch reviews are hitting the web & we’ll give you a quick meta-roundup of the Internet’s opinion of Apple’s new wearable.

Plus the Android App that truly saves battery life, Popcorn Time expands & more!

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

Apple Watch Review Roundup: The ‘World’s Best Smartwatch’, But ‘Not For Everyone’

Apple has given members of the media several hands-on experiences with the Apple Watch following its special events, but ahead of Apple Watch pre-orders, select sites have been able to get a much closer look at the device. Apple has provided a handful of publications with Apple Watch review units, giving them a chance to spend multiple days with the watch, and they’ve now shared their opinions in reviews published today.

Stop Android Lollipop from killing your battery – TechRepublic

I was wrong. As is the case with many upgrades, I quickly ran into a troubling side effect: significant battery issues.

Greenify help you identify and put the misbehaving apps into hibernation when you are not using them, to stop them from lagging your device and leeching the battery, in an unique way! They can do nothing without explicit launch by you or other apps, while still preserving full functionality when running in foreground, similar to iOS apps!

Popcorn Time’s Launched on iOS

While Popcorn Time has been available on Android for some time, it’s now arrived on iOS with an installer that can put the app on non-jailbroken devices. It’s likely that it uses a test key from an enterprise device to achieve that.

The new development could cause serious headaches for both Apple and legal streaming services like Netflix. In fact, Netflix itself singled out Popcorn Time as a serious competitor in a shareholder letter earlier this year.

Heartbleed One Year Later: Has Anything Changed? – Slashdot

It was on April 7, 2014 that the CVE-2014-0160 vulnerability titled “TLS heartbeat read overrun” in OpenSSL was first publicly disclosed — but to many its a bug known simply as Heartbleed. A new report from certificate vendor Venafi claims that 76% of organizations are still at risk, though it’s a statistic that is contested by other vendors as well as other statistics. Qualys’ SSL Pulse claims that only 0.3 percent of sites are still at risk. Whatever the risk is today, the bottom line is that Heartbleed did change the security conversation — but did it change it for the better or the worse?

The post The Forced Touchables | Tech Talk Today 155 first appeared on Jupiter Broadcasting.

]]>
Ubuntu Calling | LINUX Unplugged 79 https://original.jupiterbroadcasting.net/77087/ubuntu-calling-lup-79/ Tue, 10 Feb 2015 18:02:52 +0000 https://original.jupiterbroadcasting.net/?p=77087 The first Ubuntu phone goes on sale tomorrow & we ask all the interesting questions you might have been wondering. The details on the launch of the phone, some of the great apps & what’s still missing. Plus the new Raspberry Pi hates being flashed & we read a quick batch of great emails. Thanks […]

The post Ubuntu Calling | LINUX Unplugged 79 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

The first Ubuntu phone goes on sale tomorrow & we ask all the interesting questions you might have been wondering. The details on the launch of the phone, some of the great apps & what’s still missing.

Plus the new Raspberry Pi hates being flashed & we read a quick batch of great emails.

Thanks to:

Ting


DigitalOcean


Linux Academy

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Torrent Feed | WebM Torrent Feed

Become a supporter on Patreon:

Foo

Show Notes:

Pre-Show:

FU:


Bq Ubuntu Phone Goes on Sale Next Week at €169, Meizu Device Coming Soon – OMG! Ubuntu!

As we shared towards the end of last year, the Bq Aquaris E4.5 Ubuntu Edition handset will go on sale in Europe from next week priced at €169.

Bq has you covered with an exclusive ‘Ubuntu Edition’ of their popular Duo case accessory designed especially for the Aquaris E4.5, which is being made available for purchase alongside the handset.

The BQ Aquaris E4.5 Ubuntu edition is the first phone that will let phone fans snap up an Ubuntu-running device for themselves. Best known as an open-source operating system for computers, Ubuntu is expanding to phones as part of a plan that will see the software power everything from TVs to drones. And to kick things off, the BQ phone will be up for grabs between 9 a.m. and 6 p.m. (CET) on Wednesday 11 February.

Ubuntu Touch Apps

Browse, download, and search apps from the Ubuntu click appstore – appstore.bhdouglass.com.

While this app uses the Ubuntu click appstore api, it caches images and data to be kind to the api.

Runs Linux from the people:

  • Send in a pic/video of your runs Linux.
  • Please upload videos to YouTube and submit a link via email or the subreddit.

New Shows : Tech Talk Today (Mon – Thur)

Support Jupiter Broadcasting on Patreon

Post-Show

The post Ubuntu Calling | LINUX Unplugged 79 first appeared on Jupiter Broadcasting.

]]>
Two Waze Street | Tech Talk Today 122 https://original.jupiterbroadcasting.net/76287/two-waze-street-tech-talk-today-122/ Tue, 27 Jan 2015 11:03:58 +0000 https://original.jupiterbroadcasting.net/?p=76287 Hypocrisy abounds this episode as new methods of tracking citizens by governments have been revealed & the campaign to shut down cop reporting on Waze has gone public. Plus the amazing mesh network in Cuba, bullet proof vest for batteries in a smartphone & much more! Direct Download: MP3 Audio | OGG Audio | Video […]

The post Two Waze Street | Tech Talk Today 122 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Hypocrisy abounds this episode as new methods of tracking citizens by governments have been revealed & the campaign to shut down cop reporting on Waze has gone public.

Plus the amazing mesh network in Cuba, bullet proof vest for batteries in a smartphone & much more!

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Video Feed | Torrent Feed

Become a supporter on Patreon

Foo

Show Notes:

France Seeks to Sanction Web Companies for Posts Pushing Terror

President Francois Hollande said Tuesday in Paris the government will present a draft law next month that makes Internet operators “accomplices” of hate-speech offenses if they host extremist messages.

Researchers Tie Regin Malware To NSA, Five Eyes Intel Agencies

Researchers at Kaspersky Lab have discovered shared code and functionality between the Regin malware platform and a similar platform described in a newly disclosed set of Edward Snowden documents 10 days ago by Germany’s Der Spiegel. The link, found in a keylogger called QWERTY allegedly used by the so-called Five Eyes, leads them to conclude that the developers of each platform are either the same, or work closely together. “Considering the extreme complexity of the Regin platform and little chance that it can be duplicated by somebody without having access to its source codes, we conclude the QWERTY malware developers and the Regin developers are the same or working together,” wrote Kaspersky Lab researchers Costin Raiu and Igor Soumenkov today in a published report.

Police Organization Wants Cop-Spotting Dropped From Waze App

“The Register reports on a request from the US National Sheriffs’ Association, which “wants Google to block its crowd-sourced traffic app Waze from being able to report the position of police officers, saying the information is putting officer’s lives at risk.” From the article: “‘The police community needs to coordinate an effort to have the owner, Google, act like the responsible corporate citizen they have always been and remove this feature from the application even before any litigation or statutory action,’ AP reports Sheriff Mike Brown, the chairman of the NSA’s technology committee, told the association’s winter conference in Washington….Brown called the app a ‘police stalker,’ and said being able to identify where officers were located could put them at personal risk. Jim Pasco, executive director of the Fraternal Order of Police, said his members had concerns as well. ‘I can think of 100 ways that it could present an officer-safety issue,’ Pasco said. ‘There’s no control over who uses it. So, if you’re a criminal and you want to rob a bank, hypothetically, you use your Waze.'”

DEA cameras tracking hundreds of millions of car journeys across the US

A U.S. Drug Enforcement Administration program to keep tabs on cars close to the U.S.-Mexican border has been gradually expanded nationwide and is regularly used by other law enforcement agencies in their hunt for suspects.

The extent of the system, which is said to contain hundreds of millions of records on motorists and their journeys, was disclosed in documents obtained by the American Civil Liberties Union as part of a Freedom of Information Act request. Much of the information disclosed to the ACLU was undated, making it difficult to understand the growth of the network, which is different from the cameras used to collect traffic tolls on expressways.

Batteries Made With Bulletproof Kevlar Fibers May Never Explode

The researchers at the University of Michigan layered nanofibers extracted from Kevlar on top of each other to create very thin insulating sheets. And it turns out the microscopic pores on this new material are actually far too small to allow the tips of those fern-like dendrite structures to poke through and make contact with other electrodes. Individual lithium-ions can still squeeze through as needed, but nothing else.

The post Two Waze Street | Tech Talk Today 122 first appeared on Jupiter Broadcasting.

]]>
Linux Your Chromebook | LAS s31e03 https://original.jupiterbroadcasting.net/53067/linux-your-chromebook-las-s31e03/ Sun, 09 Mar 2014 14:13:44 +0000 https://original.jupiterbroadcasting.net/?p=53067 Can a cheap Chromebook loaded with Linux replace an Ultrabook? Is this the best bang for the battery life? We load Linux on the Acer C720 and put it to the test.

The post Linux Your Chromebook | LAS s31e03 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Can a cheap Chromebook loaded with Linux replace an Ultrabook? Is this the best bang for the battery life? We load Linux on the Acer C720 and put it to the test.

Plus: The big security mistake that impacts tons of open source software, a quick demo of the new Krita release, our picks of the week…

AND SO MUCH MORE!

All this week on, The Linux Action Show!

Thanks to:


GoDaddy


Ting

Download:

HD Video | Mobile Video | WebM Torrent | MP3 Audio | Ogg Audio | YouTube | HD Torrent

RSS Feeds:

HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Feed | Ogg Feed | iTunes Feeds | Torrent Feed

Support the Show:

— Show Notes: —

Chromebook Acer C720 Running Linux Review:


System76

Brought to you by: System76

Whatever the reason, you may find the paltry offering of a 16GB SSD on the Acer C720 Chromebook to be lacking for some use cases out there. You can pick up a C720P model with 32GB of internal storage — and a touchscreen — for $50 more than the regular C720, but what if you already have one or need more than 32GB? Well, it turns out it’s extremely simple to replace the SSD in the Acer C720, and we’re going to show you how to do it.

Installing Arch Linux on the C720

SeaBIOS is an open source implementation of a 16bit X86 BIOS. SeaBIOS can run in an emulator or it can run natively on X86 hardware with the use of coreboot.

SeaBIOS is the default BIOS for qemu and kvm.

Battery Life

Tip: To monitor cpu speed in real time, run:

$ watch grep \“cpu MHz\” /proc/cpuinfo

Cons:

  • Screen Viewing Angle is really limited. Even leaning on my hand with elbow on the desk decreases viewability by a very noticeable amount.
  • Only one USB3 Port.

– Picks –

Runs Linux:

Desktop App Pick

This year marks the 11th Year of uGet, that’s right, uGet has been available to the Linux community for over 11 years now and we are not slowing down, we are excited for the future of uGet! If you’re excited too then please consider donating to the project. 🙂 (blog post about the donation drive)

Weekly Spotlight

  • Dukto R6

  • Simple user interface

  • No server or internet connection needed

  • Zero configuration

  • Clients auto-discovery

  • High speed file transfer

  • Multi-OS native support

  • Portable version available

  • Multi files and folders transfer

  • Transfers log

  • Send and receive text snippets (eg. useful for sending URLs)

  • Open received files directly from the application

  • Windows 7 taskbar integration with progress and transfer indicator

  • Show your IP addresses on the IP connection page

  • Full Unicode support

  • Metro style UI

  • Free and open source

  • There is one issue with Dukto though: its security: the application doesn’t use any passwords, no encryption, etc., so its developer recommends using it only on trusted local area networks.

Dukto is a free open source project, licensed under GPL. Official releases are made by me for the following platforms:


— NEWS —

A longstanding GnuTLS certificate validation botch

Perhaps the biggest irony is that the fix changes a handful of “goto cleanup;” lines to “goto fail;”. It also made other changes to the code (including adding a “fail” label), but the resemblance to the Apple bug is too obvious to ignore. While the two bugs are actually not that similar, other than both being in the certificate validation logic, the timing and look of the new bug does give one pause.

The problem boils down to incorrect return values from a function when there are errors in the certificate.

It is hard to say how far back this bug goes, as the code has been restructured several times over the years, but the GnuTLS advisory warns that all versions are affected.

Emacs, wget, NetworkManager, VLC, Git, and others.

Fedora 20 system, attempting to remove GnuTLS results in Yum wanting to remove 309 dependent packages, including all of KDE, Gnucash, Calligra, LibreOffice, libvirt, QEMU, Wine, and more.

It was a code audit done by GnuTLS founder Nikos Mavrogiannopoulos (at the request of Red Hat, his employer) that discovered the bug.

Video Acceleration Takes The Backseat On Chrome For Linux

Due to notorious Linux graphics drivers, Google developers working on Chrome/Chromium aren’t looking to enable hardware video acceleration by default anytime soon. The problem ultimately comes down to poor Linux graphics drivers.

Ami Fischman explained in a bug comment yesterday, “There is a history of users disabling the blacklist (entirely) because they want a feature that is disabled. That destabilizes the entire browser, and users frequently forget about this action (and waste time trying to re-stabilize their browser later). If this landed I expect that sooner or later we’d get a rash of blog posts explaining how to get HW decode on linux ‘for free’ (by disabling the GPU blacklist) and the overall result for our Linux userbase would be a worse experience (because the blacklist will never be consulted on their system), not better (b/c they’ll have HW acceleration of h.264 decode). This is a judgement call and I can certainly see how reasonable people can disagree, but this is my personal judgement.”

Ami went on to imply that the VA-API Linux support will never be in good enough shape for Chrome, “We don’t ship code we consider to be permanently ‘experimental’ or ‘beta’, only code we expect to be stable/production-quality eventually, if not at landing. This feature will never graduate to that status, so this CL is effectively shipping a feature that is known to be mostly-broken on most Linux installations.”

Chrome developer Jorge Lucangeli Obes also commented on this report, “Supporting GPU features on Linux is a nightmare (I know from dealing with the GPU sandbox). Enabling this feature should come after thinking how we can make it available without making Chrome on Linux less stable.”

Fedora To Have a “Don’t Ask, Don’t Tell” For Contributors

"The Fedora Project is now going to enforce a “Don’t Ask, Don’t Tell” policy for contributors. What the project’s engineering committee is asking their members to conceal is a contributor’s nationality, country of origin, or area of residence. There’s growing concern about software development contributions coming from export restricted countries by the US (Cuba, Iran, North Korea, Sudan, and Syria) with Red Hat being based out of North Carolina

Krita 2.8.0 Released

Some major updates in Calligra office suite are:

  • The word processor, Words received support for comments

  • Sheets has better support for pivot tables

  • Kexi now runs on Windows and about 30 major issues has been fixed in this visual database application.

  • Flow now supports SVG based stencils.

  • A thumbnail sketch of Krita 2.8

The 2.8 release marks the debut of several new under-the-hood changes in Krita. The first is a major refactoring of the application’s OpenGL canvas code.

For 2.8 the OpenGL support was brought up to OpenGL 3.1 and OpenGL ES 2.0 compliance (the latter of which enables the tablet-centric “Krita Sketch” variant to run on embedded hardware).

Along the way, Krita’s Windows builds gained OpenGL support as well; 2.8 marks the first version of Krita to be declared stable on Windows

The more interesting improvement for Linux users is an entirely new OpenGL scaling algorithm that offers better quality than the default OpenGL scaling options. The upshot is smoother rendering, especially when zooming in on the canvas.

The new rendering code was written by Kazakov, whose time on the project is funded by the Krita Foundation. Kazakov also undertook the other major piece of plumbing to debut in version 2.8: native support for pressure-sensitive graphics tablets.

– Feedback: –

— Chris’ Stash —

  • Call in Edition of Coder Radio on Monday! 9am PDT / 12pm EDT

Hang in our chat room:

irc.geekshed.net #jupiterbroadcasting

— What’s Matt Doin? —

— Find us on Google+ —
— Find us on Twitter —
— Follow the network on Facebook: —
— Catch the show LIVE Sunday 10am Pacific / 1pm Eastern / 6pm UTC: —

The post Linux Your Chromebook | LAS s31e03 first appeared on Jupiter Broadcasting.

]]>
Talkin’ Tox | LINUX Unplugged 30 https://original.jupiterbroadcasting.net/52722/talkin-tox-lup-30/ Tue, 04 Mar 2014 17:06:42 +0000 https://original.jupiterbroadcasting.net/?p=52722 Two developers from the TOX project, an open source secure Skype killer join us to discuss their new project, the future, and more.

The post Talkin' Tox | LINUX Unplugged 30 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Two developers from the TOX project, an open source secure Skype killer join us to discuss their new project, the future, and how they hope to become your new messaging system.

Plus getting more battery life out of a Linux laptop, the Steam problem, and your feedback.

Thanks to:

\"Ting\"


\"DigitalOcean\"

Direct Download:

MP3 Audio | OGG Audio | Video | HD Video | Torrent | YouTube

RSS Feeds:

MP3 Feed | OGG Feed | iTunes Feed | Video Feed | Torrent Feed | WebM Torrent Feed

Show Notes:

FU

Tox

NaCl (pronounced \”salt\”) is a new easy-to-use high-speed software library
for network communication, encryption, decryption, signatures, etc. NaCl\’s goal is to provide all of the core operations needed to build higher-level cryptographic tools.

Mailsack:

The post Talkin' Tox | LINUX Unplugged 30 first appeared on Jupiter Broadcasting.

]]>
System76 Laptop Special | LAS s29e10 https://original.jupiterbroadcasting.net/47712/system76-laptop-special-las-s29e10/ Sun, 08 Dec 2013 15:42:36 +0000 https://original.jupiterbroadcasting.net/?p=47712 Is the Galago UltraPro the ultimate Linux ultrabook? We’ve got that and the Kudu Professional from System76. Our review of these Haswell powered laptops.

The post System76 Laptop Special | LAS s29e10 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Is the Galago UltraPro the ultimate Linux ultrabook? We’ve got that and the Kudu Professional from System76 in studio. It’s our review of these Haswell powered laptops.

PLUS: Does the Intel Iris GPU hold up to the Steam challenge? And Linux’s big area of growth in 2014, that nobody’s talking about.

All this week on, The Linux Action Show!

Thanks to:


GoDaddy


Ting

Download:

HD Video | Mobile Video | WebM Torrent | MP3 Audio | Ogg Audio | YouTube | HD Torrent

RSS Feeds:

HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Feed | Ogg Feed | iTunes Feeds | Torrent Feed

Support the Show:

Kudu Professional and Galago UltraPro Review:

Kudu Professional features:

  • processor: 4th Generation Intel Core i5 and i7 Processors
  • display: 17.3" 1080p Full High Definition LED Backlit Matte Display
  • graphics: Intel HD Graphics 4600
  • memory: Up to 16 GB 204 pin Dual Channel DDR3 @ 1600 MHz
  • storage: 1 x mSATA, 2 x 2.5" 9mm Removable SATA II/III
  • touchpad: Multitouch with two finger scrolling
  • networking: Gigabit LAN (10/100/1000), WiFi
  • wireless: Intel Centrinoup to 802.11 AC
  • ports: HDMI, VGA, Ethernet, eSata/USB 3.0 Combo, 2 x USB 3.0, 1 x USB 2.0, Headphone Jack, Microphone Jack, SD Reader
  • camera: Built-In 2.0 MP High Definition Webcam
  • security: Kensington(r) Lock
  • power Management: Suspend and Resume
  • battery: Removable 62.16 Wh 6 Cell Smart Lithium-Ion
  • power System: Full Range AC-in 100~240V, 50~60Hz, 90W AC Adapter, DC output 19V, 4.74A
  • dimensions: 16.25“ x 10.50” x 0.82“~1.38” (WxDxH)
  • weight: 6.80 lbs. (3.08 kg.)

Galago UltraPro Professional features:


– Picks –

Runs Linux:

Desktop App Pick

Weekly Spotlight:

These non-synthetic benchmarks are powered by the state-of-the art UNIGINE Engine showcasing a comprehensive set of cutting-edge graphics technologies with a dynamic environment and fully interactive modes available to the end user.

MPrime is practically the linux version of Prime95 – the most famous stability tester in Windows platform, used by many overclockers worldwide.

Git yours hands all over our STUFF:


— NEWS —


System76

Brought to you by: System76

Check out System76 on G+

– Feedback: –

— Chris’ Stash —

Hang in our chat room:

irc.geekshed.net #jupiterbroadcasting

— What’s Matt Doin? —

— Find us on Google+ —
— Find us on Twitter —Hang
— Follow the network on Facebook: —
— Catch the show LIVE Sunday 10am Pacific / 1pm Eastern / 6pm UTC: —

The post System76 Laptop Special | LAS s29e10 first appeared on Jupiter Broadcasting.

]]> Clever Inventions | FauxShow 123 https://original.jupiterbroadcasting.net/29566/clever-inventions-fauxshow-123/ Wed, 02 Jan 2013 22:03:02 +0000 https://original.jupiterbroadcasting.net/?p=29566 Angela and Chris go over some awesome inventions... most of them geeky! Plus they read the mail sack and a gaming related announcement!

The post Clever Inventions | FauxShow 123 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Angela and Chris go over some awesome inventions… most of them geeky! Plus they read the mail sack and a gaming related announcement!

Direct Download:

HD Download | Mobile Download | MP3 Download | YouTube

RSS Feeds:

HD Video Feed | Mobile Video Feed | MP3 Audio Feed | Torrent Feed | iTunes Feeds

   

Make Life Easier: https://www.dailycognition.com/index.php/2008/08/08/19-clever-inventions-that-make-life-easier-or-not.html

Battery: https://www.wisebread.com/the-40-hidden-inside-a-12v-battery

Beard Beer: https://blogs.smithsonianmag.com/smartnews/2012/10/brewmaster-makes-beer-from-his-beard-yeast/

Cool PC case:
https://conceptrends.com/2009/06/03/cool-pc-vase/

Game: https://www.kongregate.com/games/dampgnat/wonderputt

https://nedhardy.com/2011/03/10/34-cleverly-designed-inventions/

Schwartz Table: https://www.youtube.com/watch?v=Lv7HulVsen0

Hiding your TV: https://www.youtube.com/watch?v=3CsRKeaBr9A

Snorgtees: https://www.snorgtees.com/

Most important medical alert bracelet ever: https://lh6.googleusercontent.com/-vOVcOOcBO_0/UOLayvHlyvI/AAAAAAABBGM/765prJtJxWs/w497-h373/photo.jpg

Great Translation: https://www.bennylingbling.com/wp-content/uploads/2010/06/tumblr_l2ppvcFtQW1qa51oqo1_500.jpg

Mail Sack:

  • geeseven writes:

Hey Angela,
I have been using the Chromium JB extension for some time. Today, Chromium disabled it, till I manually re-enabled it. I asked the chat room about it and nogal|work mentioned that happened months ago and to email you about it.
I am not sure if this is a new thing, but wanted to draw it to your attention.
Thanks for all the great content.

  • Ben writes:

I am a frequent viewer of JB\’s content, LAS, (TechSnap, FauxShow, Coder Radio,). I have a suggestion: I understand why you don\’t list every affiliate you have at the bottom of the site, but could you (JB) setup a page where you list what sites are supported by the affiliate plugins.

New Jupiter Gaming G+ Community: https://plus.google.com/u/0/communities/103010578772697606398?cfem=1

Find FauxShow!

LIVE: https://jblive.tv – 8pm Pacifc – 11pm Eastern – 3am UTC
Facebook: https://www.facebook.com/thefauxshow
Twitter: https://www.twitter.com/angerz
G+: https://www.gplus.to/fauxshow
Dailybooth: https://www.dailybooth.com/thefauxshow
Subscribe to Jupiter Signal: https://www.bit.ly/jupitersignal
Jupiter Radio: https://jblive.info
Affiliates Firefox Extension: https://addons.mozilla.org/en-US/firefox/addon/jupiterbroadcasting/
Affiliates Chrome Extension: https://chrome.google.com/webstore/detail/bjekemhblnilimncanbehhjijdpjgimj
Donations: https://original.jupiterbroadcasting.net/donate
Shows & Shownotes: https://original.jupiterbroadcasting.net/show/fauxshow/

The post Clever Inventions | FauxShow 123 first appeared on Jupiter Broadcasting.

]]>
Pimp Your Penguin | LAS | s23e08 https://original.jupiterbroadcasting.net/24941/pimp-your-pinguin-las-s23e08/ Sun, 23 Sep 2012 13:23:52 +0000 https://original.jupiterbroadcasting.net/?p=24941 Our tips and tweaks to get the most performance and battery life out of your Linux box, and we’ll blast though a few audience submitted favorites!

The post Pimp Your Penguin | LAS | s23e08 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Our tips and tweaks to get the most performance and battery life out of your Linux box, and we’ll blast though a few audience submitted favorites!

Plus: Our thoughts on Ubuntu 12.10 shipping with Amazon shopping links in the dash, the good news for Optimus users, Humble Bundles not so humble sales, the Steam is nigh, and so much more!

All this week on, The Linux Action Show!

Thanks to:

GoDaddy.com

Limited time offer:
SPECIAL OFFER! SPECIAL OFFER! .COMs just $5.99* per year up to 3 domains! Additional .COMs just $7.99* per year! – code: 599linux

Missed the good deal? Use our code LINUX and save 10%! anytime!

Direct Download:

HD Video | Mobile Video | Ogg Video | MP3 Audio | Ogg Audio | YouTube | Torrent File

RSS Feeds:

HD Video Feed | Large Video Feed | Mobile Video Feed | MP3 Feed | Ogg Feed | iTunes Feeds | Torrent Feed

Support the Show:

Show Notes:

Runs Linux:

Android Pick:

Desktop App Pick:

Distro Of The Day

Search our past picks:

Get yours hands all over our STUFF:

News:

Performance Tips:


System76

Brought to you by: System76

This week’s episode is inspired by Matt’s recent writeup at Datamation, Getting the Most From Ubuntu: 20 Tips.

There’s a big batch there with more details, we’ll cover a few of them in this episode. You can refer to Matt’s entire write up for more tips and details.

Battery Tips:

Feedback:

Want a Gento Review? VOTE:

Chris’ Stash:

What’s Matt Doin?

Find us on Google+
Find us on Twitter:

Follow the network on Facebook:

Jupiter Broadcasting Forum:

Catch the show LIVE Sunday 10am Pacific / 1pm Eastern / 5pm UTC:

The post Pimp Your Penguin | LAS | s23e08 first appeared on Jupiter Broadcasting.

]]> Battery Malware | TechSNAP 16 https://original.jupiterbroadcasting.net/10763/battery-malware-techsnap-16/ Thu, 28 Jul 2011 22:52:47 +0000 https://original.jupiterbroadcasting.net/?p=10763 Attackers take aim at Apple with an exploit that could brick your Macbook, or perhaps worse. Plus you need to patch against a 9 year old SSL flaw.

The post Battery Malware | TechSNAP 16 first appeared on Jupiter Broadcasting.

]]>

post thumbnail

Attackers take aim at Apple with an exploit that could brick your Macbook, or perhaps worse. Plus you need to patch against a 9 year old SSL flaw.

Plus find out about a Google bug that could wipe a site from their Index, and a excellent batch of your feedback!

All that and more, on this week’s TechSNAP!

Direct Download Links:

HD Video | Large Video | Mobile Video | MP3 Audio | OGG Audio | YouTube

Subscribe via RSS and iTunes:

[ad#shownotes]

Show Notes:

iPhones vulnerable to 9 year old SSL sniffing attack

  • A nine year old bug discovered and disclosed by Moxie Marlinspike in 2002 allows attackers to decrypt intercepted SSL sessions. Moxie Marlinspike released a newer, easier to use version of the tool on monday, to coincide with Apple finally patching the flaw on iPhone and other iOS devices.
  • Any unpatched iOS device can have all of it’s SSL traffic trivially intercepted and decrypted
  • This means anyone with this new easy to use tool sitting near a wifi hotspot, can intercept encrypted login information (gmail, facebook), banking credentials, e-commerce transactions, or anything else people do from their phone.
  • The bug was in the way iOS interpreted the certificate chain. Apple failed to respect the ‘basicConstraint’ parameter, allowing an attacker to sign a certificate for any domain with an existing valid certificate, a condition normally prevented by the constraint.
  • There are no known flaws in SSL it self, in this case, the attacker could perform a man-in-the-middle attack, by feeding the improperly signed certificate to the iPhone which would have accepted it, and used the attackers key to encrypt the data.
  • Patch is out with a support doc and direct download links

Apple Notebook batteries vulnerable to firmware hack

  • After analyzing a battery firmware update that Apple pushed in 2009, researchers found that all patched batteries, and all batteries manufactured since, use the same password
  • With this password, it is possible to control the firmware on the battery
  • This means that an attacker can remotely brick your Macbook, or cause the battery to overheat and possibly even explode
  • The attacker can also falsify the data returned to the OS from the battery, causing odd system behaviour
  • The attacker could also completely replace the Apple firmware, with one designed to silently infect the machine with malware. Even if the malware is removed, the battery would be able to reinfect the machine, even after a complete OS wipe and reinstall.
  • Further research will be presented at this years Black Hat Security Conference
  • In the meantime, researchers have notified Apple of the vulnerability, and have created a utility that generates a completely random password for your Mac’s battery.
    Additional Link

Facebook fixes glitch that let you see private video information

  • A glitch in facebook allowed you to see the thumbnail preview and description of private videos posted by other users, even when they were not shared with you.
  • It was not possible to view the actual videos

Google was quick to shutdown Webmaster Tools after vulnerability found

  • Using the google webmaster tools, users were able to remove websites that did not belong to them from the Google Index
  • By simply modifying the query string of a valid request to remove your own site from the google index, and changing one of the two references to the target url, you were able to remove an arbitrary site from the google index
  • The issue was resolved within 7 hours of being reported to Google
  • Google restored sites that were improperly removed from its index.

Researchers find vulnerablity in Skype

  • Inproper input validation and output sanitation allowed attackers to inject code into their skype profile
  • By entering html and java script in to the ‘mobile phone’ section of your profile, anyone who had you on their friends list would execute the injected code.
  • This vulnerability could have allowed attackers to high your session, steal your account, capture your payment data, and change your password

Feedback


Q: (Sargoreth) I downloaded eclipse, and I didn’t bother to verify the md5 hash they publish on the download page, how big a security risk is this?
A: Downloadable software often has an MD5 hash published along with the downloadable file, as a measure to allow you to ensure that the file you downloaded is valid. Checking the downloaded file against this hash can ensure that the file was not corrupted during transfer. However it is not a strong enough indicator that the file has not been tampered with. If the file was modified, the MD5 hash could just as easily have been updated along with it. In order to be sure that the file has not been tampered with, you need a hash that is provided out of band, from a trusted source (The FreeBSD Ports tree comes with the SHA256 hashs of all files, which are then verified once they are downloaded). SHA256 is much more secure, as MD5 has been defeated a number of times, with attackers able to craft two files with matching hashes. SHA-1 is no longer considered secure enough for cryptographic purposes. It should also be noted that SHA-512 is actually faster to calculate than SHA256 on 64bit hardware, however it is not as widely supported yet. The ultimate solution for ensuring the integrity of downloadable files is a GPG signature, verified against a trusted public key. Many package managers (such as yum) take this approach, and some websites offer a .asc file for verification. A number of projects have stopped publishing the GPG signatures because the proportion of users who checked the signature was too low to justify the additional effort. Some open source projects have had backdoors injected in to their downloadable archives on official mirrors, such as the UnrealIRCd project.


Q: (Christoper) I have a windows 7 laptop, and a Ubuntu desktop, what would be a cheap and easy way to share files between them?
A: The easiest and most secure way, is to enable SSH on the ubuntu machine, and then use an SFTP client like FileZilla (For Windows, Mac and Linux), and then just login to your ubuntu machine using your ubuntu username/password. Alternatively, If you have shared a folder on your windows machine, you should be be able to browse to it from the Nautilus file browser in Ubuntu. Optionally, you can also install Samba, to allow your Ubuntu machine to share files with windows, it will appear as if it were another windows machine in your windows ‘network neighbourhood’.


Q: (Chad) I have a network of CentOS servers, and a central NFS/NIS server, however we are considering adding a FreeNAS box to provide ZFS. I need to be able to provide consistent centralized permissions control on this new file system. I don’t want to have to manually recreate the users on the FreeNAS box. Should I switch to LDAP?
A: FreeNAS is based on FreeBSD, so it has a native NIS client you can use (ypbind) to connect to your existing NIS system. This would allow the same users/groups to exist across your heterogeneous network. You may need to modify the /etc/nsswitch.conf file to configure the order local files and NIS are checked in, and set your NIS domain in /etc/rc.conf. Optionally, you could use LDAP, again, adding some additional parameters to nsswitch.conf and configuring LDAP. If you decide to use LDAP, I would recommend switching your CentOS machines to using LDAP as well, allowing you to again maintain a single system for both Linux and BSD, instead of maintaining separate account databases. If you are worried about performance, you might consider setting the BSD machine up as an NIS slave, so that it maintains a local copy of the NIS database. The FreeBSD NIS server is called ypserv. You can find out more about configuring NIS on FreeBSD here


Bitcoin Blaster

Roundup

The post Battery Malware | TechSNAP 16 first appeared on Jupiter Broadcasting.

]]>