<?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>Danny Thorpe</title>
	<atom:link href="http://dannythorpe.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dannythorpe.com</link>
	<description>Dream &#38; Deliver</description>
	<lastBuildDate>Wed, 08 May 2013 21:45:19 +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>
	<atom:link rel='hub' href='http://dannythorpe.com/?pushpress=hub'/>
		<item>
		<title>XACML is Dead? Long Live XACML!</title>
		<link>http://dannythorpe.com/2013/05/08/xacml-is-dead-long-live-xacml/</link>
		<comments>http://dannythorpe.com/2013/05/08/xacml-is-dead-long-live-xacml/#comments</comments>
		<pubDate>Wed, 08 May 2013 21:45:19 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[xacml]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/?p=1018</guid>
		<description><![CDATA[Forrester analyst Andras Cser has proclaimed XACML is Dead. Unfortunately, the data used to justify this proclamation is flawed at many levels. Disclosure: I am the architect of the XACML 3.0 PDP authorization engine at the heart of the Dell/Quest Authorization Policy Server product, and I am a member of the OASIS XACML technical committee. <a href='http://dannythorpe.com/2013/05/08/xacml-is-dead-long-live-xacml/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Forrester analyst Andras Cser has proclaimed <a href="http://blogs.forrester.com/andras_cser/13-05-07-xacml_is_dead">XACML is Dead</a>.</p>
<p>Unfortunately, the data used to justify this proclamation is flawed at many levels.</p>
<p>Disclosure: I am the architect of the XACML 3.0 PDP authorization engine at the heart of the Dell/Quest Authorization Policy Server product, and I am a member of the OASIS XACML technical committee. I am a Dell employee, but the opinions stated here are my own, not my employer&#8217;s.</p>
<p>Cser writes:</p>
<blockquote><p><strong>Lack of broad adoption.</strong> <em>The standard is still not widely adopted with large enterprises who have written their authorization engines.</em></p></blockquote>
<p>Setting out to write your own authorization engine makes as much sense as writing your own operation system or your own encryption algorithm. Authorization is a complex topic. Rolling your own security system for each application is not a good use of resources, nor a good approach to security in general. For businesses savvy enough to recognize this, there is no shortage of capable authorization engine products available on the market today, most of which support XACML either natively or through an interop transform.</p>
<blockquote><p><strong>Inability to serve the federated, extended enterprise.</strong> <em>XACML was designed to meet the authorization needs of the monolithic enterprise where all users are managed centrally in AD. This is clearly not the case today: companies increasingly have to deal with users whose identities they do not manage.</em></p></blockquote>
<p>Wow. Where&#8217;d that come from? XACML has absolutely nothing to do with Active Directory, nor user identity in general. I&#8217;ve helped customers design XACML policy systems that weren&#8217;t dependent upon user identity at all.</p>
<p>A business can write XACML authorization policy rules that test for user identity metadata such as roles, group membership, or attribute values stored in Active Directory. If the business runs multiple AD domains, then they should be careful to write their policy logic in a way that spans their AD domains.</p>
<p>A better solution would be to move away from the central directory model into a claims based model so that the XACML policy rules evaluate security claims about the user submitted with the authorization request. SAML is one mechanism to securely convey user claims. OAuth can carry user claims as well, via token formats such as JWT. When user attributes and claims are presented with the user identity in a XACML authorization request, the XACML PDP can make fine-grain authorization decisions involving user identities from different domains of control. The PDP need only trust the issuer of the user attributes and claims and verify that the cryptographic signature on the user data comes from a trusted issuer.</p>
<blockquote><p><b>PDP does a lot of complex things that it does not inform the PEP about.</b><em>If you get a &#8216;no, you can&#8217;t do that&#8217; decision in the application from the PEP, you&#8217;d want to know why. Our customers tell us that this can prove to be very difficult. The PEP may not be able to find out from the complex PDP evaluation process why an authorization was denied.</em></p></blockquote>
<p>XACML does provide a mechanism for the PDP to communicate such information to the PEP &#8211; Advice. All the business security officer writing policy has to do is attach an Advice element to a policy rule to return information or messages to the PEP and application. Example: If the disk-quota-exceeded rule evaluates to Deny, an Advice element attached to the rule can return a message to the PEP like &#8220;You have exceeded your disk quota of {N} MBytes.&#8221;</p>
<p>Other responses to this criticism of the tight-lipped PDP returning only a terse Permit or Deny authorization decision:</p>
<ul>
<li>&#8220;It&#8217;s none of your business&#8221;</li>
<li>&#8220;That&#8217;s classified&#8221;</li>
<li>&#8220;It&#8217;s not the PEP&#8217;s role to ask why. It asks for permission, it gets a Permit or Deny.&#8221;</li>
<li>&#8220;The decision involved other people&#8217;s personal data which is not appropriate to disclose to you.&#8221;</li>
<li>And my favorite: &#8220;Divulging the details of the factors that led to this decision can be exploited to construct targeted attacks to circumvent the security system&#8221;</li>
</ul>
<p>A PDP can be configured to have access to back-end data that the client application is not trusted with. Returning this data with the decision would present a significant breach of security. The PDP defaults to returning only the authorization decision itself with no supporting data because this is the most secure option for all cases. A policy writer can opt to add Advice elements to rules to selectively disclose data to the PEP about the decision.</p>
<p>Granted, it is useful to have full disclosure of what&#8217;s going on inside the PDP when you are debugging a security policy that isn&#8217;t returning the authorization decisions you wanted. That&#8217;s outside the XACML spec and left as an exercise for the vendors. Because debugging the internal state of a PDP is inherently tied to the implementation details of the PDP, this isn&#8217;t a strong candidate for standardization because every implementation will be different.</p>
<p>When you put your PDP and policies into a production environment, you will turn off everything related to debugging.</p>
<blockquote><p><strong>Not suitable for cloud and distributed deployment.</strong><em> While some PEPs can bundle the PDP for faster performance, using a PEPs in a cloud environment where you only have a WAN link between a PDP and a PEP is not an option.</em></p></blockquote>
<p>Wow. Another &#8220;Where did this come from?&#8221; A PDP should be a stateless service, which makes it ideal for scaling up to thousands of PDP nodes in the cloud to handle any amount of load. With every PDP instance running the same set of policies, so it doesn&#8217;t matter which PDP instance the PEP talks to: they&#8217;ll all give the same authorization decision for a given request.</p>
<p>If you&#8217;re looking at a PDP that cannot be hosted in the cloud or cannot be scaled up through replication because of some statefulness issue, you need to look for another PDP product.</p>
<p>When considering where to place a PDP service relative to an application, it helps to think of the PDP authorization service like storage. Would you implement a cloud hosted application that consumes data stored on your private corporate network? In most cases, probably not because the round-trip latency would drag your app responsiveness down. You&#8217;d locate your storage in the same data center that hosts your app so you have fast and easy access to the data &#8211; and no data bandwidth costs or quotas. In special cases where the data is too sensitive or too large to be uploaded to the cloud, taking the performance hit to remotely access the data residing on your private network may be more acceptable than the general case.</p>
<p>The same is true of other services your cloud-hosted application relies upon, including authorization. In most cases, it makes the most sense to locate one or more PDP servers in the same data center that hosts your app. The PDP servers may need to occasionally get policy updates from your corporate network, but these are relatively rare events and won&#8217;t affect service availability. The use case of having a cloud based app always calling into your corporate network for authorization would be extremely rare/unusual, requiring a mountain of extenuating circumstances to justify.</p>
<blockquote><p><strong>Commercial support is non-existent.</strong> </p></blockquote>
<p>A curious statement considering the Forrester article opened with a mention of a commercial authorization product (Quest APS) which supports XACML and includes PEP libraries to facilitate application development. There&#8217;s no shortage of other commercial XACML PDP system vendors as well.</p>
<p>I suppose the fact that one of the largest network router makers uses XACML as part of their router security policy authoring system doesn&#8217;t count as commercial support for XACML. Or Boeing, or major banks and brokerage houses. I suppose the fact that the US Government (<a href="http://www.disa.mil/Services/Command-and-Control/JPES">Defense Information Systems Agency JPES</a>) requires XACML conformance in new systems doesn&#8217;t count as commercial support either.  That&#8217;s the public sector, after all.</p>
<p>It&#8217;s true that you won&#8217;t find a PEP enabled shrink-wrapped software product in stores today. External authorization doesn&#8217;t provide much benefit for consumer applications installed at home (yet*). Large enterprises generally don&#8217;t send an intern out to pick up a 10,000 seat software product at OfficeMax. We shouldn&#8217;t judge the health of the business software industry by what you find on the shelf at the local office supply store.</p>
<p>(*)With the rapid acceleration of <del datetime="2013-05-08T18:08:26+00:00">the rise of the machines</del> the &#8220;Internet of Things&#8221; (tiny devices all through your house or office that communicate with each other over TCP/IP networks) authorization and access control in the home environment is going to become a big issue very soon.</p>
<blockquote><p><b>Refactoring and rebuilding existing in-house applications is not an option. </b></p></blockquote>
<p>It&#8217;s true. It&#8217;s hard to convert an application built long ago on the premise that it makes its own authorization decisions based on its own internal authorization policy logic into something that defers those decisions to an external authorization service, where policy can be changed rapidly without requiring a redeployment of applications.</p>
<p>You can avoid the cost of refactoring in-house applications by committing development resources to implementing corporate policy logic in each application in your organization, to updating each of those application every time corporate policy changes, and to deploying those updated applications in the field. </p>
<p>This will be <em>much</em> less expensive than refactoring for external authorization, so long as the number of applications you&#8217;re responsible for is less than 2, your corporate policy changes less than once annually, and/or all of your users reside in the same building.</p>
<blockquote><p><b>OAuth supports the mobile application endpoint in a lightweight manner</b><em> XACML today largely supports web based applications. While OAuth&#8217;s current profiles are not a full-blown replacement for XACML functionality, we see that OAuth&#8217;s simplicity made it the de-facto choice for mobile and also non-mobile applications.</em></p></blockquote>
<p>Apples vs oranges here. OAuth doesn&#8217;t provide fine-grain authorization. OAuth doesn&#8217;t provide external policy evaluation either. OAuth is a lighter weight response to things like SAML which can convey identity and user attributes in a secure manner. OAuth is a communication protocol to pass authorization data around securely. XACML is a policy evaluation system that produces authorization data. </p>
<p>You can use OAuth with XACML. You can use OAuth authorize a PEP to make requests to a PDP, or to convey user identity &#038; attributes to the PDP as part of an authorization request. But since OAuth and XACML are fundamentally different things in the authorization stack, one cannot replace the other.</p>
<p>Yes, OAuth&#8217;s relative simplicity has enabled OAuth to trump SAML, particularly in the consumer web application space (Google, Facebook, Twitter, etc). That&#8217;s hardly a criticism of XACML. If constructing XACML authorization requests in XML is too difficult on your mobile device, then use the XACML REST and JSON profiles instead.</p>
<p>I hope you find these data points useful, and I look forward to Forrester learning more about XACML in the future. ;></p>
]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2013/05/08/xacml-is-dead-long-live-xacml/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Delete Your WordPress Admin Account</title>
		<link>http://dannythorpe.com/2013/04/12/delete-your-wordpress-admin-account/</link>
		<comments>http://dannythorpe.com/2013/04/12/delete-your-wordpress-admin-account/#comments</comments>
		<pubDate>Sat, 13 Apr 2013 06:49:29 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[attacks]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/?p=1014</guid>
		<description><![CDATA[Reports are making the rounds of a &#8220;huge attack&#8221; targeting web sites running WordPress. I noticed suspicious behavior in the IP access logs of one of my web sites a little over a year ago. I turned on logging of failed login attempts to get a better picture of what was happening. I checked the <a href='http://dannythorpe.com/2013/04/12/delete-your-wordpress-admin-account/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Reports are making the rounds of a <a href="http://arstechnica.com/security/2013/04/huge-attack-on-wordpress-sites-could-spawn-never-before-seen-super-botnet/" target="_blank">&#8220;huge attack&#8221; targeting web sites running WordPress</a>.</p>
<p>I noticed suspicious behavior in the IP access logs of one of my web sites a little over a year ago. I turned on logging of failed login attempts to get a better picture of what was happening.</p>
<p>I checked the logs a bit later and was shocked by what I found. Thousands of failed login attempts against one WP site in only a few hours. And there was only one user for the site &#8211; me! Login attempts were coming in at a rate of 2 to 3 per second from a fairly small number of IP addresses.</p>
<p>What spooked me most was that all of the login attempts were for the same user account name &#8211; &#8220;admin&#8221;.  Which also happens to be the default admin account name for a WP installation.</p>
<p>It was pretty clear that someone was running a script of some sort attempting to &#8220;brute force&#8221; guess the password for the admin account of my WP web site.</p>
<p>You can and should make sure all your account passwords have sufficient complexity and length to fend off brute force guessing.</p>
<p>Having a strong password isn&#8217;t the end of the story. You can do better than just making it &#8220;very difficult&#8221; to guess your password. You can completely cut off the attacker&#8217;s ability to make password guesses by deleting the default &#8220;admin&#8221; user account of your WP site.  If you don&#8217;t have an &#8220;admin&#8221; account, then they can&#8217;t log into it.</p>
<p>Before deleting your WP &#8220;admin&#8221; account, be sure to create a new WP user account with full admin rights, and give it a nonobvious username. Don&#8217;t use your published &#8220;contact me&#8221; email address. Log into your site as this new admin account, and then delete the default &#8220;admin&#8221; account.</p>
<p>There are many levels of defense you should consider implementing for any web site, including possibly a smart firewall to automatically block rapid and repetitive traffic from the same IP address, but the first step to reduce the risk of someone logging into your site using the default &#8220;admin&#8221; account name is simply to delete the &#8220;admin&#8221; account.</p>
]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2013/04/12/delete-your-wordpress-admin-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Window Firewall Won&#8217;t Start &#8211; Error 6801</title>
		<link>http://dannythorpe.com/2012/10/25/window-firewall-wont-start-error-6801/</link>
		<comments>http://dannythorpe.com/2012/10/25/window-firewall-wont-start-error-6801/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 19:41:23 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[homegroup]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Firewall]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/?p=1004</guid>
		<description><![CDATA[Great googly-moogly. I&#8217;ve been fighting with a variety of services on one of my Windows machines for several weeks. Windows updates have been deadlocked since mid August. Some troubleshooting guide suggested disabling Windows Firewall temporarily until the updates could complete. Not only did disabling Windows Firewall not resolve the Windows Update issue, but Windows Firewall <a href='http://dannythorpe.com/2012/10/25/window-firewall-wont-start-error-6801/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Great googly-moogly. I&#8217;ve been fighting with a variety of services on one of my Windows machines for several weeks. Windows updates have been deadlocked since mid August. Some troubleshooting guide suggested disabling Windows Firewall temporarily until the updates could complete.</p>
<p>Not only did disabling Windows Firewall not resolve the Windows Update issue, but Windows Firewall would not restart! I mucked around with it for a bit, and then put the whole machine aside for a rainy day repaving.</p>
<p>More recently, I decided to see what this Windows 7 Homegroup thing was about. Set it up on a few machines on the home network, and&#8230; nothing. Everybody&#8217;s on the same homegroup password, and at least a few machines are sharing folders with the homegroup, but nothing shows up in the homegroup list.  Digging around in one machine turned up an error starting the Homegroup Listener service. Probably important for listening to other homegroup members, eh?</p>
<p>It turns out that the Homegroup Listener service requires the Windows Firewall service to be running. And wouldn&#8217;t you know, this is the machine that can&#8217;t start Windows Firewall.</p>
<p>A little more investigation led me to <a href="http://answers.microsoft.com/en-us/windows/forum/windows_vista-security/windows-firewall-wont-start-error-code-6801-in/cf717fcb-2127-486a-b4c7-2af24a9cde96">this thread about Windows Firewall system error 6801</a>. In amongs several guesses was this note from &#8220;DPTower&#8221;:</p>
<blockquote><p>FIXED IT! - For all having this specific problem, please follow these steps!!<br />
Open a &#8220;run as administrator&#8221; command prompt.<br />
Go to &#8220;c:\windows\system32\config\TxR&#8221; (or the equivalent location on your PC)<br />
- run &#8220;attrib –H –S *&#8221; to make all hidden files in the directory visible.<br />
- run &#8220;del *.blf&#8221;<br />
- run &#8220;del *.regtrans-ms&#8221;<br />
- reboot the machine</p></blockquote>
<p>This didn&#8217;t sound like your usual pundit taking wild guesses, and the answer had been voted up many times by others. So I gave it a try. Deleted those files, rebooted the machine, went to enable Windows Firewall, and boom! It started!  Hazaah!</p>
<p>Up next: catching up on 2 months and 200MB of Windows Updates.  And while that&#8217;s cooking I&#8217;ll poke at this Homegroup thing some more.  (Is it true that Homegroup doesn&#8217;t play well with IPv6? What genius dreamed up that limitation? My entire home network is IPv6!)</p>
]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2012/10/25/window-firewall-wont-start-error-6801/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Are DELL</title>
		<link>http://dannythorpe.com/2012/09/28/we-are-dell/</link>
		<comments>http://dannythorpe.com/2012/09/28/we-are-dell/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 16:14:38 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[acquisition]]></category>
		<category><![CDATA[BiTKOO]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Quest]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/?p=998</guid>
		<description><![CDATA[Dell has completed the acquisition of Quest Software. We are now Dell! It has been a busy year or so. I joined BiTKOO in October 2010 to help expand and scale BiTKOO&#8217;s push into the nascent XACML external authorization space. 14 months later, Quest Software acquired BiTKOO in part to fill a gap in Quest&#8217;s <a href='http://dannythorpe.com/2012/09/28/we-are-dell/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Dell has <a href="http://www.quest.com/landing/?ID=7576">completed the acquisition</a> of Quest Software. We are now Dell!</p>
<p>It has been a busy year or so. I joined BiTKOO in October 2010 to help expand and scale BiTKOO&#8217;s push into the nascent XACML external authorization space.</p>
<p>14 months later, Quest Software acquired BiTKOO in part to fill a gap in Quest&#8217;s identity and authorization management offerings.</p>
<p>Now, less than a year after that, Dell has acquired Quest Software. Quest&#8217;s people and products will help Dell establish a strong presence in the enterprise software and services market, particularly in the identity and access management space. Dell brings to Quest an enormous increase in sales force and customer contact, which translates into a huge bump in software revenue and resources for further technology development. Quest is great for Dell.  Dell is great for Quest people, Quest products, and Quest customers!</p>
<p>I expect we will continue executing on Quest product cycles and technology roadmaps uninterrupted through the Dell integration process over the course of the next year or so.</p>
<p>I look forward to engaging with my new Dell colleagues to solve identity and authorization challenges for our new Dell customers &#8211; and beyond!</p>
]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2012/09/28/we-are-dell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Cast Glass</title>
		<link>http://dannythorpe.com/2012/09/19/first-cast-glass/</link>
		<comments>http://dannythorpe.com/2012/09/19/first-cast-glass/#comments</comments>
		<pubDate>Wed, 19 Sep 2012 23:08:43 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Ceramics]]></category>
		<category><![CDATA[3d printed mold]]></category>
		<category><![CDATA[glass casting]]></category>
		<category><![CDATA[recycled glass]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/?p=964</guid>
		<description><![CDATA[I&#8217;ve wondered for awhile whether my old electric kiln could manage the long slow heat soak required for glass casting. Flat kilns with heating elements in the top are recommended for hot glass work because a) a lot of glass work is flat (plates, windows) and b) heating large flat pieces of glass from the <a href='http://dannythorpe.com/2012/09/19/first-cast-glass/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve wondered for awhile whether my old electric kiln could manage the long slow heat soak required for glass casting. Flat kilns with heating elements in the top are recommended for hot glass work because a) a lot of glass work is flat (plates, windows) and b) heating large flat pieces of glass from the sides isn&#8217;t very efficient.</p>
<p>But, if you take your time you can melt glass in any shape of kiln so long as it  can reach the required temperatures and hold at specific temps for long periods of time. Glass slumping, fusing, and casting actually require lower kiln temperatures than firing clay ceramics, but you have to maintain those temps a lot longer than for ceramics.</p>
<p>So one weekend I decided to give glass bottle deconstruction a try. Since this was primarily a test of material and kiln performance, the shape wasn&#8217;t particularly important. I grabbed a cylindrical mold I had printed in Hydroperm plaster on my Z406 3D printer. I print these little dishes up by the dozen to use as single-use crucibles for material testing in the kiln. Today that material would be recycled bottle glass.</p>

<a href='http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0686/' title='Molten Glass'><img width="150" height="99" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0686-150x99.jpg" class="attachment-thumbnail" alt="Molten wine bottle glass in a plaster mold. Temp is about 1500F." /></a>
<a href='http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0692/' title='Green Bottle Glass Slug'><img width="150" height="99" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0692-150x99.jpg" class="attachment-thumbnail" alt="Top surface of cast glass &quot;slug&quot;. Marbling shows the edges of the glass shards before they melted and fused together." /></a>
<a href='http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0693/' title='Edge'><img width="150" height="99" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0693-150x99.jpg" class="attachment-thumbnail" alt="Edge detail of glass &quot;slug&quot;" /></a>
<a href='http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0694/' title='Mold Surface Detail'><img width="150" height="99" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0694-150x99.jpg" class="attachment-thumbnail" alt="Grainy surface where the glass was in contact with the 3D printed mold" /></a>
<a href='http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0695/' title='Green Eye'><img width="150" height="99" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0695-150x99.jpg" class="attachment-thumbnail" alt="Love that depth of character and complexity" /></a>

<p>I grabbed a green wine bottle from the recycling bin, wrapped it in a heavy canvas, and gave it several good whacks with a hammer.  (Hint: start by breaking the neck of the bottle first, then work up to the body).</p>
<p>I filled the mold with glass shards, standing most of the large pieces on edge to pack them in tighter and to reduce the chance of air bubbles getting trapped inside. Less than a third of the bottle&#8217;s glass went into this slug.</p>
<p>The kiln firing schedule for glass is very different from firing clay ceramics. Glass needs to be heated and cooled much more slowly than clay to avoid thermal shock. Glass can soak up a lot of heat energy, but it is a very poor conductor of heat. Most of my kiln firings for clay take less than 24 hours to ramp up and cool back down. For this small glass slug, the firing time was almost double that. Glass pieces that are inches thick at the core can require many days of kiln time, mostly for the controlled cooling and annealing soak times.</p>
<div id="attachment_965" class="wp-caption alignnone" style="width: 705px"><a href="http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0686/" rel="attachment wp-att-965"><img class="size-large wp-image-965" title="Molten Glass" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0686-1024x680.jpg" alt="" width="695" height="461" /></a><p class="wp-caption-text">Molten wine bottle glass in a plaster mold. Temp is about 1500F.</p></div>
<p>After firing the mold becomes a crumbly powder &#8211; still strong enough to hold its shape against the weight of the glass, but a half-inch thick wall will easily crumble when pinched between thumb and forefinger. Demolding the piece is easy &#8211; just brush with a whisk broom.</p>
<p>After demolding, there were a few sharps that needed to be ground down. Most were on the top side of the glass, where glass had stuck to the side of the mold and left a thin razor edge shard sticking up from the edge of the disk. A few minutes at the grinding wheel took care of that.</p>
<p>The slug is a little more than half an inch thick. At that thickness, green bottle glass is nearly black except when strongly lit from behind. A thinner casting would show more color with ambient light.</p>
<div id="attachment_969" class="wp-caption alignnone" style="width: 705px"><a href="http://dannythorpe.com/2012/09/19/first-cast-glass/dsc_0695/" rel="attachment wp-att-969"><img class="size-large wp-image-969" title="Green Eye" src="http://dannythorpe.com/wordpress/wp-content/uploads/2012/09/DSC_0695-1024x680.jpg" alt="" width="695" height="461" /></a><p class="wp-caption-text">Love that depth of character and complexity</p></div>
<p>I love the complexity of &#8220;stuff&#8221; going on inside the slug that&#8217;s revealed when held to the light. This would work well for sconces and other back-lit or interior-lit thingamabobs.</p>
]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2012/09/19/first-cast-glass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
