<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Security &#8211; Everything is Broken</title>
	<atom:link href="https://play.datalude.com/blog/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>https://play.datalude.com/blog</link>
	<description>Efficiency vs. Inefficiency, in a no-holds barred fight.</description>
	<lastBuildDate>Fri, 16 Nov 2018 03:01:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Git pull stopped working</title>
		<link>https://play.datalude.com/blog/2018/11/git-pull-stopped-working/</link>
					<comments>https://play.datalude.com/blog/2018/11/git-pull-stopped-working/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 16 Nov 2018 03:00:18 +0000</pubDate>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">https://play.datalude.com/blog/?p=455</guid>

					<description><![CDATA[So this is a weird one. I'd previously grabbed some code from a git repository. But recently when I went to update it, I got an error fatal: unable to connect to github.com:github.com[0: 140.82.118.4]: errno=Connection refusedgithub.com[1: 140.82.118.3]: errno=Connection refused Uh-oh. Thinking it might be a transient error, I left it for a while. But then ... <a title="Git pull stopped working" class="read-more" href="https://play.datalude.com/blog/2018/11/git-pull-stopped-working/" aria-label="Read more about Git pull stopped working">Read more</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">So this is a weird one. I'd previously grabbed some code from a git repository. But recently when I went to update it, I got an error</p>



<pre class="wp-block-preformatted">fatal: unable to connect to github.com:<br>github.com[0: 140.82.118.4]: errno=Connection refused<br>github.com[1: 140.82.118.3]: errno=Connection refused</pre>



<p class="wp-block-paragraph">Uh-oh. Thinking it might be a transient error, I left it for a while. But then when I got the report from my firewall logs, I saw some outbound connection attempts which it was blocking.</p>



<pre class="wp-block-code"><code> Nov 15 12:20:42 DST=140.82.118.4 PROTO=TCP DPT=9418
 Nov 15 12:20:43 DST=140.82.118.4 PROTO=TCP DPT=9418
 Nov 15 12:20:43 DST=140.82.118.3 PROTO=TCP DPT=9418
</code></pre>



<p class="wp-block-paragraph">So googling around I saw that this port was related to a proprietary git protocol, and then I connected the two events. So apparently the last time I checked out the code, it had used the default git protocol. Then I installed a firewall with egress filtering on the server, so now it was blocking the connection attempts. One solution would be to add tcp/9418 to my firewall rules, but there was actually a simpler way. From the code directory I edited the .git/config file and changed the url= line:</p>



<pre class="wp-block-code"><code>[remote "origin"]
        url = https://github.com/repo/repo.git
        # url = git://github.com/repo/repo.git
</code></pre>



<p class="wp-block-paragraph">And now my <strong>git pull</strong> works again.&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://play.datalude.com/blog/2018/11/git-pull-stopped-working/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Free Wireless VPN</title>
		<link>https://play.datalude.com/blog/2008/08/free-wireless-vpn/</link>
					<comments>https://play.datalude.com/blog/2008/08/free-wireless-vpn/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 08 Aug 2008 00:56:04 +0000</pubDate>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[hotspot]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[wifi]]></category>
		<guid isPermaLink="false">http://play.datalude.com/blog/?p=46</guid>

					<description><![CDATA[Depending on your background you'll have different reactions to Free Wireless. Most people shout a quick whoopee, and plug right in there. However if your background is in IT security, you take a much dimmer view. First of all there's the fact that a lot of the traffic you send down the wire can be ... <a title="Free Wireless VPN" class="read-more" href="https://play.datalude.com/blog/2008/08/free-wireless-vpn/" aria-label="Read more about Free Wireless VPN">Read more</a>]]></description>
										<content:encoded><![CDATA[<p>Depending on your background you'll have different reactions to Free Wireless. Most people shout a quick whoopee, and plug right in there. However if your background is in IT security, you take a much dimmer view.</p>
<p>First of all there's the fact that a lot of the traffic you send down the wire can be intercepted ("sniffed") by people on the same network as you. The guy next to you in Starbucks could be snagging all your email passwords, for example. So at a minimum you need to make sure that you're using Secure email protocols (eg Secure POP on port 995 instead of port 110, and Secure SMTP on port 465 instead of port 25), and using https intead of http wherever you get a chance.</p>
<p><span id="more-46"></span>But then it can get worse: do you really trust the people running the wifi hotspot? Maybe they're the ones logging traffic through their router? Well maybe this is getting too paranoid, but the only way to really make sure your information stays private is to get a VPN tunnel back to a trusted network, and put all your traffic down that.</p>
<p>This is not within the reach of most people, but I recently found something which looks as though it might help: AnchorFree.</p>
<p>http://www.anchorfree.com/downloads/hotspot-shield/</p>
<p>This will set up a VPN to the AnchorFree servers and protect you from any intrustions by your fellow coffee swiggers and evil hotspot operators. The question then becomes, do you trust the people at AnchorFree?</p>
]]></content:encoded>
					
					<wfw:commentRss>https://play.datalude.com/blog/2008/08/free-wireless-vpn/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
