<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Announcements]]></title><description><![CDATA[Get the latest news on what&#x27;s happening.]]></description><link>http://forums.fogproject.org/category/22</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 01:43:34 GMT</lastBuildDate><atom:link href="http://forums.fogproject.org/category/22.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 31 Jul 2024 18:34:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[FOG 1.5.10.41 and forward]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/7217">@Tom-Elliott</a> I really appreciate that you are putting effort into providing more frequent releases, which makes it easier for everyone to deploy new security fixes in time. Keep up the good work!</p>
]]></description><link>http://forums.fogproject.org/topic/17588/fog-1-5-10-41-and-forward</link><guid isPermaLink="true">http://forums.fogproject.org/topic/17588/fog-1-5-10-41-and-forward</guid><dc:creator><![CDATA[abulhol]]></dc:creator><pubDate>Wed, 31 Jul 2024 18:34:52 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.10 and earlier - NFS Privilege Escalation Vulnerability]]></title><description><![CDATA[<p dir="auto">Hello all,</p>
<p dir="auto">There was a vulnerability brought to attention of a privelege escalation in how FOG has previously used NFS.</p>
<p dir="auto">The specific vulnerability was using options “no_root_squash” and “insecure” as definitions of the exports file.</p>
<p dir="auto">The <code>insecure</code> option effectively allowed any system on non-priveleged ports (anything &gt; 1024 which we defaulted to for NFS) had root level access to the filesystem.</p>
<p dir="auto">The <code>no_root_squash</code> allowed a client system to mount the NFS share and if a client UID matched the UID of the server the files would be created as that user (say client had user named bob with UID 1000, and server had user named admin with UID 1000, NFS on the server would show “admin” created the file). It also allowed <code>root</code> (UID 0) on a clients machine to create files - scripts and all - as root on the server.</p>
<p dir="auto">If I understand the depth, once that client root level created a file that contained code to escalate privilege, anyone could mount the NFS share and use that bad acting file to elevate as root on the server system.</p>
<p dir="auto">Luckily this had a relatively easy fix and this fix has been implemented to dev-branch and working-1.6 from an installer standpoint.</p>
<p dir="auto">Since I don’t know when a “full” release will be made I am outlining the steps you should/will need to take to correct the issue in the meantime.</p>
<p dir="auto">Here’s a diff of the master to include these changes in an automated fashion if you feel comfortable doing this:</p>
<pre><code>diff --git a/lib/common/functions.sh b/lib/common/functions.sh
index b20b0e482..44f8657f5 100755
--- a/lib/common/functions.sh
+++ b/lib/common/functions.sh
@@ -1357,7 +1357,9 @@ configureNFS() {
         echo "Skipped"
     else
         mv -fv "${nfsconfig}" "${nfsconfig}.${timestamp}" &gt;&gt;$error_log 2&gt;&amp;1
-        echo -e "$storageLocation *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)\n$storageLocation/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)" &gt; "$nfsconfig"
+        userId=$(id -u $username)
+        groupId=$(id -g $username)
+        echo -e "$storageLocation *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,all_squash,anonuid=${userId},anongid=${groupId},fsid=0)\n$storageLocation/dev *(rw,async,no_wdelay,no_subtree_check,all_squash,anonuid=${userId},anongid=${groupId},fsid=1)" &gt; "$nfsconfig"
         diffconfig "${nfsconfig}"
         errorStat $?
         dots "Setting up and starting RPCBind"
@@ -1569,8 +1571,8 @@ configureStorage() {
     else
         (head -1 "$storageLocationCapture/postinitscripts/fog.postinit" | grep -q '^#!/bin/bash') || sed -i '1i#!/bin/bash' "$storageLocationCapture/postinitscripts/fog.postinit" &gt;/dev/null 2&gt;&amp;1
     fi
-    chmod -R 777 $storageLocation $storageLocationCapture &gt;&gt;$error_log 2&gt;&amp;1
-    chown -R $username $storageLocation $storageLocationCapture &gt;&gt;$error_log 2&gt;&amp;1
+    chmod -R 775 $storageLocation $storageLocationCapture &gt;&gt;$error_log 2&gt;&amp;1
+    chown -R $username:$username $storageLocation $storageLocationCapture &gt;&gt;$error_log 2&gt;&amp;1
     errorStat $?
 }
 clearScreen() {
</code></pre>
<p dir="auto">Steps:<br />
<em>(If you rerun the installer please re-perform these steps to ensure things are as secure as possible)</em></p>
<ol>
<li>Get your fogproject user’s user and group ids:<br />
<code>echo "UserID: "$(id -u fogproject); echo "GroupID: "$(id -g fogproject)</code></li>
<li>Note these down and edit your systems export file (usually located in <code>/etc/exports</code>)<br />
Remove the <code>no_root_squash</code> and replace with <code>all_squash</code> in both instances<br />
Remove the <code>insecure,</code> from both instances</li>
<li>Add: <code>anonuid=&lt;UserID&gt;,anongid=&lt;GroupID&gt;</code> to both instances<br />
<em>Please replace &lt;UserID&gt; with the actual userID returned, and &lt;GroupID&gt; with the actual groupID returned.</em><br />
You should end up with an exports that looks like:</li>
</ol>
<pre><code>/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,all_squash,anonuid=1001,anongid=1001,fsid=0)
/images/dev *(rw,async,no_wdelay,no_subtree_check,all_squash,anonuid=1001,anongid=1001,fsid=1)
</code></pre>
<ol start="4">
<li>Change filesystem permissions of /images to at least <code>chmod -R 775 /images</code> (Not necessary, but useful for an extra bit of security)</li>
<li>Change owner ship of /images to fogproject/fogproject <code>chown -R fogproject:fogproject /images</code></li>
<li>Restart nfsd: <code>systemctl restart nfsd</code></li>
<li>Test.</li>
</ol>
<p dir="auto">This should address the vulnerabilty. While it won’t prevent a “bad actor” from placing a new file on your system the max level of that escalation could only be that of your fogproject user.</p>
<p dir="auto">I know this isn’t a good way to start a Monday, but when is a good time when it comes to security issues?</p>
<p dir="auto">Hopefully this will help and is simple enough to work in the mean time. Those who don’t mind, please use dev-branch for simplicity as it should address this in a more autonomous method.</p>
<p dir="auto">Thank you all in advance!</p>
<p dir="auto">Particularly, thank you Christophe Hugueny (Advens) <a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/48145">@IronBlackBird</a></p>
]]></description><link>http://forums.fogproject.org/topic/17486/fog-1-5-10-and-earlier-nfs-privilege-escalation-vulnerability</link><guid isPermaLink="true">http://forums.fogproject.org/topic/17486/fog-1-5-10-and-earlier-nfs-privilege-escalation-vulnerability</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Mon, 20 May 2024 14:16:05 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.10 officially released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/48215">@tedlaur</a> You can provide your error log from the install, but sometimes more fruitful is the actual php-fpm error (or on debian it may just be in the http error logs)</p>
<p dir="auto">I don’t recall, and it has been a while since I did direct troubleshooting with fog. I can still read of course and probabaly help in that way, but my systems are limited as of late and as such harder for me to troubleshoot issues to try to replicate.</p>
]]></description><link>http://forums.fogproject.org/topic/16726/fog-1-5-10-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/16726/fog-1-5-10-officially-released</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Sun, 05 Mar 2023 23:05:55 GMT</pubDate></item><item><title><![CDATA[FOG kernels and inits moving to github]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/7217">@Tom-Elliott</a> said in <a href="/post/151596">FOG kernels and inits moving to github</a>:</p>
<blockquote>
<p dir="auto">Majority of the time the Inits are built one off for some specific need. No where near the frequency of the kernels needing to be updated.</p>
</blockquote>
<p dir="auto">I don’t think that’s true. We do bug fixes and add features to the inits way more often than once a year (when at least the buildroot update is to be done). Take a look at the last dozen or so fos repo commits.</p>
]]></description><link>http://forums.fogproject.org/topic/16044/fog-kernels-and-inits-moving-to-github</link><guid isPermaLink="true">http://forums.fogproject.org/topic/16044/fog-kernels-and-inits-moving-to-github</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Fri, 11 Feb 2022 06:42:09 GMT</pubDate></item><item><title><![CDATA[Gratitudes]]></title><description><![CDATA[<p dir="auto">I know I’ve been out of this for a little bit. I check in here or there, but just been extremely busy.</p>
<p dir="auto">I don’t want to stop contributing, I just am taking time for myself after my workly duties.</p>
<p dir="auto">I have to give a big gratitude and thanks for everyone here trying to help out whether by code, by helping the rest of the community, or documentation.</p>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/28061">@Sebastian-Roth</a> I know you’re busy but you’ve kept the project rolling even with the minimal availability you have. Thank you.<br />
<a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/30416">@george1421</a> I’m sure you’re busy, but I still see you posting and helping where possible and amenible. Thank you.<br />
<a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/28100">@Wayne-Workman</a> I know  you’re helping where you can as well. (Of course I can’t exactly post everybody because I’ve been busy and honestly not keeping up with the forums as much as I probably should.)</p>
<p dir="auto">@everyone Thank you. Thank you for still believing in this project. We’re doing the best with what we have. Please understand in we’re lacking, it’s most likely unintentional. I know I’m just busy.</p>
]]></description><link>http://forums.fogproject.org/topic/15890/gratitudes</link><guid isPermaLink="true">http://forums.fogproject.org/topic/15890/gratitudes</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Tue, 30 Nov 2021 18:34:46 GMT</pubDate></item><item><title><![CDATA[FOG Project call for engagement]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/46810">@dreN</a> Great! Are you currently using the dev-branch version? Testing/using the latest dev-branch and reporting issues if you can. As well you are more than welcome to help on the <a href="https://docs.fogproject.org/en/latest/" target="_blank" rel="noopener noreferrer nofollow ugc">documentation</a>. Please send me a private message to discuss further steps.</p>
]]></description><link>http://forums.fogproject.org/topic/15371/fog-project-call-for-engagement</link><guid isPermaLink="true">http://forums.fogproject.org/topic/15371/fog-project-call-for-engagement</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Sun, 02 May 2021 12:56:30 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.9 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/30653">@UWPVIOLATOR</a></p>
<p dir="auto">Yes here -&gt; <a href="https://github.com/FOGProject/fogproject/compare/1.5.8...1.5.9" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/FOGProject/fogproject/compare/1.5.8...1.5.9</a></p>
]]></description><link>http://forums.fogproject.org/topic/14743/fog-1-5-9-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14743/fog-1-5-9-officially-released</guid><dc:creator><![CDATA[Oratorian]]></dc:creator><pubDate>Sun, 13 Sep 2020 23:04:17 GMT</pubDate></item><item><title><![CDATA[Forum Update]]></title><description><![CDATA[<p dir="auto">Hello all,</p>
<p dir="auto">I wanted to inform you all that on attempting to upgrade the forum software this morning, the folder was accidentally cleaned. While we do keep backups of most of our stuff, the forum folders is not one of them due to the dynamic nature of all the data contained within.</p>
<p dir="auto">The database was unaffected, just the upload of images were.</p>
<p dir="auto">I’m attempting to see if any of the backups we have contain some of the data, but I’m not holding my breath at this point.</p>
<p dir="auto">I’m sorry for any issue this may have caused. I will repost here with any update I can provide.</p>
<p dir="auto">Thank you,</p>
]]></description><link>http://forums.fogproject.org/topic/14613/forum-update</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14613/forum-update</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Wed, 22 Jul 2020 12:24:05 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.9-RC2 available]]></title><description><![CDATA[<p dir="auto">We are working towards a most stable release of the 1.5.x line of FOG and will publish release candidates of FOG 1.5.9 for this over the next weeks. We ask people to participate and help test to get the final release as good as we can.</p>
<p dir="auto"><a href="https://news.fogproject.org/fog-1-5-9-rc2-available/" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.fogproject.org/fog-1-5-9-rc2-available/</a></p>
]]></description><link>http://forums.fogproject.org/topic/14465/fog-1-5-9-rc2-available</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14465/fog-1-5-9-rc2-available</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Mon, 18 May 2020 21:57:13 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.9-RC1 available]]></title><description><![CDATA[<p dir="auto">We are working towards a most stable release of the 1.5.x line of FOG and will publish release candidates of FOG 1.5.9 for this over the next weeks. We ask people to participate and help test to get the final release as good as we can.</p>
<p dir="auto"><a href="https://news.fogproject.org/fog-1-5-9-rc1-available/" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.fogproject.org/fog-1-5-9-rc1-available/</a></p>
]]></description><link>http://forums.fogproject.org/topic/14419/fog-1-5-9-rc1-available</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14419/fog-1-5-9-rc1-available</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Wed, 29 Apr 2020 04:20:03 GMT</pubDate></item><item><title><![CDATA[FOG Client 0.12.0 Officially Released]]></title><description><![CDATA[<p dir="auto"><a href="https://news.fogproject.org/fog-client-0-12-0-officially-released/" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.fogproject.org/fog-client-0-12-0-officially-released/</a></p>
]]></description><link>http://forums.fogproject.org/topic/14405/fog-client-0-12-0-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14405/fog-client-0-12-0-officially-released</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Wed, 22 Apr 2020 18:09:27 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.8 and fog-client 0.11.19 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/28061">@Sebastian-Roth</a> Ok, thank you.</p>
]]></description><link>http://forums.fogproject.org/topic/14240/fog-1-5-8-and-fog-client-0-11-19-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14240/fog-1-5-8-and-fog-client-0-11-19-officially-released</guid><dc:creator><![CDATA[madeyem]]></dc:creator><pubDate>Thu, 20 Feb 2020 20:36:21 GMT</pubDate></item><item><title><![CDATA[FOG Client 0.11.18 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/28061">@Sebastian-Roth</a> and anyone else who worked on this, great work on continually improving the client that some of us rely so heavily on!</p>
]]></description><link>http://forums.fogproject.org/topic/14145/fog-client-0-11-18-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14145/fog-client-0-11-18-officially-released</guid><dc:creator><![CDATA[fry_p]]></dc:creator><pubDate>Mon, 27 Jan 2020 12:29:12 GMT</pubDate></item><item><title><![CDATA[VPS Issues]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/39426">@mwilcox</a> <a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/42371">@HG12</a> <a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/43158">@Frxbenji</a> Tom just fixed the webserver a few hours ago…</p>
]]></description><link>http://forums.fogproject.org/topic/14131/vps-issues</link><guid isPermaLink="true">http://forums.fogproject.org/topic/14131/vps-issues</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Wed, 22 Jan 2020 23:23:24 GMT</pubDate></item><item><title><![CDATA[FOG LDAP Plugin 1.6]]></title><description><![CDATA[<p dir="auto">Hello all,</p>
<p dir="auto">Just wanted to state that I’ve made a slight feature adjustment/improvement to the LDAP plugin.</p>
<p dir="auto">You can now decide to use an AD displayName field for the environment.</p>
<p dir="auto">Hopefully this makes sense and makes things a little nicer. It does mean to see the changes and make changes, you will have to remove and re-add the plugin. This isn’t overly difficult, just try to remember to get your configuration before hand.</p>
<p dir="auto">Just an example:<br />
<img src="/assets/uploads/files/1573605183063-8567c7ca-e9a4-42c2-8566-e33d969844f3-image.png" alt="8567c7ca-e9a4-42c2-8566-e33d969844f3-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">And for creating the new LDAP item:<br />
<img src="/assets/uploads/files/1573605214876-a764f044-8841-4244-9713-5c6e7ddf3c81-image.png" alt="a764f044-8841-4244-9713-5c6e7ddf3c81-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>http://forums.fogproject.org/topic/13923/fog-ldap-plugin-1-6</link><guid isPermaLink="true">http://forums.fogproject.org/topic/13923/fog-ldap-plugin-1-6</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Wed, 13 Nov 2019 00:33:41 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.7 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/38941">@astrugatch</a> Quazz is spot on with what he says.</p>
]]></description><link>http://forums.fogproject.org/topic/13488/fog-1-5-7-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/13488/fog-1-5-7-officially-released</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Sun, 14 Jul 2019 17:28:41 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.6 Officially Released]]></title><description><![CDATA[<p dir="auto">An issue was found in 1.5.6 that calls for an early next release to fix that. Find the details here if you run into problems with FTP connections on kernel updates or storage nodes in 1.5.6: <a href="https://github.com/FOGProject/fogproject/issues/311" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/FOGProject/fogproject/issues/311</a></p>
]]></description><link>http://forums.fogproject.org/topic/13219/fog-1-5-6-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/13219/fog-1-5-6-officially-released</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Thu, 02 May 2019 13:48:48 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.5 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/41757">@Basavarajnc</a> said in <a href="/post/118595">FOG 1.5.5 Officially Released</a>:</p>
<blockquote>
<p dir="auto">is there No Effect on Stored Images after upgrading FOG ?</p>
</blockquote>
<p dir="auto">No, there shouldn’t be any effect on the images but make sure you read all the information on upgrading in the link posted by Tom if you have storage nodes!!!</p>
]]></description><link>http://forums.fogproject.org/topic/12683/fog-1-5-5-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/12683/fog-1-5-5-officially-released</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Fri, 16 Nov 2018 15:58:16 GMT</pubDate></item><item><title><![CDATA[I&#x27;m away, but back?]]></title><description><![CDATA[<p dir="auto">Hey Tom 🙂</p>
<p dir="auto">nice to hear from you, all the best…</p>
<p dir="auto">It’s not time to make a change<br />
Just relax, take it easy<br />
You’re still young, that’s your fault<br />
There’s so much you have to know<br />
Look at me<br />
I am old, but I’m happy</p>
<p dir="auto">I was once like you are now<br />
And I know that it’s not easy<br />
To be calm when you’ve found<br />
Something going on<br />
But take your time, think a lot<br />
Why, think of everything you’ve got<br />
For you will still be here tomorrow<br />
But your dreams may not</p>
<p dir="auto">Regards Cat 😉</p>
]]></description><link>http://forums.fogproject.org/topic/12497/i-m-away-but-back</link><guid isPermaLink="true">http://forums.fogproject.org/topic/12497/i-m-away-but-back</guid><dc:creator><![CDATA[x23piracy]]></dc:creator><pubDate>Wed, 26 Sep 2018 00:22:24 GMT</pubDate></item><item><title><![CDATA[FOG 1.6 Testing Needed - Help would be greatly appreciated as needed]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/30429">@lebrun78</a> Just be aware there is no way back to the 1.5.x version of FOG if you switched to working-1.6 now other than very messy manual manipulations in the database. We are working towards 1.6 and hope to have most users upgrade at some point. So I am not saying you shouldn’t. Just want to make sure you understand the consequences.</p>
]]></description><link>http://forums.fogproject.org/topic/12187/fog-1-6-testing-needed-help-would-be-greatly-appreciated-as-needed</link><guid isPermaLink="true">http://forums.fogproject.org/topic/12187/fog-1-6-testing-needed-help-would-be-greatly-appreciated-as-needed</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Thu, 05 Jul 2018 01:56:35 GMT</pubDate></item><item><title><![CDATA[IRC (Internet Relay Chat)]]></title><description><![CDATA[<p dir="auto">Updated some of the links now that we moved to Libera.Chat.</p>
]]></description><link>http://forums.fogproject.org/topic/12061/irc-internet-relay-chat</link><guid isPermaLink="true">http://forums.fogproject.org/topic/12061/irc-internet-relay-chat</guid><dc:creator><![CDATA[Sebastian Roth]]></dc:creator><pubDate>Fri, 08 Jun 2018 22:36:13 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.4 Officially Released]]></title><description><![CDATA[<p dir="auto"><a href="https://news.fogproject.org/fog-1-5-4" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.fogproject.org/fog-1-5-4</a></p>
]]></description><link>http://forums.fogproject.org/topic/12029/fog-1-5-4-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/12029/fog-1-5-4-officially-released</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Tue, 05 Jun 2018 19:00:22 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.3 Officially Released]]></title><description><![CDATA[<p dir="auto"><a href="https://news.fogproject.org/fog-1-5-3/" target="_blank" rel="noopener noreferrer nofollow ugc">https://news.fogproject.org/fog-1-5-3/</a></p>
]]></description><link>http://forums.fogproject.org/topic/11974/fog-1-5-3-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/11974/fog-1-5-3-officially-released</guid><dc:creator><![CDATA[Tom Elliott]]></dc:creator><pubDate>Tue, 29 May 2018 19:19:08 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.2 Officially Released]]></title><description><![CDATA[<p dir="auto">Thanks <a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/7217">@Tom-Elliott</a> and FOG Team!</p>
]]></description><link>http://forums.fogproject.org/topic/11706/fog-1-5-2-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/11706/fog-1-5-2-officially-released</guid><dc:creator><![CDATA[Joe Gill]]></dc:creator><pubDate>Tue, 10 Apr 2018 19:58:36 GMT</pubDate></item><item><title><![CDATA[FOG 1.5.1 and FOG Client 0.11.16 Officially Released]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="http://forums.fogproject.org/uid/88">@neodawg</a> thanks for letting us know, I’ve corrected the download link. (Our publish scripts were pointing at our old release format).</p>
]]></description><link>http://forums.fogproject.org/topic/11701/fog-1-5-1-and-fog-client-0-11-16-officially-released</link><guid isPermaLink="true">http://forums.fogproject.org/topic/11701/fog-1-5-1-and-fog-client-0-11-16-officially-released</guid><dc:creator><![CDATA[Joe Schmitt]]></dc:creator><pubDate>Tue, 10 Apr 2018 04:33:47 GMT</pubDate></item></channel></rss>