<?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>Whiteboard Media</title>
	<atom:link href="http://www.whiteboardmedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whiteboardmedia.com</link>
	<description>e Happen to Really Like Wordpress</description>
	<lastBuildDate>Sun, 22 Jan 2012 13:03:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Security and Cyber Attacks</title>
		<link>http://www.whiteboardmedia.com/security-and-cyber-attacks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=security-and-cyber-attacks</link>
		<comments>http://www.whiteboardmedia.com/security-and-cyber-attacks/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 13:50:47 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Security & Development]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=321</guid>
		<description><![CDATA[Security and cyber attacks in the World Wide Web This...]]></description>
				<content:encoded><![CDATA[<p>Security and cyber attacks in the World Wide Web</p>
<p>This month, reading my usual tech news and newspapers, I realized that there were a lot of attacks and security issues to different companies, some of them very important. So, let’s talk about security!</p>
<p>Let see some examples</p>
<ul>
<li>Sony: The group whom did the attack said (and confirmed by Sony):<br />
“We recently broke into SonyPictures.com and compromised over 1,000,000 users’ personal information, including passwords, email addresses, home addresses, dates of birth and all Sony opt-in data associated with their accounts. Among other things, we also compromised all admin details of Sony Pictures (including passwords) along with 75,000 ‘music codes’ and 3.5 million ‘music coupons’.”</li>
<li>Gmail: “&#8230;Google has announced that Chinese hackers are at it again &#8212; this time, targeting Gmail account holders&#8230;”</li>
<li>WordPress Repositories: “Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.”</li>
<li>Citibank: “While Citigroup insisted the breach had been limited, experts called it the largest direct attack on a major U.S. financial institution, and said it could prompt an overhaul of the banking industry&#8217;s data security measures.”</li>
</ul>
<p>How is it possible that these really huge companies, have these kinds of serious problems? The answer is really pretty simple: the software and applications run by these companies are made by, well &#8211; people like you and me! No matter what the name of the company, or how big is it or anything&#8230; there is always a programmer.</p>
<p>So, what do I mean by this? Well, it means that as humans we can make mistakes &#8211; we can have a bad night and start coding while a bit sleepy, or rush to meet a deadline.   All the while, thinking/hoping: “It will never happen to me!”.  Or, as is often the case, the security layer is something that programmers and software developers leave until the end, because you have to run with the project timeline, and your boss is getting crazy, so what do we avoid to achieve the goals? Yes, don’t worry about all that &#8216;security&#8217; stuff!</p>
<p>“Note a curious trait of human behavior  (formalized in <a href="http://en.wikipedia.org/wiki/Prospect_theory">prospect theory</a> – developed by <a href="http://en.wikipedia.org/wiki/Daniel_Kahneman">Daniel Kahneman</a> and <a href="http://en.wikipedia.org/wiki/Amos_Tversky">Amos Tversky</a> in 1979), that people (including managers who buy security) are <a href="http://www.econport.org/econport/request?page=man_ru_basics4">risk-averse</a> over prospects involving gains, but <a href="http://www.econport.org/econport/request?page=man_ru_basics4">risk-loving</a> over prospects involving losses.”</p>
<p>Interesting right?</p>
<p>Let’s try to explain a few things about security and how can we make our sites more secure. But keep in mind one important point: it doesn’t mean that your site, coded with security in mind, will be impossible to break in to.  You should always be suspicious when someone tells you “I can make your site 100% secure”.  Instead, it means your site will be protected against many common attacks (there are hundreds, and new kinds of attacks are developed every day), and it will give you some “best practices” for coding.</p>
<p>I like to think that website security is a day by day process, more of a vigilant routine and a way of interacting with a fast-evolving internet than a one-time effort.  Just because a site was humming along quietly a month ago with no security issues doesn’t mean it is still secure today.</p>
<p>First of all, what is Security?</p>
<p>Wikipedia said:<br />
“Security is the degree of protection against danger, damage, loss, and crime. Security as a form of protection are structures and processes that provide or improve security as a condition&#8230;”</p>
<p>And what about Information Security ?</p>
<p>“Information security means protecting information and information systems from unauthorized access, use, disclosure, disruption, modification, perusal, inspection, recording or destruction&#8230;”</p>
<p>So, what can we do from our desks to make our code more secure, to protect our information from unauthorized access, to not loss information, and so on?  Be aware! That’s the key!  You need to think that every input can be a potential attack.</p>
<p>We will talk about tow of the most commons attack and how can we prevent attacks.</p>
<ul>
<li>Sql Injection</li>
<li>Cross Site Scripting (XSS)</li>
</ul>
<p>Sql Injection</p>
<p>This is one of the ways Sony was hacked. This is a very common security issue, and very easy to let an attacker control everything in your site.<br />
Basically a Sql Injection is the ability to make your application runs SQL code that wasn’t intented to run.<br />
It means that an attacker would be able to run things like “delete * from users”, or “select * from users”, over your user table. Or get any other information in your database, like credit card accounts, passwords, address,  grant administrative privileges without supplying a valid user name and password, compromised data integrity, remote command execution, etc.</p>
<p>Cross Site Scripting (XSS)</p>
<p>This kind of attack, has almost the same principle than Sql Injection. Basically it tries to inject Script Code into trusted web sites. Doing this, an attacker can (and more):</p>
<ul>
<li>Accessing sensitive or restricted information</li>
<li>Gaining free access to otherwise paid for content</li>
<li>Spying on user’s web browsing habits</li>
<li>Altering browser functionality</li>
<li>Public defamation of an individual or corporation</li>
<li>Denial of Service attacks</li>
</ul>
<p>These are tow of the most important vulnerabilities, but quiet easy to avoid, don’t worry, you will get the rights tool in the next posts!</p>
<p>Keep reading!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/security-and-cyber-attacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping Pulse on Profesional WordPress Plugin and Theme Ecosytem</title>
		<link>http://www.whiteboardmedia.com/keeping-pulse-profesional-wordpress-plugin-and-theme-ecosystem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=keeping-pulse-profesional-wordpress-plugin-and-theme-ecosystem</link>
		<comments>http://www.whiteboardmedia.com/keeping-pulse-profesional-wordpress-plugin-and-theme-ecosystem/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 01:58:22 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=287</guid>
		<description><![CDATA[It&#8217;s been nearly a decade since WordPress was born, and...]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s been nearly a decade since WordPress was born, and in that time it&#8217;s become a true internet phenomenon: nearly 48 million websites are running WordPress &#8211; and about half of those are self hosted (the other half reside on wordpress.com).  That is a huge number of websites &#8211; and as you can see by this site and dozens of other ones that we&#8217;ve designed and built on WordPress, it&#8217;s not just about blogging anymore.</p>
<p><strong>Why Such a Large Reach?</strong><br />
This incredibly flexible and extendible application has been successful partly as a result of the equally impressive theme and plugin ecosystem that it has fostered.  Through a well-documented and very powerful API library, a clear <a href="http://wordpress.org/about/roadmap/">development roadmap</a>, as well as a commitment to an <a href="http://wordpress.org/about/license/">open GPL license</a> structure, developers and designers alike are able to extend WordPress to suit their needs and the changing internet marketplace.</p>
<p>This really is unique.  If you look at other dominant ecosystems (Apple&#8217;s iPhone or Microsoft Windows, for example) there is plenty of evidence to show that more &#8216;developer friendly&#8217; systems with open-source philosophies (e.g. Google&#8217;s Android or Linux) gain traction over time.  Now, I could devote an entire series of posts to comparing the virtues and strengths of these great products, but the point here is that WordPress has done something right in the last 5 years, and I think that is because of a pretty great combination that allows people like me (and thousands of others around the world) to build outstanding, highly functional, and secure websites that meet the needs of our ever-changing clients:</p>
<ol>
<li>High quality, rigorous, and regular development of the WordPress core.  You guys rock.</li>
<li>A rich marketplace of free and professional themes and theme frameworks, running on free software that works (see above).</li>
<li>A powerful API which allows plugin developers to extend WordPress way beyond its stated functional walls.</li>
</ol>
<p>Since the crew at <a href="http://automattic.com/">Automattic</a> is taking care of point #1, who is leading the charge when it comes to #2 and #3?  In short: some of the best and brightest minds on the web.  Here is my short list, highlighting what I think are some of the unique and defining aspects of each sector.  I will go into more detail about these WP leaders in upcoming posts.</p>
<p><strong>Themes</strong></p>
<ul>
<li>The hive approach:  themeforest.com is the clear leader here.</li>
<li>The cowboys:  press75.com and elegantthemes.com</li>
<li>The coders:  StudioPress and DIYThemes (Thesis)</li>
<li>The business types: Woothemes</li>
</ul>
<p><strong>Plugins</strong></p>
<ul>
<li>The narrow niche: gravityforms.com and shopplugin.net</li>
<li>The free and fearless: yoast.com</li>
<li>The ambitious: bravenewcode.com</li>
</ul>
<p><strong>So What is Our Niche?</strong><br />
I&#8217;m writing about plugins and themes because our team at Whiteboard Media is busy working on, well, plugins and themes.   The reasons are simple: we need them for our own projects, we like to do cool stuff, and we see opportunity in the marketplace.</p>
<p>Currently we just released a Member Management plugin called <a href="http://wordpress.org/extend/plugins/maven-member/">Maven Member</a>, which is really like putting raw meat in a pool of sharks.  Our goal is to iterate and learn with the help of the WordPress community, and there is no better way to do that then in an area like member management: it&#8217;s hard to find a &#8220;one size fits all&#8221; and so the solution we&#8217;re coding really needs to perform at a high level.</p>
<p>In a few month we&#8217;ll be launching a new service, called SiteMavens, which will offer WordPress hosting along with a stable of professional themes and plugins that we think will make a positive contribution to the expanding needs of WordPress developers and customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/keeping-pulse-profesional-wordpress-plugin-and-theme-ecosystem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jacob Smith</title>
		<link>http://www.whiteboardmedia.com/jacob/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jacob</link>
		<comments>http://www.whiteboardmedia.com/jacob/#comments</comments>
		<pubDate>Tue, 31 May 2011 22:40:08 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=120</guid>
		<description><![CDATA[Jacob is a co-owner and senior consultant at Whiteboard Media. He comes from a diverse background that uniquely combines the creative and business worlds.]]></description>
				<content:encoded><![CDATA[<p>Jacob is a co-owner and senior consultant at Whiteboard Media. He comes from a diverse background that uniquely combines the creative and business worlds. Jacob holds degrees in Music, English Literature, and Business Management from Carnegie Mellon University, and has worked as a professional bassoonist, served as a start-up consultant for many successful ventures (including DelphianSG, Broadway Telephone and Telegraph and MerchantPlus), and built Whiteboard Media from the ground up. Jacob brings a high level of commitment to all Whiteboard Media clients and has a passion for helping businesses and non-profits succeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/jacob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meg Smith</title>
		<link>http://www.whiteboardmedia.com/meg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=meg</link>
		<comments>http://www.whiteboardmedia.com/meg/#comments</comments>
		<pubDate>Tue, 31 May 2011 23:20:30 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=123</guid>
		<description><![CDATA[Meg is a co-owner, and creative director at Whiteboard Media. Her industry experience spans 8 years and includes website design, digital resource management, marketing, online strategy, SEO/SEM, and training and support.]]></description>
				<content:encoded><![CDATA[<p>Meg is a co-owner, and creative director at Whiteboard Media. Her industry experience spans 8 years and includes website design, digital resource management, marketing, online strategy, SEO/SEM, and training and support.</p>
<p>Prior to her time at Whiteboard, Meg worked as an in-house designer and webmistress at a local non-profit, as a digital archivist in both corporate and university settings, and as a classical oboist.</p>
<p>When not online, Meg enjoys spending time with her husband and two young sons, running, knitting, and cooking local foods.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/meg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>camdenhealth.org</title>
		<link>http://www.whiteboardmedia.com/camden-coalition-of-healthcare-providers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=camden-coalition-of-healthcare-providers</link>
		<comments>http://www.whiteboardmedia.com/camden-coalition-of-healthcare-providers/#comments</comments>
		<pubDate>Wed, 25 May 2011 18:19:16 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Our Work]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=61</guid>
		<description><![CDATA[Recently, we worked with CCHP on camdenhealth.org to develop a...]]></description>
				<content:encoded><![CDATA[<p>Recently, we worked with <strong>CCHP</strong> on camdenhealth.org to develop a site that better meets the needs of the variety of visitors that utilize it, including a member protected area for healthcare providers.</p>
<p>The Coalition is a citywide organization of social workers, nurses, physicians, administrators, hospitals, health services organizations, and clinics that serve the health needs of Camden, New Jersey residents.</p>
<p>Goals included creating a design that was not only clean and professional, but that reflected unique elements of the city of Camden. This was achieved through use of clean lines, stark contrasts, and strong imagery. Another goal was to develop a fast site that is easy to update, a custom map, a downloads area, and a contact form.</p>
<p>The site was developed into xhtml/css and then integrated with WordPress, and is hosted on our premium servers. The member area is controlled by a custom plugin, that will be released to the public in September 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/camden-coalition-of-healthcare-providers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Felix Widjaja</title>
		<link>http://www.whiteboardmedia.com/felix/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=felix</link>
		<comments>http://www.whiteboardmedia.com/felix/#comments</comments>
		<pubDate>Tue, 31 May 2011 23:22:40 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=126</guid>
		<description><![CDATA[Felix is a senior web designer at Whiteboard Media. In his early career, he worked as a cellular telecommunications programmer and system analyst. ]]></description>
				<content:encoded><![CDATA[<p>Felix is a senior web designer at Whiteboard Media. In his early career, he worked as a cellular telecommunications programmer and system analyst. However, his childhood passion for the internet eventually lead him to specialize in website design, programming and its related technology.</p>
<p>He has collaborated on a wide variety of projects with Whiteboard Media since 2007 and brings a high level of dedication and creativity to every assignment. With the addition of several new faces, Felix has also moved easily into a management role as we build our team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/felix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pupung Budi Purnama</title>
		<link>http://www.whiteboardmedia.com/pupung/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pupung</link>
		<comments>http://www.whiteboardmedia.com/pupung/#comments</comments>
		<pubDate>Tue, 31 May 2011 23:25:36 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=128</guid>
		<description><![CDATA[Pupung recently joined Whiteboard Media as a full time developer, specializing in WordPress integrations and functional development.]]></description>
				<content:encoded><![CDATA[<p>Pupung recently joined Whiteboard Media as a full time developer, specializing in WordPress integrations and functional development, as well as making each site &#8220;pixel perfect.&#8221; He has extensive experience with php, xhtml/css, and theming and we look forward to a long and happy relationship with him.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/pupung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FindNonprofitJobs.org</title>
		<link>http://www.whiteboardmedia.com/findnonprofitjobs-org/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=findnonprofitjobs-org</link>
		<comments>http://www.whiteboardmedia.com/findnonprofitjobs-org/#comments</comments>
		<pubDate>Tue, 24 May 2011 08:52:31 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Our Work]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=26</guid>
		<description><![CDATA[As the nonprofit that knows nonprofits, it makes sense that...]]></description>
				<content:encoded><![CDATA[<p>As the nonprofit that knows nonprofits, it makes sense that The Nonprofit Center at La Salle University wanted to provide a centralized site to search for all things related to nonprofit jobs.</p>
<p><strong>The site services: </strong></p>
<ul>
<li>Organizations posting staff openings</li>
<li>Organizations recruiting board members and other volunteers</li>
<li>Individuals looking to match their skills to a nonprofit</li>
</ul>
<p>With a custom content management system built on CodeIgniter, the center is able to accept posts, allow for multi level listings, provide automatic email updates to subscribers when new jobs in their interest groups are posted, and accept advertising. The site is hosted on our premium CMS plan.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/findnonprofitjobs-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ronggur Hutasuhut</title>
		<link>http://www.whiteboardmedia.com/ronggur-hutasuhutwordpress-developer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ronggur-hutasuhutwordpress-developer</link>
		<comments>http://www.whiteboardmedia.com/ronggur-hutasuhutwordpress-developer/#comments</comments>
		<pubDate>Tue, 31 May 2011 23:26:43 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://server4.whiteboardmedia.com/~whiteboa/?p=130</guid>
		<description><![CDATA[Ronggur has worked closely with Whiteboard Media for over two years as a developer, and is a master at building creative WordPress solutions.]]></description>
				<content:encoded><![CDATA[<p>Ronggur has worked closely with Whiteboard Media for over two years as a developer, and is a master at building creative WordPress solutions for even the most complex projects. He is also hard at work on several plugins, and is overall just a really nice guy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/ronggur-hutasuhutwordpress-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kamal Chaneman</title>
		<link>http://www.whiteboardmedia.com/kamal-chaneman/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kamal-chaneman</link>
		<comments>http://www.whiteboardmedia.com/kamal-chaneman/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 13:39:24 +0000</pubDate>
		<dc:creator>Jacob Smith</dc:creator>
				<category><![CDATA[Behind the Scene]]></category>

		<guid isPermaLink="false">http://www.whiteboardmedia.com/?p=339</guid>
		<description><![CDATA[Kamal joined Whiteboard Media as a front end developer in...]]></description>
				<content:encoded><![CDATA[<p>Kamal joined Whiteboard Media as a front end developer in February 2011, and came on as a full-time team member in May. He is passionate about creating modern, elegant, functional websites using semantic XHTML and CSS. Coffee and Music are his fuel and extra inspiration.</p>
<p>Previously an accountant, Kamal discovered web design and development back in 2002 and later completed his degree.</p>
<p>In his spare time, he enjoys soccer, travel, and relaxing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whiteboardmedia.com/kamal-chaneman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: www.whiteboardmedia.com @ 2013-05-19 15:03:58 by W3 Total Cache -->