<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1816654185723805585</id><updated>2011-11-19T10:02:30.686-08:00</updated><category term='Hacking'/><title type='text'>Bridewin</title><subtitle type='html'>I am a Engineer who has completed Engineering in Information Technology from Xavier Institute of Engineering Mahim and Diploma from Institute of Technology. Likes computer very much, has knowledge of Technology and Hacking.....And other thing I want to say is that everything mentioned in this blog is only for educational and knowledge purpose.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-1231360787689851496</id><published>2011-02-19T00:42:00.000-08:00</published><updated>2011-02-19T00:44:16.133-08:00</updated><title type='text'>ASP .Net Web Handlers</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;m:smallfrac m:val="off"&gt;    &lt;m:dispdef&gt;    &lt;m:lmargin m:val="0"&gt;    &lt;m:rmargin m:val="0"&gt;    &lt;m:defjc m:val="centerGroup"&gt;    &lt;m:wrapindent m:val="1440"&gt;    &lt;m:intlim m:val="subSup"&gt;    &lt;m:narylim m:val="undOvr"&gt;   &lt;/m:narylim&gt;&lt;/m:intlim&gt; &lt;/m:wrapindent&gt;  &lt;/m:defjc&gt;&lt;/m:rmargin&gt;&lt;/m:lmargin&gt;&lt;/m:dispdef&gt;&lt;/m:smallfrac&gt;&lt;br /&gt;&lt;div style="border-color: -moz-use-text-color -moz-use-text-color rgb(79, 129, 189); border-style: none none solid; border-width: medium medium 1pt; padding: 0in 0in 2pt;"&gt;&lt;div class="underline"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="PadderBetweenControlandBody"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="border-color: -moz-use-text-color -moz-use-text-color rgb(79, 129, 189); border-style: none none solid; border-width: medium medium 1pt; padding: 0in 0in 4pt;"&gt;&lt;div class="MsoTitle"&gt;ASP .Net Generic Handlers&lt;/div&gt;&lt;/div&gt;&lt;div align="center" class="MsoNormal" style="text-align: center;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-1BB8u5hvkOY/TV-C04SPQ3I/AAAAAAAAACs/IMxiJybmKS8/s1600/Web+handler.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="256" src="http://1.bp.blogspot.com/-1BB8u5hvkOY/TV-C04SPQ3I/AAAAAAAAACs/IMxiJybmKS8/s320/Web+handler.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;Generic handlers are also called as web handlers. Just as ASPX files can be compiled on the fly (just-in-time), so can handlers. Generic handlers have an extension of ASHX. They contain classes that fully implement IHttpHandler. They're convenient in the same way ASPX files are convenient. You simply surf to them and they're compiled automatically.&lt;/div&gt;&lt;div class="MsoNormal"&gt;Now you would probably have a question in your mind that “why should I use a generic handlers when I can do same thing using web service? “ Now if you know web service needs a consumer event or page to consume its output but in case of Generic Handler you do not need a consumer service. You just can browse through the page where IHttpHandler will do the rest of the work for you or maybe you are in a situation where you need output from something without calling any function, in such scenario web handlers are very handy!&lt;/div&gt;&lt;div class="MsoNormal"&gt;So suppose you want to start using a web handler you can learn to use the same thing from here:&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/prathore/ASHXfileHandler03272009023910AM/ASHXfileHandler.aspx"&gt;http://www.c-sharpcorner.com/UploadFile/prathore/ASHXfileHandler03272009023910AM/ASHXfileHandler.aspx&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;My point is to help people know things as easily as possible so I use copy paste since everything is available in internet! Ctrl+C and Ctrl+V the most prominent tool!&lt;/div&gt;&lt;div class="MsoNormal"&gt;My main reason to come across Web handlers is due to auto complete feature in my project where I was not allowed to use Ajax since I work in a domain which is mainly linked to banking sector, where security and machine speed is considered at high end! In short there are lot of bankers who are very high profiled and they don’t have high configuration machine and they have requirement of security and high functional application with less trouble. So I was enforced to use Jquery. &lt;/div&gt;&lt;div class="MsoNormal"&gt;Ah!! I was at auto complete. Now you must have seen in &lt;a href="http://www.google.com/"&gt;www.google.com&lt;/a&gt; when you type something you get the rest of the things coming up in text box! Ya that is auto complete. Now this one I got it from some site which seems to be worthy for me &lt;a href="http://www.aspsnippets.com/Articles/Using-jQuery-AutoComplete-Plugin-in-ASP.Net.aspx"&gt;http://www.aspsnippets.com/Articles/Using-jQuery-AutoComplete-Plugin-in-ASP.Net.aspx&lt;/a&gt; try it out!&lt;/div&gt;&lt;div class="MsoNormal"&gt;So Happy Learning!&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-1231360787689851496?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/1231360787689851496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=1231360787689851496' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/1231360787689851496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/1231360787689851496'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2011/02/asp-net-web-handlers.html' title='ASP .Net Web Handlers'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-1BB8u5hvkOY/TV-C04SPQ3I/AAAAAAAAACs/IMxiJybmKS8/s72-c/Web+handler.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-3051864489833536965</id><published>2011-01-16T02:10:00.001-08:00</published><updated>2011-01-17T16:27:21.180-08:00</updated><title type='text'></title><content type='html'>&lt;span xmlns=""&gt;&lt;span style="color: #17365d; font-size: 26pt;"&gt;How to develop an application from the Scratch?&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;h1&gt;Pre-requisite:&lt;br /&gt;&lt;/h1&gt;&lt;ol&gt;&lt;li&gt;You should know to copy paste (Ctrl+C and Ctrl+V). This helps to increase your speed since there is no point in reinventing the wheels.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You should know OOPS .If you don't know OOPS refer to this section before proceeding further (&lt;a href="http://www.codeproject.com/KB/architecture/OOP_Concepts_and_manymore.aspx"&gt;http://www.codeproject.com/KB/architecture/OOP_Concepts_and_manymore.aspx&lt;/a&gt;). Now you must be knowing basics of OOPS and how to apply it.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Once you are done with OOPS you should know what is Three-Tier Architecture? If you don't know what is Three-Tier Architecture you can refer to this link &lt;a href="http://www.codeproject.com/KB/architecture/three_tier_architecture.aspx"&gt;http://www.codeproject.com/KB/architecture/three_tier_architecture.aspx&lt;/a&gt; .In today's world all application is build in Three-Tier and N-Tier architecture. So following this structure is most important since it reduces programming complexity and redundant coding as well as helps to maintain integrity and consistency.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now if you want to &lt;b&gt;M&lt;/b&gt;ost &lt;b&gt;V&lt;/b&gt;alued &lt;b&gt;P&lt;/b&gt;rofessional then you should follow a Coding Standard. I have chosen a best coding standard specified by dotnetspider.com &lt;a href="http://www.dotnetspider.com/tutorials/CodingStandards.doc"&gt;http://www.dotnetspider.com/tutorials/CodingStandards.doc&lt;/a&gt; here is it! &lt;br /&gt;&lt;/li&gt;&lt;li&gt;You must have noticed by this time that I am copy pasting most of the contents and links from most of the sites since this is available easily. So without explaining itself you should know how to search using search engine.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You should know how to create a database either in Ms Access, Ms SQL Server or Oracle.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You should have good knowledge of programming either .net or free sources such as Java.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;As well as you should know how to use IDE such as Visual Studio or Eclipse or Net Beans.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h1&gt;Application Development&lt;br /&gt;&lt;/h1&gt;&lt;ol&gt;&lt;li&gt;This is the simplest phase of a project. Once you have done with the Pre-requisite you would be having good knowledge about OOPS and programming so in no time or with less time you will be able to make an Application.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The first and most important thing you need to know is what you are going to develop. You should have a proper idea in your mind about how thing should flow. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;The other important part if you are developing an application for a client you should cull out entire proper requirement from your client so that you can develop application efficiently if you have not done the same in Software Engineering Phase otherwise simply ignores this. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now you must choose a language to use during software development. For my flexibility I am choosing C# .net so that I get most of the content easily available in internet as most of the developer stick with this. Remember Copy Paste!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;div&gt;Now you should make  &lt;/div&gt;&lt;ol&gt;&lt;li&gt;Database (Ms Access, SQL Server or Oracle)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;DAL (Data Access Layer)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;BAL (Business Access Layer) or BLL (Business Logic Layer)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;UI (User Interface)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You can follow the same as shown in this sample project &lt;a href="http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx"&gt;http://www.codeproject.com/KB/vb/N-Tier_Application_VB.aspx&lt;/a&gt;. Just follow this structure you will be able to reach proper end. Now in this DAL should be made first then BAL or BLL then UI. As per the sequence.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;li&gt;I hope you have used proper coding standards! Now your application would be able to run at most of the condition. Now slowly and slowly you can enhance your application if you have used proper coding standards as I have mentioned.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h1&gt;Code Enhancement:&lt;br /&gt;&lt;/h1&gt;&lt;ol&gt;&lt;li&gt;&lt;div&gt;When you go for a bigger application you should always make sure that you should not use stored procedure just to avoid SQL injection. Instead you can validate the same with the help of replace ' with '' and trim.&lt;/div&gt;For Eg.:&lt;br /&gt;&lt;br /&gt;String QueryString(String str) &lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;Return Str.Replace("&lt;b&gt;'&lt;/b&gt;","&lt;b&gt;''&lt;/b&gt;").trim();&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.4guysfromrolla.com/webtech/061902-1.shtml"&gt;http://www.4guysfromrolla.com/webtech/061902-1.shtml&lt;/a&gt; as shown in this link you can make a Common.cs file (in case you are choosing C#) containing such validations in DAL.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Always remember you should not mix up programming logic with database logic. Always keep them at there on place.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;There are several such tips for development which I will be explaining in my coming articles.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-3051864489833536965?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/3051864489833536965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=3051864489833536965' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3051864489833536965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3051864489833536965'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2011/01/how-to-develop-application-from-scratch.html' title=''/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-8102873919885028990</id><published>2010-03-21T19:15:00.000-07:00</published><updated>2010-03-21T19:25:48.278-07:00</updated><title type='text'>4G Technology Our Future....</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/S6bTG3WvwJI/AAAAAAAAACU/WaqrbAW-keM/s1600-h/4G+Mobile+system.jpg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 239px;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/S6bTG3WvwJI/AAAAAAAAACU/WaqrbAW-keM/s320/4G+Mobile+system.jpg" alt="" id="BLOGGER_PHOTO_ID_5451276513870594194" border="0" /&gt;&lt;/a&gt;             We all are the prominent users of mobile technology. At present 2G Technology (GSM) is widely used worldwide. The problem with 2G technology is that the data rates are limited. This makes it inefficient for Data Transfer applications like video conferencing, music or video downloads, etc. To increase the speed various new technologies have come into picture. The first is 2.5G (GPRS) and second is 2.75G (EDGE) technologies that allows data transfer at a better rate than 2G and recently 3G (WCDMA/UMTS) technology has come into picture. The maximum theoretical data transfer with this 3G technology is 2Mbps (practically it could be a 384Kbps max or even less).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;           4G refers to the fourth generation of cellular wireless and is a successor to 3G and 2G standards. The 4G technology which is at its infancy is suppose to allow data transfer upto 100Mbps outdoor I.e while moving and 1Gbps indoor I.e while on stable position.4G is capable of providing users with streaming high-definition television, the content of a DVD-5 (for example a movie) can be downloaded within about 5 minutes for offline access. The main objective of the 4G technology is to accommodate the Quality of Service and rate requirements set by forthcoming applications like wireless broadband access, Multimedia Messaging Service (MMS), video chat, mobile TV, HDTV content, Digital Video Broadcasting (DVB), minimal services like voice and data, and other services that utilize bandwidth.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;             For getting Quality of Service 4G working group has set some standards such as spectrally efficient system (in bits/s/Hz and bits/s/Hz/site) , High network capacity: more simultaneous users per cell, smooth handoff across heterogeneous networks (that means there won’t be any call failure if there is change in network), Seamless connectivity and global roaming across multiple networks, High quality of service for next generation multimedia support, Interoperability with existing wireless standards (so that the old model cell phone can also be used with the new network without any changes) , An all IP packet switched network.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            As described in 4G consortia including WINNER (Wireless-World-Initiative-New-Radio) and WWRF (Wireless World Research Forum), where WINNER is a consortium to enhance mobile communication systems and a key technology based approach has summarized and considered points as "Coverage, radio environment, spectrum, services, business models and deployment types, users".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The principal technologies used are :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Baseband techniques:&lt;/li&gt;&lt;ol&gt;&lt;li&gt;OFDM: To exploit the frequency selective channel property&lt;/li&gt;&lt;li&gt;MIMO: To attain ultra high spectral efficiency&lt;/li&gt;&lt;li&gt;Turbo principle: To minimize the required SNR at the reception side&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;Adaptive radio interface&lt;/li&gt;&lt;li&gt;Modulation, spatial processing including multi-antenna and multi-user MIMO&lt;/li&gt;&lt;li&gt;Relaying, including fixed relay networks (FRNs), and the cooperative relaying concept, known as multi-mode protocol&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;           Unlike 3G, which is based on two parallel infrastructures consisting of circuit switched and packet switched network nodes respectively, 4G will be based on packet switching only. This will require low-latency data transmission.&lt;br /&gt;&lt;br /&gt;            By the time that 4G is deployed, the process of IPv4 address exhaustion is expected to be in its final stages. Therefore, in the context of 4G, IPv6 support is essential in order to support a large number of wireless-enabled devices. By increasing the number of IP addresses, IPv6 removes the need for Network Address Translation (NAT), a method of sharing a limited number of addresses among a larger group of devices, although NAT will still be required to communicate with devices that are on existing IPv4 networks.&lt;br /&gt;&lt;br /&gt;             The current 4G service providers in the world are Clear, Sprint &amp;amp; T-Mobile and some other very few worthy to be counted on our fingers. But these services are not full fledge and it is available in only few cities across the world like Atlanta, Charlotte, Chicago, Philadelphia etc.&lt;br /&gt;&lt;br /&gt;              Where as in India current technology being used is 2G and 3G, where as 3G is only provided by only BSNL &amp;amp; MTNL service provider. Any how these technology has not fully flourish since MTNL is still testing its connection in Delhi. Moreover BSNL 3G service charges Rs. 1/MB for limited type connection and Rs. 3000 Monthly for Unlimited connection.&lt;br /&gt;&lt;br /&gt;                comparing 4G technology with 3G technology we can easily find that resource utilization is less hence we can expect low cost if 4G technology is implemented in India. According to a recent news item, China has decided to move to 4G networks, bypassing 3G. Since there are many problems in allocating 3G spectrum to telecom networks and in setting up 3G mobile networks at high costs and China have been examining these issues since 2003.&lt;br /&gt;&lt;br /&gt;                 Some of the mobile phone that support 3G technology are like Nokia, Lure, Motorola, BlackBerry where as some of the mobile phone that support 4G technology are like HTC, iPhone, Motorola. So its not difficult adopt to changing technology with a little bit of high cost for a new Mobile Phone!!&lt;br /&gt;&lt;br /&gt;                Anyhow who does not want a 1Gbps connection...!! Everyone love’s to have the fastest technology  on there hands!! so lets hope for the 4G connection to be launched in India as soon as possible like it happened in China!! Since other service providers did not launch 3G so we can still have a hope..!!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                                                                                            &lt;span style="font-weight: bold;"&gt;- Palakal Bridewin Durandose&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;                                                                                                                         &lt;span style="font-style: italic;"&gt;&lt;br /&gt; B.E.(I.T)&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-8102873919885028990?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/8102873919885028990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=8102873919885028990' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/8102873919885028990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/8102873919885028990'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2010/03/4g-technology-our-future.html' title='4G Technology Our Future....'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OPAmV7JhSBc/S6bTG3WvwJI/AAAAAAAAACU/WaqrbAW-keM/s72-c/4G+Mobile+system.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-7466847394526592861</id><published>2009-11-02T06:19:00.000-08:00</published><updated>2009-11-02T06:31:33.516-08:00</updated><title type='text'>Query Processing &amp; Deductive Database</title><content type='html'>&lt;!--[if !mso]&gt; &lt;style&gt; v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} &lt;/style&gt; &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves&gt;false&lt;/w:TrackMoves&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face  {font-family:Wingdings;  panose-1:5 0 0 0 0 0 0 0 0 0;  mso-font-charset:2;  mso-generic-font-family:auto;  mso-font-pitch:variable;  mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face  {font-family:"Cambria Math";  panose-1:2 4 5 3 5 4 6 3 2 4;  mso-font-charset:1;  mso-generic-font-family:roman;  mso-font-format:other;  mso-font-pitch:variable;  mso-font-signature:0 0 0 0 0 0;} @font-face  {font-family:Cambria;  panose-1:2 4 5 3 5 4 6 3 2 4;  mso-font-charset:0;  mso-generic-font-family:roman;  mso-font-pitch:variable;  mso-font-signature:-1610611985 1073741899 0 0 159 0;} @font-face  {font-family:Calibri;  panose-1:2 15 5 2 2 2 4 3 2 4;  mso-font-charset:0;  mso-generic-font-family:swiss;  mso-font-pitch:variable;  mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal  {mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-parent:"";  margin-top:0in;  margin-right:0in;  margin-bottom:10.0pt;  margin-left:0in;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} h1  {mso-style-priority:9;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-link:"Heading 1 Char";  mso-style-next:Normal;  margin-top:24.0pt;  margin-right:0in;  margin-bottom:0in;  margin-left:0in;  margin-bottom:.0001pt;  line-height:115%;  mso-pagination:widow-orphan lines-together;  page-break-after:avoid;  mso-outline-level:1;  font-size:14.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#365F91;  mso-themecolor:accent1;  mso-themeshade:191;  mso-font-kerning:0pt;} h2  {mso-style-priority:9;  mso-style-qformat:yes;  mso-style-link:"Heading 2 Char";  mso-style-next:Normal;  margin-top:10.0pt;  margin-right:0in;  margin-bottom:0in;  margin-left:0in;  margin-bottom:.0001pt;  line-height:115%;  mso-pagination:widow-orphan lines-together;  page-break-after:avoid;  mso-outline-level:2;  font-size:13.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#4F81BD;  mso-themecolor:accent1;} h3  {mso-style-priority:9;  mso-style-qformat:yes;  mso-style-link:"Heading 3 Char";  mso-style-next:Normal;  margin-top:10.0pt;  margin-right:0in;  margin-bottom:0in;  margin-left:0in;  margin-bottom:.0001pt;  line-height:115%;  mso-pagination:widow-orphan lines-together;  page-break-after:avoid;  mso-outline-level:3;  font-size:11.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#4F81BD;  mso-themecolor:accent1;} p.MsoTitle, li.MsoTitle, div.MsoTitle  {mso-style-priority:10;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-link:"Title Char";  mso-style-next:Normal;  margin-top:0in;  margin-right:0in;  margin-bottom:15.0pt;  margin-left:0in;  mso-add-space:auto;  mso-pagination:widow-orphan;  border:none;  mso-border-bottom-alt:solid #4F81BD 1.0pt;  mso-border-bottom-themecolor:accent1;  padding:0in;  mso-padding-alt:0in 0in 4.0pt 0in;  font-size:26.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#17365D;  mso-themecolor:text2;  mso-themeshade:191;  letter-spacing:.25pt;  mso-font-kerning:14.0pt;} p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst  {mso-style-priority:10;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-link:"Title Char";  mso-style-next:Normal;  mso-style-type:export-only;  margin:0in;  margin-bottom:.0001pt;  mso-add-space:auto;  mso-pagination:widow-orphan;  border:none;  mso-border-bottom-alt:solid #4F81BD 1.0pt;  mso-border-bottom-themecolor:accent1;  padding:0in;  mso-padding-alt:0in 0in 4.0pt 0in;  font-size:26.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#17365D;  mso-themecolor:text2;  mso-themeshade:191;  letter-spacing:.25pt;  mso-font-kerning:14.0pt;} p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle  {mso-style-priority:10;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-link:"Title Char";  mso-style-next:Normal;  mso-style-type:export-only;  margin:0in;  margin-bottom:.0001pt;  mso-add-space:auto;  mso-pagination:widow-orphan;  border:none;  mso-border-bottom-alt:solid #4F81BD 1.0pt;  mso-border-bottom-themecolor:accent1;  padding:0in;  mso-padding-alt:0in 0in 4.0pt 0in;  font-size:26.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#17365D;  mso-themecolor:text2;  mso-themeshade:191;  letter-spacing:.25pt;  mso-font-kerning:14.0pt;} p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast  {mso-style-priority:10;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-link:"Title Char";  mso-style-next:Normal;  mso-style-type:export-only;  margin-top:0in;  margin-right:0in;  margin-bottom:15.0pt;  margin-left:0in;  mso-add-space:auto;  mso-pagination:widow-orphan;  border:none;  mso-border-bottom-alt:solid #4F81BD 1.0pt;  mso-border-bottom-themecolor:accent1;  padding:0in;  mso-padding-alt:0in 0in 4.0pt 0in;  font-size:26.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#17365D;  mso-themecolor:text2;  mso-themeshade:191;  letter-spacing:.25pt;  mso-font-kerning:14.0pt;} p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph  {mso-style-priority:34;  mso-style-unhide:no;  mso-style-qformat:yes;  margin-top:0in;  margin-right:0in;  margin-bottom:10.0pt;  margin-left:.5in;  mso-add-space:auto;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst  {mso-style-priority:34;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-type:export-only;  margin-top:0in;  margin-right:0in;  margin-bottom:0in;  margin-left:.5in;  margin-bottom:.0001pt;  mso-add-space:auto;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle  {mso-style-priority:34;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-type:export-only;  margin-top:0in;  margin-right:0in;  margin-bottom:0in;  margin-left:.5in;  margin-bottom:.0001pt;  mso-add-space:auto;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast  {mso-style-priority:34;  mso-style-unhide:no;  mso-style-qformat:yes;  mso-style-type:export-only;  margin-top:0in;  margin-right:0in;  margin-bottom:10.0pt;  margin-left:.5in;  mso-add-space:auto;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} span.Heading1Char  {mso-style-name:"Heading 1 Char";  mso-style-priority:9;  mso-style-unhide:no;  mso-style-locked:yes;  mso-style-link:"Heading 1";  mso-ansi-font-size:14.0pt;  mso-bidi-font-size:14.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#365F91;  mso-themecolor:accent1;  mso-themeshade:191;  font-weight:bold;} span.Heading2Char  {mso-style-name:"Heading 2 Char";  mso-style-priority:9;  mso-style-unhide:no;  mso-style-locked:yes;  mso-style-link:"Heading 2";  mso-ansi-font-size:13.0pt;  mso-bidi-font-size:13.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#4F81BD;  mso-themecolor:accent1;  font-weight:bold;} span.Heading3Char  {mso-style-name:"Heading 3 Char";  mso-style-priority:9;  mso-style-unhide:no;  mso-style-locked:yes;  mso-style-link:"Heading 3";  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#4F81BD;  mso-themecolor:accent1;  font-weight:bold;} span.TitleChar  {mso-style-name:"Title Char";  mso-style-priority:10;  mso-style-unhide:no;  mso-style-locked:yes;  mso-style-link:Title;  mso-ansi-font-size:26.0pt;  mso-bidi-font-size:26.0pt;  font-family:"Cambria","serif";  mso-ascii-font-family:Cambria;  mso-ascii-theme-font:major-latin;  mso-fareast-font-family:"Times New Roman";  mso-fareast-theme-font:major-fareast;  mso-hansi-font-family:Cambria;  mso-hansi-theme-font:major-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:major-bidi;  color:#17365D;  mso-themecolor:text2;  mso-themeshade:191;  letter-spacing:.25pt;  mso-font-kerning:14.0pt;} span.mw-headline  {mso-style-name:mw-headline;  mso-style-unhide:no;} .MsoChpDefault  {mso-style-type:export-only;  mso-default-props:yes;  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-fareast-font-family:Calibri;  mso-fareast-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;  mso-bidi-font-family:"Times New Roman";  mso-bidi-theme-font:minor-bidi;} .MsoPapDefault  {mso-style-type:export-only;  margin-bottom:10.0pt;  line-height:115%;} @page Section1  {size:8.5in 11.0in;  margin:1.0in 1.0in 1.0in 1.0in;  mso-header-margin:.5in;  mso-footer-margin:.5in;  mso-paper-source:0;} div.Section1  {page:Section1;}  /* List Definitions */  @list l0  {mso-list-id:468479910;  mso-list-type:hybrid;  mso-list-template-ids:-1782692766 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1  {mso-level-tab-stop:none;  mso-level-number-position:left;  text-indent:-.25in;} @list l1  {mso-list-id:1082609532;  mso-list-type:hybrid;  mso-list-template-ids:465721836 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} @list l1:level1  {mso-level-number-format:bullet;  mso-level-text:;  mso-level-tab-stop:none;  mso-level-number-position:left;  text-indent:-.25in;  font-family:Symbol;} @list l2  {mso-list-id:1465930944;  mso-list-type:hybrid;  mso-list-template-ids:-876293142 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l2:level1  {mso-level-tab-stop:none;  mso-level-number-position:left;  text-indent:-.25in;} ol  {margin-bottom:0in;} ul  {margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable  {mso-style-name:"Table Normal";  mso-tstyle-rowband-size:0;  mso-tstyle-colband-size:0;  mso-style-noshow:yes;  mso-style-priority:99;  mso-style-qformat:yes;  mso-style-parent:"";  mso-padding-alt:0in 5.4pt 0in 5.4pt;  mso-para-margin-top:0in;  mso-para-margin-right:0in;  mso-para-margin-bottom:10.0pt;  mso-para-margin-left:0in;  line-height:115%;  mso-pagination:widow-orphan;  font-size:11.0pt;  font-family:"Calibri","sans-serif";  mso-ascii-font-family:Calibri;  mso-ascii-theme-font:minor-latin;  mso-hansi-font-family:Calibri;  mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;div style="border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(79, 129, 189); border-width: medium medium 1pt; padding: 0in 0in 4pt; color: rgb(51, 51, 51);"&gt;  &lt;p class="MsoTitle"&gt;Case Study: Query Processing &amp;amp; Deductive Database&lt;/p&gt;  &lt;/div&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;h1 style="color: rgb(51, 51, 51);"&gt;Query processing:&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;a style="color: rgb(51, 51, 51);" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_OPAmV7JhSBc/Su7rWw942mI/AAAAAAAAAB8/ksI3QRXFINw/s1600-h/1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 245px; height: 253px;" src="http://4.bp.blogspot.com/_OPAmV7JhSBc/Su7rWw942mI/AAAAAAAAAB8/ksI3QRXFINw/s320/1.JPG" alt="" id="BLOGGER_PHOTO_ID_5399511779597933154" border="0" /&gt;&lt;/a&gt;&lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;The retrieval of information from a database according to a set of retrieval criteria, the database itself remaining unchanged. &lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;In the context of a specific query language, the technique of translating the retrieval criteria specified using the language into more primitive database-access software, including a selection among different methods to choose the most efficient in the particular circumstances.&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;We now give an overview of how a DDBMS processes and optimizes a query. We first discuss the communication costs of processing a distributed query; we then discuss a special operation, called a semijoin, that is used in optimizing some types of queries in a DDBMS.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h2 style="margin-left: 0.5in; text-indent: -0.25in; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;1.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;Data Transfer Costs of Distributed Query Processing:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;In a distributed system, several additional factors further complicate query processing. The first is the cost of transferring data over the network. This data includes intermediate files that are transferred to other sites for further processing, as well as the final result files that may have to be transferred to the site where the query result is needed. Although these costs may not be very high if the sites are connected via a high-performance local area network, they become quite significant in other types of networks. Hence, DDBMS query optimization algorithms consider the goal of reducing the amount of data transfer as an optimization criterion in choosing a distributed query execution strategy.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;We illustrate this with two simple example queries. Consider the relations EMPLOYEE and DEPARTMENT.&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;a style="color: rgb(51, 51, 51);" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_OPAmV7JhSBc/Su7rkpgGMII/AAAAAAAAACE/nWb-vqiNvv4/s1600-h/2.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 210px;" src="http://1.bp.blogspot.com/_OPAmV7JhSBc/Su7rkpgGMII/AAAAAAAAACE/nWb-vqiNvv4/s320/2.bmp" alt="" id="BLOGGER_PHOTO_ID_5399512018112098434" border="0" /&gt;&lt;/a&gt;&lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h3 style="color: rgb(51, 51, 51);"&gt;&lt;span style=""&gt;There are three simple strategies for executing this distributed query:&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpFirst" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;1.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Transfer both the EMPLOYEE and the DEPARTMENT relations to the result site, and perform the join at site 3. In this case a total of 1,000,000 + 3500 = 1,003,500 bytes must be transferred.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;2.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt; &lt;/span&gt;Transfer the EMPLOYEE relation to site 2, execute the join at site 2, and send the result to site 3. The size of the query result is 40 * 10,000 = 400,000 bytes, so 400,000 + 1,000,000 = 1,400,000 bytes must be transferred.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;3.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Transfer the DEPARTMENT relation to site 1, execute the join at site 1, and send the result to site 3. In this case 400,000 + 3500 = 403,500 bytes must be transferred. If minimizing the amount of data transfer is our optimization criterion, we should choose strategy 3. &lt;/p&gt;  &lt;p class="MsoListParagraphCxSpMiddle" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoListParagraphCxSpLast"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;h2 style="margin-left: 0.5in; text-indent: -0.25in; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;2.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;Distributed Query Processing Using Semijoin:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;The idea behind distributed query processing using the semijoin operation is to reduce the number of tuples in a relation before transferring it to another site. Intuitively, the idea is to send the joining column of one relation R to the site where the other relation S is located; this column is then joined with S. Following that, the join attributes, along with the attributes required in the result, are projected out and shipped back to the original site and joined with R. Hence, only the joining column of R is transferred in one direction, and a subset of S with no extraneous tuples or attributes is transferred in the other direction. If only a small fraction of the tuples in S participate in the join, this can be quite an efficient solution to minimizing data transfer.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h2 style="margin-left: 0.5in; text-indent: -0.25in; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;span style=""&gt;3.&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;Query and Update Decomposition:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;In a DDBMS with no distribution transparency, the user phrases a query directly in terms of specific fragments. For example, consider another query Q: "Retrieve the names and hours per week for each employee who works on some project controlled by department 5," which is specified on the distributed database where the relations at sites 2 and 3 are shown in the figure&lt;span style=""&gt;  &lt;/span&gt;and those at site 1 are shown in the figure as in the earlier example. A user who submits such a query must specify whether it references the PROJS5 and WORKS_ON5 relations at site 2 or the PROJECT and WORKS_ON relations at site 1. The user must also maintain consistency of replicated data items when updating a DDBMS with no replication transparency.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;On the other hand, a DDBMS that supports full distribution, fragmentation, and replication transparency allows the user to specify a query or update request on the schema of the figure just as though the DBMS were centralized. For updates, the DDBMS is responsible for maintaining consistency among replicated items by using one of the distributed concurrency control algorithms. For queries, a query decomposition module must break up or decompose a query into subqueries that can be executed at the individual sites. In addition, a strategy for combining the results of the subqueries to form the query result must be generated. Whenever the DDBMS determines that an item referenced in the query is replicated, it must choose or materialize a particular replica during query execution.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;To determine which replicas include the data items referenced in a query, the DDBMS refers to the fragmentation, replication, and distribution information stored in the DDBMS catalog. For vertical fragmentation, the attribute list for each fragment is kept in the catalog. For horizontal fragmentation, a condition, sometimes called a guard, is kept for each fragment. This is basically a selection condition that specifies which tuples exist in the fragment; it is called a guard because only tuples that satisfy this condition are permitted to be stored in the fragment. For mixed fragments, both the attribute list and the guard condition are kept in the catalog.&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;h1 style="color: rgb(51, 51, 51);"&gt;Deductive Database:&lt;/h1&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;A deductive database system is a &lt;a href="http://en.wikipedia.org/wiki/Database_system" title="Database system"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;database system&lt;/span&gt;&lt;/a&gt; which can make &lt;a href="http://en.wikipedia.org/wiki/Deductive_reasoning" title="Deductive reasoning"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;deductions&lt;/span&gt;&lt;/a&gt; (ie: conclude additional facts) based on &lt;a href="http://en.wiktionary.org/wiki/rule" title="wiktionary:rule"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;rules&lt;/span&gt;&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Facts" title="Facts"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;facts&lt;/span&gt;&lt;/a&gt; stored in the (deductive) database. &lt;a href="http://en.wikipedia.org/wiki/Datalog" title="Datalog"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;Datalog&lt;/span&gt;&lt;/a&gt; is the language typically used&lt;span style="line-height: 150%;font-family:&amp;quot;;font-size:12pt;"  &gt; &lt;/span&gt;to specify facts, rules and queries in deductive databases. Deductive databases have grown out of the desire to combine &lt;a href="http://en.wikipedia.org/wiki/Logic_programming" title="Logic programming"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;logic programming&lt;/span&gt;&lt;/a&gt; with &lt;a href="http://en.wikipedia.org/wiki/Relational_database" title="Relational database"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;relational databases&lt;/span&gt;&lt;/a&gt; to construct systems that support a powerful formalism and are still fast and able to deal with very large datasets. Deductive databases are more expressive than relational databases but less expressive than logic programming systems. Deductive databases have not found widespread adoptions outside academia, but some of their concepts are used&lt;span style="line-height: 150%;font-family:&amp;quot;;font-size:12pt;"  &gt; &lt;/span&gt;in today's relational databases to support the advanced features of more recent &lt;a href="http://en.wikipedia.org/wiki/SQL" title="SQL"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;SQL&lt;/span&gt;&lt;/a&gt; standards.&lt;span style="line-height: 150%;font-family:&amp;quot;;font-size:12pt;"  &gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h2 style="color: rgb(51, 51, 51);"&gt;&lt;span class="mw-headline"&gt;&lt;span style="line-height: 115%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;h2 style="color: rgb(51, 51, 51);"&gt;&lt;span class="mw-headline"&gt;&lt;span style="line-height: 115%;"&gt;Deductive databases and logic programming:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%; color: rgb(51, 51, 51);"&gt;Deductive databases reuse a large number of concepts from logic programming; rules and facts specified in the deductive database language Datalog look very similar to those in &lt;a href="http://en.wikipedia.org/wiki/Prolog" title="Prolog"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;Prolog&lt;/span&gt;&lt;/a&gt;. However, there are a number of important differences between deductive databases and logic programming:&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpFirst" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-family:Symbol;"&gt;&lt;span style=""&gt;·&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Order sensitivity and procedurality: In Prolog program execution depends on the order of rules in the program and on the order of parts of rules; these properties are used by programmers to build effective programs. In database languages (like SQL or Datalog), however, program execution is independent of the order or rules and facts.&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-family:Symbol;"&gt;&lt;span style=""&gt;·&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Special predicates: In Prolog programmers can directly influence the procedural evaluation of the program with special predicates such as the &lt;a href="http://en.wikipedia.org/wiki/Cut_%28logic_programming%29" title="Cut (logic programming)"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;cut&lt;/span&gt;&lt;/a&gt;, this has no correspondence in deductive databases.&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-family:Symbol;"&gt;&lt;span style=""&gt;·&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Function symbols: Logic Programming languages allow &lt;a href="http://en.wikipedia.org/wiki/Functional_predicate" title="Functional predicate"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;function symbols&lt;/span&gt;&lt;/a&gt; to build up complex symbols. This is not allowed in deductive databases.&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpLast" style="text-indent: -0.25in; line-height: 150%; color: rgb(51, 51, 51);"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-family:Symbol;"&gt;&lt;span style=""&gt;·&lt;span style=";font-family:&amp;quot;;font-size:7pt;"  &gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Tuple oriented processing: Deductive databases use set oriented processing while logic programming languages concentrate on one tuple at a time.&lt;/p&gt;  &lt;p style="color: rgb(51, 51, 51);" class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-7466847394526592861?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/7466847394526592861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=7466847394526592861' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7466847394526592861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7466847394526592861'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2009/11/query-processing-deductive-database.html' title='Query Processing &amp; Deductive Database'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_OPAmV7JhSBc/Su7rWw942mI/AAAAAAAAAB8/ksI3QRXFINw/s72-c/1.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-1464652427403451861</id><published>2009-11-01T07:25:00.000-08:00</published><updated>2009-11-01T07:30:26.886-08:00</updated><title type='text'>OODBMS (Object Oriented Database Management System) Basics</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/Su2pWqCxrQI/AAAAAAAAAB0/TeFonBwOhaE/s1600-h/architecture_vod_neu.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 283px;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/Su2pWqCxrQI/AAAAAAAAAB0/TeFonBwOhaE/s320/architecture_vod_neu.gif" alt="" id="BLOGGER_PHOTO_ID_5399157734995242242" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;OODBMS System&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;An object database (also object-oriented database) is a database model in which information is represented in the form of objects as used in object-oriented programming.&lt;br /&gt;&lt;br /&gt;Object databases are a niche field within the broader DBMS market dominated by relational database management systems (RDBMS). Object databases have been considered since the early 1980s and 1990s but they have made little impact on mainstream commercial data processing, though there is some usage in specialized areas.&lt;br /&gt;&lt;br /&gt;When database capabilities are combined with object-oriented (OO) programming language capabilities, the result is an object database management system (ODBMS).&lt;br /&gt;&lt;br /&gt;Today’s trend in programming languages is to utilize objects, thereby making OODBMS ideal for OO programmers because they can develop the product, store them as objects, and can replicate or modify existing objects to make new objects within the OODBMS. Information today includes not only data but video, audio, graphs, and photos which are considered complex data types. Relational DBMS aren’t natively capable of supporting these complex data types. By being integrated with the programming language, the programmer can maintain consistency within one environment because both the OODBMS and the programming language will use the same model of representation. Relational DBMS projects using complex data types would have to be divided into two separate tasks: the database model and the application.&lt;br /&gt;&lt;br /&gt;As the usage of web-based technology increases with the implementation of Intranets and extranets, companies have a vested interest in OODBMS to display their complex data. Using a DBMS that has been specifically designed to store data as objects gives an advantage to those companies that are geared towards multimedia presentation or organizations that utilize computer-aided design (CAD).&lt;br /&gt;&lt;br /&gt;Some object-oriented databases are designed to work well with object-oriented programming languages such as Python, Perl, Java, C#, Visual Basic .NET, C++, Objective-C and Smalltalk; others have their own programming languages. ODBMSs use exactly the same model as object-oriented programming languages.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Advantages:&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;The main benefit of creating a database with objects as data is speed.&lt;/li&gt;&lt;li&gt;OODBMS are faster than relational DBMS because data isn’t stored in relational rows and columns but as objects.&lt;/li&gt;&lt;li&gt;Objects have a many to many relationship and are accessed by the use of pointers.&lt;/li&gt;&lt;li&gt;Pointers are linked to objects to establish relationships.&lt;/li&gt;&lt;li&gt;Another benefit of OODBMS is that it can be programmed with small procedural differences without affecting the entire system.&lt;/li&gt;&lt;li&gt;This is most helpful for those organizations that have data relationships that aren’t entirely clear or need to change these relations to satisfy the new business requirements.&lt;/li&gt;&lt;li&gt;This ability to change relationships leads to another benefit which is that relational DBMS can’t handle complex data models while OODBMS can.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Disadvantages:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Slower and more difficult to formulate than relational.&lt;/li&gt;&lt;li&gt;Lack of interoperability with a great number of tools/features that are taken for granted in the SQL world, including but not limited to industry standard connectivity, reporting tools, OLAP tools, and backup and recovery standards.&lt;/li&gt;&lt;li&gt;Lack a formal mathematical foundation, unlike the relational model, and this in turn leads to weaknesses in their query support.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Applications:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Object databases based on persistent programming acquired a niche in application areas such as engineering and spatial databases, telecommunications, and scientific areas such as high energy physics and molecular biology. They have made little impact on mainstream commercial data processing, though there is some usage in specialized areas of financial services. It is also worth noting that object databases held the record for the World's largest database (being the first to hold over 1000 terabytes at Stanford Linear Accelerator Center) and the highest ingest rate ever recorded for a commercial database at over one Terabyte per hour.&lt;br /&gt;&lt;br /&gt;Another group of object databases focuses on embedded use in devices, packaged software, and real-time systems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-1464652427403451861?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/1464652427403451861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=1464652427403451861' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/1464652427403451861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/1464652427403451861'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2009/11/oodbms-object-oriented-database.html' title='OODBMS (Object Oriented Database Management System) Basics'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OPAmV7JhSBc/Su2pWqCxrQI/AAAAAAAAAB0/TeFonBwOhaE/s72-c/architecture_vod_neu.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-7215120322128205550</id><published>2009-09-23T06:47:00.000-07:00</published><updated>2009-09-23T06:51:18.793-07:00</updated><title type='text'>Hackers the true Heros</title><content type='html'>   		&lt;title&gt;&lt;/title&gt; 	&lt;meta name="GENERATOR" content="OpenOffice.org 3.0  (Linux)"&gt; 	&lt;style type="text/css"&gt; 	&lt;!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		A:link { so-language: zxx } 	--&gt; 	&lt;/style&gt;  &lt;p style="margin-bottom: 0cm;"&gt;&lt;span style="font-weight: bold;"&gt;Jonathan James:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_sYvfAmcrLXg/So50hD-1ThI/AAAAAAAAAK4/ZVNhf7GCrTY/s400/GW227H240.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh4.ggpht.com/_sYvfAmcrLXg/So50hD-1ThI/AAAAAAAAAK4/ZVNhf7GCrTY/s400/GW227H240.jpeg" name="graphics1" align="bottom" border="1" height="240" width="227" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;ames gained notoriety when he became the first juvenile to be sent to prison for hacking. He was sentenced at 16 years old. In an anonymous PBS interview, he professes, "I was just looking around, playing around. What was fun for me was a challenge to see what I could pull off."&lt;br /&gt;&lt;br /&gt;James's major intrusions targeted high-profile organizations. He installed a backdoor into a Defense Threat Reduction Agency server. The DTRA is an agency of the Department of Defense charged with reducing the threat to the U.S. and its allies from nuclear, biological, chemical, conventional and special weapons. The backdoor he created enabled him to view sensitive emails and capture employee usernames and passwords.&lt;br /&gt;&lt;br /&gt;James also cracked into NASA computers, stealing software worth approximately $1.7 million. According to the Department of Justice, "The software supported the International Space Station's physical environment, including control of the temperature and humidity within the living space." NASA was forced to shut down its computer systems, ultimately racking up a $41,000 cost. James explained that he downloaded the code to supplement his studies on C programming, but contended, "The code itself was crappy . . . certainly not worth $1.7 million like they claimed."&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Adrian Lamo:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh6.ggpht.com/_sYvfAmcrLXg/So50tJ4fzvI/AAAAAAAAALE/U8bacRBzQQ8/s400/GW240H239.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh6.ggpht.com/_sYvfAmcrLXg/So50tJ4fzvI/AAAAAAAAALE/U8bacRBzQQ8/s400/GW240H239.jpeg" name="graphics2" align="bottom" border="1" height="239" width="240" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Lamo's claim to fame is his break-ins at major organizations like The New York Times and Microsoft. Dubbed the "homeless hacker," he used Internet connections at Kinko's, coffee shops and libraries to do his intrusions. In a profile article, "He Hacks by Day, Squats by Night," Lamo reflects, "I have a laptop in Pittsburgh, a change of clothes in D.C. It kind of redefines the term multi-jurisdictional."&lt;br /&gt;&lt;br /&gt;Lamo's intrusions consisted mainly of penetration testing, in which he found flaws in security, exploited them and then informed companies of their shortcomings. His hits include Yahoo!, Bank of America, Citigroup and Cingular. When white hat hackers are hired by companies to do penetration testing, it's legal. What Lamo did is not.&lt;br /&gt;&lt;br /&gt;When he broke into The New York Times' intranet, things got serious. He added himself to a list of experts and viewed personal information on contributors, including Social Security numbers. Lamo also hacked into The Times' LexisNexis account to research high-profile subject matter.&lt;br /&gt;&lt;br /&gt;For his intrusion at The New York Times, Lamo was ordered to pay approximately $65,000 in restitution. He was also sentenced to six months of home confinement and two years of probation, which expired January 16, 2007. Lamo is currently working as an award-winning journalist and public speaker.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Kevin Mitnick:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/_sYvfAmcrLXg/So50STLLR5I/AAAAAAAAAKs/mTUexuslwPE/s400/GW145H240.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh3.ggpht.com/_sYvfAmcrLXg/So50STLLR5I/AAAAAAAAAKs/mTUexuslwPE/s400/GW145H240.jpeg" name="graphics3" align="bottom" border="1" height="240" width="145" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A self-proclaimed "hacker poster boy," Mitnick went through a highly publicized pursuit by authorities. His mischief was hyped by the media but his actual offenses may be less notable than his notoriety suggests. The Department of Justice describes him as "the most wanted computer criminal in United States history." His exploits were detailed in two movies: Freedom Downtime and Takedown.&lt;br /&gt;&lt;br /&gt;Mitnick had a bit of hacking experience before committing the offenses that made him famous. He started out exploiting the Los Angeles bus punch card system to get free rides. Then, like Apple co-founder Steve Wozniak, dabbled in phone phreaking. Although there were numerous offenses, Mitnick was ultimately convicted for breaking into the Digital Equipment Corporation's computer network and stealing software.&lt;br /&gt;&lt;br /&gt;Mitnick's mischief got serious when he went on a two and a half year "coast-to-coast hacking spree." The CNN article, "Legendary computer hacker released from prison," explains that "he hacked into computers, stole corporate secrets, scrambled phone networks and broke into the national defense warning system." He then hacked into computer expert and fellow hacker Tsutomu Shimomura's home computer, which led to his undoing.&lt;br /&gt;&lt;br /&gt;Today, Mitnick has been able to move past his role as a black hat hacker and become a productive member of society. He served five years, about 8 months of it in solitary confinement, and is now a computer security consultant, author and speaker.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Kevin Poulsen:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_sYvfAmcrLXg/So505oR3BqI/AAAAAAAAALQ/hWqd0RzA8vw/s400/GW174H240.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh4.ggpht.com/_sYvfAmcrLXg/So505oR3BqI/AAAAAAAAALQ/hWqd0RzA8vw/s400/GW174H240.jpeg" name="graphics4" align="bottom" border="1" height="240" width="174" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Also known as Dark Dante, Poulsen gained recognition for his hack of LA radio's KIIS-FM phone lines, which earned him a brand new Porsche, among other items. Law enforcement dubbed him "the Hannibal Lecter of computer crime."&lt;br /&gt;&lt;br /&gt;Authorities began to pursue Poulsen after he hacked into a federal investigation database. During this pursuit, he further drew the ire of the FBI by hacking into federal computers for wiretap information.&lt;br /&gt;&lt;br /&gt;His hacking specialty, however, revolved around telephones. Poulsen's most famous hack, KIIS-FM, was accomplished by taking over all of the station's phone lines. In a related feat, Poulsen also "reactivated old Yellow Page escort telephone numbers for an acquaintance who then ran a virtual escort agency." Later, when his photo came up on the show Unsolved Mysteries, 1-800 phone lines for the program crashed. Ultimately, Poulsen was captured in a supermarket and served a sentence of five years.&lt;br /&gt;&lt;br /&gt;Since serving time, Poulsen has worked as a journalist. He is now a senior editor for Wired News. His most prominent article details his work on identifying 744 sex offenders with MySpace profiles.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Robert Tappan:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/_sYvfAmcrLXg/So51G1PlY-I/AAAAAAAAALc/qDCPgavjIOw/s400/GW240H240.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh3.ggpht.com/_sYvfAmcrLXg/So51G1PlY-I/AAAAAAAAALc/qDCPgavjIOw/s400/GW240H240.jpeg" name="graphics5" align="bottom" border="1" height="240" width="240" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Morris: Morris, son of former National Security Agency scientist Robert Morris, is known as the creator of the Morris Worm, the first computer worm to be unleashed on the Internet. As a result of this crime, he was the first person prosecuted under the 1986 Computer Fraud and Abuse Act.&lt;br /&gt;&lt;br /&gt;Morris wrote the code for the worm while he was a student at Cornell. He asserts that he intended to use it to see how large the Internet was. The worm, however, replicated itself excessively, slowing computers down so that they were no longer usable. It is not possible to know exactly how many computers were affected, but experts estimate an impact of 6,000 machines. He was sentenced to three years' probation, 400 hours of community service and a fined $10,500.&lt;br /&gt;&lt;br /&gt;Morris is currently working as a tenured professor at the MIT Computer Science and Artificial Intelligence Laboratory. He principally researches computer network architectures including distributed hash tables such as Chord and wireless mesh networks such as Roofnet.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Vladimir Levin&lt;/span&gt;:&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_sYvfAmcrLXg/So51ST7EAAI/AAAAAAAAALo/volW87IGqh8/s400/GW169H180.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh4.ggpht.com/_sYvfAmcrLXg/So51ST7EAAI/AAAAAAAAALo/volW87IGqh8/s400/GW169H180.jpeg" name="graphics6" align="bottom" border="1" height="180" width="169" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Mass media claimed at the time he was a mathematician and had a degree in biochemistry from Saint Petersburg State Institute of Technology.According to the coverage, in 1994 Levin accessed the accounts of several large corporate customers of Citibank via their dial-up wire transfer service (Financial Institutions Citibank Cash Manager) and transferred funds to accounts set up by accomplices in Finland, the United States, the Netherlands, Germany and &lt;a href="http://israel.in/" target="_blank"&gt;Israel.In&lt;/a&gt; 2005 an alleged member of the former St. Petersburg hacker group, claiming to be one of the original Citibank penetrators, published under the name ArkanoiD a memorandum on popular &lt;a href="http://provider.net.ru/" target="_blank"&gt;Provider.net.ru&lt;/a&gt; website dedicated to telecom market. According to him, Levin was not actually a scientist (mathematician, biologist or the like) but a kind of ordinary system administrator who managed to get hands on the ready data about how to penetrate in Citibank machines and then exploit them.ArkanoiD emphasized all the communications were carried over X.25 network and the Internet was not involved. ArkanoiD’s group in 1994 found out Citibank systems were unprotected and it spent several weeks examining the structure of the bank’s USA-based networks remotely. Members of the group played around with systems’ tools (e.g. were installing and running games) and were unnoticed by the bank’s staff. Penetrators did not plan to conduct a robbery for their personal safety and stopped their activities at some time. Someone of them later handed over the crucial access data to Levin (reportedly for the stated $100).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;David Smith:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh5.ggpht.com/_sYvfAmcrLXg/So52fMqyy3I/AAAAAAAAAL0/qbkbpghfwAk/s400/GW200H221.png" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh5.ggpht.com/_sYvfAmcrLXg/So52fMqyy3I/AAAAAAAAAL0/qbkbpghfwAk/s400/GW200H221.png" name="graphics7" align="bottom" border="1" height="221" width="200" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;David Smith, the author of the Melissa virus, was facing nearly 40 years in jail when he decided to cooperate with the FBI. Facing jail time, public wrath and a fortune in potential fines, the 30-year-old sender of the fast-spreading Melissa computer virus did what hundreds of criminals have done before. He agreed to go undercover. Federal court documents unsealed at the request of the Associated Press show that for almost two years, Smith – then out on bail – worked mostly full time cruising the dark recesses of the Internet while the FBI paid his tab.&lt;br /&gt;What did the FBI get? A windfall of information about malicious code senders, leading directly to two major international arrests and pre-empting other attacks, according to federal prosecutors.&lt;br /&gt;What did Smith get? Just 20 months in federal prison, which was about two years less than the minimum sentencing requirement, and about 38 years less than he faced when initially charged.&lt;br /&gt;Sometimes it takes a thief to catch a thief, said former federal prosecutor Elliot Turrini, who handled Smith’s case and agreed to the reduced sentence.&lt;br /&gt;About 63,000 viruses have rolled through the Internet, causing an estimated $65 billion in damage, but Smith is the only person to go to federal prison in the United States for sending one.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Michael Calce:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/_sYvfAmcrLXg/So52wsE6XEI/AAAAAAAAAMA/FNBRFRvZ6PU/s400/GW199H240.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh3.ggpht.com/_sYvfAmcrLXg/So52wsE6XEI/AAAAAAAAAMA/FNBRFRvZ6PU/s400/GW199H240.jpeg" name="graphics8" align="bottom" border="1" height="240" width="199" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The computer hacker known as “Mafiaboy,” who crippled several major Internet sites including CNN, arrives in court Thursday, Jan. 18, 2001 in Montreal, Canada. He pleaded guilty on Thursday to 55 charges of mischief. The trial of the 16-year-old Montrealer, who can not be identified under Canadian law, was set to begin Thursday on 66 charges relating to attacks last year on several major Web sites, as well as security breaches of other sites at institutions such as Yale and Harvard.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Mark Abene:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh6.ggpht.com/_sYvfAmcrLXg/So53CeZqBvI/AAAAAAAAAMY/ugn7QyE78MU/s400/GW240H180.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh6.ggpht.com/_sYvfAmcrLXg/So53CeZqBvI/AAAAAAAAAMY/ugn7QyE78MU/s400/GW240H180.jpeg" name="graphics9" align="bottom" border="1" height="180" width="240" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Mark Abene (born 1972), better known by his pseudonym Phiber Optik, is a computer security hacker from New York City. Phiber Optik was once a member of the Hacker Groups Legion of Doom and Masters of Deception. In 1994, he served a one-year prison sentence for conspiracy and unauthorized access to computer and telephone systems.&lt;br /&gt;Phiber Optik was a high-profile hacker in the early 1990s, appearing in The New York Times, Harper’s, Esquire, in debates and on television. Phiber Optik is an important figure in the 1995 non-fiction book Masters of Deception — The Gang that Ruled Cyberspace.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Stephen Wozniak:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/_sYvfAmcrLXg/So53TLngynI/AAAAAAAAAMk/bV0FCxeLa-Y/s400/5OkuLtVkTyE7L793lZO3cA16870.jpeg" target="_blank"&gt;&lt;span style="color:#000080;"&gt;&lt;img src="http://lh3.ggpht.com/_sYvfAmcrLXg/So53TLngynI/AAAAAAAAAMk/bV0FCxeLa-Y/s400/5OkuLtVkTyE7L793lZO3cA16870.jpeg" name="graphics10" align="bottom" border="1" height="320" width="260" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;"Woz" is famous for being the "other Steve" of Apple. Wozniak, along with current Apple CEO Steve Jobs, co-founded Apple Computer. He has been awarded with the National Medal of Technology as well as honorary doctorates from Kettering University and Nova Southeastern University. Additionally, Woz was inducted into the National Inventors Hall of Fame in September 2000.&lt;br /&gt;Woz got his start in hacking making blue boxes, devices that bypass telephone-switching mechanisms to make free long-distance calls. After reading an article about phone phreaking in Esquire, Wozniak called up his buddy Jobs. The pair did research on frequencies, then built and sold blue boxes to their classmates in college. Wozniak even used a blue box to call the Pope while pretending to be Henry Kissinger.&lt;br /&gt;Wozniak dropped out of college and came up with the computer that eventually made him famous. Jobs had the bright idea to sell the computer as a fully assembled PC board. The Steves sold Wozniak's cherished scientific calculator and Jobs' VW van for capital and got to work assembling prototypes in Jobs' garage. Wozniak designed the hardware and most of the software. In the Letters section of http://woz.org/&lt;/p&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-7215120322128205550?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/7215120322128205550/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=7215120322128205550' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7215120322128205550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7215120322128205550'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2009/09/hackers-true-heros.html' title='Hackers the true Heros'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_sYvfAmcrLXg/So50hD-1ThI/AAAAAAAAAK4/ZVNhf7GCrTY/s72-c/GW227H240.jpeg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-2863501454279840528</id><published>2009-08-29T09:13:00.000-07:00</published><updated>2009-08-29T09:21:16.895-07:00</updated><title type='text'>Earn 1$ in a minute</title><content type='html'>&lt;b&gt;&lt;u&gt;Get $1 for entering a referrals contest ($50)!&lt;br /&gt;&lt;br /&gt;&lt;/u&gt;&lt;/b&gt;&lt;i&gt;Contest site is here: &lt;/i&gt;http://shetoldme.com/referral/73686a57&lt;a href="http://shetoldme.com/referral/73686a3d" target="_blank" onclick=""&gt;&lt;/a&gt;&lt;i&gt;&lt;br /&gt;It&lt;wbr&gt;'s a social bookmarking site with a 100% adsense revenue sharing program.&lt;br /&gt;&lt;br /&gt;Here's what the contest is about: &lt;u&gt;(Follow The Steps Given Below)&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;1. Register a free acount on the site.&lt;br /&gt;&lt;br /&gt;2. Create a blog post or an article anywhere on your sites or on other sites (squidoo, hubpages, xomba,blogger etc.) with your referral link.&lt;br /&gt;&lt;br /&gt;3. Post a reply (by PM only because replying with simple words on this thread is not allowed by DP rules) and mention your username on the site as well as the URL where you posted your referral link.&lt;br /&gt;&lt;br /&gt;4. Send a message to &lt;a href="http://shetoldme.com/contact" target="_blank" onclick=""&gt;http://SheToldMe.com/contact&lt;/a&gt; with your paypal email and receive $1 for entering the contest!&lt;br /&gt;&lt;br /&gt;5. You'll find in your user account a referral link to be used to get new members to sign up (for free) under you, promote the site with this link&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;&lt;u&gt;&lt;b&gt;Note By Admin :&lt;/b&gt;&lt;/u&gt; On thursday 1st october 2009, I'll will check the list of participants to the contest and count their referrals. $50 will be awarded to the winner, if several participants have the same amount of referrals, the prize will be shared.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-2863501454279840528?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/2863501454279840528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=2863501454279840528' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2863501454279840528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2863501454279840528'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2009/08/earn-1-in-minute.html' title='Earn 1$ in a minute'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-2635911279970372260</id><published>2009-07-08T04:36:00.000-07:00</published><updated>2009-07-08T04:55:15.724-07:00</updated><title type='text'>BSNL Dataone in Fedora (specially Fedora 11)</title><content type='html'>In Fedora, you  may use either the &lt;i&gt;Network GUI&lt;/i&gt; or the &lt;i&gt;rp-pppoe-gui&lt;/i&gt; package.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Network GUI Method:&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;- In Fedora, go to: Desktop --&gt; Administration --&gt; Network,&lt;br /&gt;                                                       &lt;center&gt;OR&lt;/center&gt;&lt;br /&gt;just type the command "&lt;u&gt;system-config-network&lt;/u&gt;" the shell prompt to get the same GUI (both of these methods will ask for root password). The window you will get will have title of "&lt;i&gt;Network Configuration&lt;/i&gt;".&lt;br /&gt;&lt;br /&gt;- From the toolbar of this new window, click on "New" button. You will get a window with title "&lt;i&gt;Add new Device Type&lt;/i&gt;".&lt;br /&gt;&lt;br /&gt;- In this new windoe, choose xDSL connection, click "Forward" and follow the prompt. It will ask you for the provider name (type anything. e.g. BSNL Dataone), your connection username (bridewin@dataone in our example in case if you are using Fedora 11 just type bridewin i.e your username there is no need for @dataone) and password.&lt;br /&gt;&lt;br /&gt;- Once setup is complete, to test the connection, go back to the "&lt;i&gt;Network Configuration&lt;/i&gt;" window (or open it again as specified in the first point above), and select the new connection and click on Activate button in the toolbar  (If the active and Deactive button does not appear to be available then edit the BSNLDataone connection using edit option and deselect the controlled by network manager option and save it..!!) . Wait a few seconds and give the following commands in a terminal:&lt;br /&gt;&lt;br /&gt;$&gt; ping 4.2.2.2&lt;br /&gt;$&gt; ping google.com&lt;br /&gt;&lt;br /&gt;The first one if successfuly, will prove that the internet connection is working, the second one, if successful, will prove that your DNS nameserves are also working.&lt;br /&gt;&lt;br /&gt;Then make sure that the device will become automatically active when the computer boots up by selecting this connection in the network configuration window and by editing its profile and by checking the option that tells the device to activate on boot ups. Also, give normal users the option of controlling this device.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-2635911279970372260?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/2635911279970372260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=2635911279970372260' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2635911279970372260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2635911279970372260'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2009/07/bsnl-dataone-in-fedora-specially-fedora.html' title='BSNL Dataone in Fedora (specially Fedora 11)'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-2727598710801296257</id><published>2008-07-27T08:01:00.000-07:00</published><updated>2008-07-27T08:14:54.186-07:00</updated><title type='text'>Copy Files From Multiple Places and Paste it as per your Requirement where ever you wanted</title><content type='html'>&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Copy Files From Multiple Places and Paste it as per your Requirement where ever you wanted&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;For doing this you need a simple Software, The link is given Bellow:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://www.conceptworld.com/Piky/PkySetup.exe"&gt;PkySetup&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;         With Piky Basket, you can reduce  repetitive tasks when copying/moving files      and folders in Windows. &lt;/span&gt;&lt;b style="font-weight: bold;"&gt;Piky Basket allows you to select files/folders in      to a "basket" from different locations. Once you are done selecting, you can      paste them all at once to the target folders&lt;/b&gt;&lt;span style="font-weight: bold;"&gt;. It also allows you to      selectively paste the files to the target folder.     &lt;/span&gt;&lt;p style="font-weight: bold;" class="ParagraphText"&gt;Piky Basket is integrated with Windows Explorer.      You do not have to run Piky Basket as a separate program. It can be accessed      from the menu which appears by right clicking on any files/folders in      Windows Explorer.&lt;/p&gt;&lt;span style="font-weight: bold;"&gt;If you didn't get it how it work just look at the screen shot Carefully...!! It will Help you out...!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIyPWrpWlKI/AAAAAAAAABc/GmrHNxj69yM/s1600-h/piky_drop.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIyPWrpWlKI/AAAAAAAAABc/GmrHNxj69yM/s320/piky_drop.gif" alt="" id="BLOGGER_PHOTO_ID_5227710887306368162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;                                                                           &lt;u&gt;Copying And Droping content into Basket&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center; font-weight: bold;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_OPAmV7JhSBc/SIyPW3sOUrI/AAAAAAAAABk/mRRW1r_usXA/s1600-h/piky_copy.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_OPAmV7JhSBc/SIyPW3sOUrI/AAAAAAAAABk/mRRW1r_usXA/s320/piky_copy.gif" alt="" id="BLOGGER_PHOTO_ID_5227710890539635378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;u&gt;Pasting all content To the Required Places&lt;/u&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-2727598710801296257?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/2727598710801296257/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=2727598710801296257' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2727598710801296257'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/2727598710801296257'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/copy-files-from-multiple-places-and.html' title='Copy Files From Multiple Places and Paste it as per your Requirement where ever you wanted'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OPAmV7JhSBc/SIyPWrpWlKI/AAAAAAAAABc/GmrHNxj69yM/s72-c/piky_drop.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-960771331878960043</id><published>2008-07-26T08:59:00.000-07:00</published><updated>2008-07-26T09:10:29.293-07:00</updated><title type='text'>Shutdown any computer in Network and File Sharing in network</title><content type='html'>&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Check this out Guys you can shutdown any computer in the network and also copy there content without permission This is only for Educational Purpose Don't Misuse it.....!!&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center; font-weight: bold;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/SItLKjGPR0I/AAAAAAAAABU/wY7k-QUdFjU/s1600-h/netscan.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/SItLKjGPR0I/AAAAAAAAABU/wY7k-QUdFjU/s320/netscan.png" alt="" id="BLOGGER_PHOTO_ID_5227354437085775682" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;The methods are :&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;For shutdown computer in your network:&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1&gt;First Download the netscan software it is freely available at sourceforge.net or just google it&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2&gt;scan the computer in the network with netscan it will show all the computers in the network which are present with there ip address....now look carefully there are some computer with ip address and its host name these computers are on..!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3&gt;now to shutdown them just right click them and select shut down there they goes...!! Voodo..!! hacker Rocks..!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Now for Connecting to any computer which are on in the network without there permission and copying files:&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1&gt;First Download the netscan software it is freely available at sourceforge . net or just google it ,now download Putty(this is nothing but an SSH client used for connection that is known as tunneling) and now download Totalcommand software this is not free but you will get for 30 days trial...!! it is more than enough(This is just for giving command in the network for the files and all). Don't worry about the configuration and all.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Its all given in its respective Websites it is very easy because event the screen shot is also given..!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2&gt;scan the computer in the network with netscan it will show all the computers in the network which are present with there ip address....now look carefully there are some computer with ip address and its host name these computers are on..!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3&gt;Right click them and open with putty ...now you are connected to that computer&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4&gt;now right click the file you want to copy..and copy it..it is very easy..!! Voodo.!! Hacker Rocks..!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;WARNING:&lt;/u&gt; DON'T CROSS THE LIMIT BY SPREADING THIS INFORMATION TO ALL OF YOUR FRIENDS BECAUSE TOO MANY USE AGE CAN JAM THE NETWORK&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-960771331878960043?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/960771331878960043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=960771331878960043' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/960771331878960043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/960771331878960043'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/shutdown-any-computer-in-network-and.html' title='Shutdown any computer in Network and File Sharing in network'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OPAmV7JhSBc/SItLKjGPR0I/AAAAAAAAABU/wY7k-QUdFjU/s72-c/netscan.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-6943917867767014005</id><published>2008-07-24T07:49:00.000-07:00</published><updated>2008-07-24T08:01:14.762-07:00</updated><title type='text'>How to Record Phone Conversations in the PC</title><content type='html'>&lt;div style="text-align: center; font-weight: bold;"&gt;&lt;u&gt;How to Record Phone Conversations in the PC&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-weight: bold;"&gt;Did you know that it is possible to use the computer as an electronic bug? To use PC to record phone conversations is much more practical – and cheaper – than to do so using a conventional tape recorder, besides being able to record hundreds of hours of conversation, for the audio is recorded in a file in the hard disk of the computer. And you may also convert the audio files into MP3 so they take even less space in the hard disk, or you may even save the files in an audio CD so the recorded phone conversations may be played in any CD player.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Until not long ago voice modems were very popular in the market. These modems had an answering machine, speaker phone, and phone conversation recording system as extra features. For not knowing those features existed, most users did not fully use the potential of their modems, so the manufacturers ended up removing them from the newest models to reduce their price.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Some of the most modern modems have an output channel called TAD (Telephony Answering Device), which can be used to connect the modem to the sound card, through a cable similar to the one used in the connection of CD-ROM drive to the sound card. You may record phone conversations through that connection using your sound card. In order to do that, your sound card also needs to have a TAD input and you will have to install the cable connecting the modem to the sound card.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;With the popularization of the broadband Internet connection, less and less users have modems in their computers.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The solution to transform the PC into a phone conversation tape recorder is the construction of the small circuit we describe next. This circuit is very simple to be assembled, and it is very cheap too.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Even a user without a deep knowledge in electronics can assemble it without great difficulty.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The parts you will have to buy are:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1&gt; 4K7 x 1 W resistor,  ---------------------------------------------&gt;(only 1)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;2&gt; 220 nF x 200 V capacitor,-----------------------------------------------------------&gt;(only 1)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;3&gt; 5 V x 1 W Zener diodes,---------------------------------------------------------------&gt;(only 2)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;4&gt; 10 K logarithm potentiometer (that will work as the volume control)-------------------------------------------------------------&gt;(only 1)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;5&gt; mono P2 male plug.--------------------------------------------&gt;(only 1)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;There is also a phone transformer. To reduce the price of the equipment, we suggest you simply remove the transformer of an old modem (from a 2400 bps one, for instance). See in the picture how the modem transformer is.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Images :-&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center; font-weight: bold;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_OPAmV7JhSBc/SIiXrjC9jfI/AAAAAAAAABE/w2569TNSCWw/s1600-h/transformer.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_OPAmV7JhSBc/SIiXrjC9jfI/AAAAAAAAABE/w2569TNSCWw/s320/transformer.jpg" alt="" id="BLOGGER_PHOTO_ID_5226594141961293298" border="0" /&gt;&lt;/a&gt;&lt;u&gt;Phone Transformer&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIiXr6g1GnI/AAAAAAAAABM/1psUv_hbnNw/s1600-h/circuit.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIiXr6g1GnI/AAAAAAAAABM/1psUv_hbnNw/s320/circuit.gif" alt="" id="BLOGGER_PHOTO_ID_5226594148260584050" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Circuit&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;line on one side and to the Mic In channel of the sound card on the other. To record conversations, you will need a recording program, like Sound Forge or Audacity. In case you don't have any, use the Sound Recorder for your Windows. Since the phone line quality is not high, you may record at 11.025 Hz mono so the recorded file is the smallest possible.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-6943917867767014005?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/6943917867767014005/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=6943917867767014005' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/6943917867767014005'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/6943917867767014005'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/how-to-record-phone-conversations-in-pc.html' title='How to Record Phone Conversations in the PC'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_OPAmV7JhSBc/SIiXrjC9jfI/AAAAAAAAABE/w2569TNSCWw/s72-c/transformer.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-7260506400092845735</id><published>2008-07-22T10:57:00.000-07:00</published><updated>2008-07-22T11:28:56.718-07:00</updated><title type='text'>Lock Windows Drive Or Hide Windows Drive</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Lock Windows Drive Or Hide Windows Drive&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/u&gt;&lt;/span&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIYmcm2w3nI/AAAAAAAAAA8/hD-eNUdrEC4/s1600-h/hard.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_OPAmV7JhSBc/SIYmcm2w3nI/AAAAAAAAAA8/hD-eNUdrEC4/s320/hard.png" alt="" id="BLOGGER_PHOTO_ID_5225906690518474354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;I use this technique to Lock Or Hide my Drive You can also Follow it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Procedure:&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1&gt;Go to control Panel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2&gt;Then Open Administrative Tools&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2&gt;Then Open Computer Management&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3&gt;Now Expand Storage(On Left Side)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4&gt;Now Open Disk Management &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5&gt;Now Select Which Drive you want to Lock or Hide(By Just Clicking it)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;6&gt;Now Just Right Click and Select Change Drive Letter and Paths&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;7&gt;Now Select Remove Drive Letter&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;8&gt;And now Just Close it normally &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Now Open your My Computer It won't show that Drive....That is Totally Hidden...!! I Use this Trick In Windows XP Professional for Hiding Drives.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;And for &lt;u&gt;Unlocking the Locked Drive&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Just Click on Add Drive instead of Remove Drive and the Drive will be back..!!     &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is a bit Old trick some of the people might be knowing this..!! If not then Well and Good..!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-7260506400092845735?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/7260506400092845735/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=7260506400092845735' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7260506400092845735'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7260506400092845735'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/lock-windows-drive-or-hide-windows.html' title='Lock Windows Drive Or Hide Windows Drive'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OPAmV7JhSBc/SIYmcm2w3nI/AAAAAAAAAA8/hD-eNUdrEC4/s72-c/hard.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-6058710601111305106</id><published>2008-07-17T06:13:00.000-07:00</published><updated>2008-07-17T06:21:09.212-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_OPAmV7JhSBc/SH9F5uvUgqI/AAAAAAAAAA0/Jk75oAG37nM/s1600-h/linux-drivers%28tux.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_OPAmV7JhSBc/SH9F5uvUgqI/AAAAAAAAAA0/Jk75oAG37nM/s320/linux-drivers%28tux.jpg" alt="" id="BLOGGER_PHOTO_ID_5223970950874432162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;u&gt;RPM - The Redhat Package Manager&lt;/u&gt;&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;u&gt;Article Contributed by TLDP&lt;/u&gt;&lt;br /&gt;(For being a Hacker you should know how to work on Linux)&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;The Redhat Package Manager or ``RPM'' for short is a common way to distribute&lt;br /&gt;precompiled binaries as well as source code, used in a few popular distributions like&lt;br /&gt;Redhat, SuSE, Mandrake. The binaries are in the form of `*.rpm' files which may be&lt;br /&gt;simply called rpm's.&lt;br /&gt;These are manipulated by the rpm command with relevant options, some of which are&lt;br /&gt;listed below.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Installing&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;usage: rpm -ivh  Package_name&lt;packagename&gt;&lt;packagename&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;/span&gt;&lt;packagename&gt;&lt;br /&gt;This is used to install a new rpm (package) on the system.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Uninstalling&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Usage: rpm -e &lt;/span&gt;&lt;/packagename&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Package_name&lt;/span&gt;&lt;packagename&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;packagename&gt;&lt;packagename&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;/span&gt;&lt;packagename&gt;&lt;br /&gt;This is used to erase, ie, uninstall existing packages on the system.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Upgrading&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Usage : rpm -Uvh &lt;/span&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Package_name&lt;/span&gt;&lt;packagename&gt;&lt;packagename&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;packagename&gt;&lt;packagename&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;/span&gt;&lt;packagename&gt;&lt;br /&gt;This is used to upgrade an existing package or to install it if it does not already&lt;br /&gt;exist.&lt;br /&gt;&lt;br /&gt;Note: On distributions which use RPM such as Redhat and SuSE, the installer itself is&lt;br /&gt;capable of taking care of dependencies. Thus when installing Linux for the first time,&lt;br /&gt;in custom mode, the user can just specify what packages are needed. The installer&lt;br /&gt;scripts will automatically include packages to satisfy any dependencies and prompt the&lt;br /&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;/packagename&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-6058710601111305106?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/6058710601111305106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=6058710601111305106' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/6058710601111305106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/6058710601111305106'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/rpm-redhat-package-manager-article.html' title=''/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_OPAmV7JhSBc/SH9F5uvUgqI/AAAAAAAAAA0/Jk75oAG37nM/s72-c/linux-drivers%28tux.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-7701854225902949110</id><published>2008-07-16T11:14:00.000-07:00</published><updated>2008-07-16T11:25:40.011-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_OPAmV7JhSBc/SH48IjV1e5I/AAAAAAAAAAs/BTUgC8vBnkE/s1600-h/image012.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_OPAmV7JhSBc/SH48IjV1e5I/AAAAAAAAAAs/BTUgC8vBnkE/s320/image012.png" alt="" id="BLOGGER_PHOTO_ID_5223678735419800466" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Remote OS detection&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;Remote Operating System detection is definitely an essential part of a successful hack. It helps in knowing about the vulnerabilities of the Operating System running on the remote system. There are a lot of tools and techniques to find the Operating System running on a remote system&lt;br /&gt;&lt;br /&gt;The telnet method: This is a very simple technique to know about the remote OS and the version running from the welcome banner when telnet daemon is running. But there is no guarantee that you will definitely find the OS running from the welcome banner. There are an increasing number of cases that system administrators turn these banners off or provide fake information. Below is an example of a telnet session that gave some valuable information about the OS running on a remote server.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Connected to xyz.org.&lt;/span&gt;  &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;Escape character is '^]'.&lt;/span&gt;  &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;UNIX Type: L8&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;Login:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The FTP method: This method is similar to the above method. Normally the welcome banner displayed when you connect to an FTP server will reveal some information about the OS running on the remote system. But there is a possibility that the administrator may disable the banner. But don't worry; the 'SYST' command will feed you the information you want.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Connected to ftp.2600.com&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;220 - You are 9 out of a possible 20.&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;220 ftp.2600.com FTP server ready.&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;User (ftp.2600.com:(none)): anonymous&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;331 Guest login ok, send your email address as password.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Password:&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;230- Welcome to ftp.2600.com, the 2600 FTP server.&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;230 Guest login ok, access restrictions apply.&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;ftp&gt; literal syst&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;215 UNIX Type: FTP2600&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;ftp&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The above example shows how it is possible to find the OS running from the FTP&lt;br /&gt;&lt;br /&gt;The HTTP method: This method is very useful and the OS running on a remote system can be easily known with this method. But there must be a web server running on the remote system to determine the remote OS and the version of the web server running on that remote host.&lt;br /&gt;&lt;br /&gt;This is quite easy, all you have to do is to telnet to port 80 (the HTTP server port) of the remote system. Any server running a website will accept such connections on port 80. After you've connected to that, type something and press enter twice. That will display an error message with information about the type of web server running, its version and sometimes the Operating system running.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-7701854225902949110?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/7701854225902949110/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=7701854225902949110' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7701854225902949110'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/7701854225902949110'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/remote-os-detection-remote-operating.html' title=''/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_OPAmV7JhSBc/SH48IjV1e5I/AAAAAAAAAAs/BTUgC8vBnkE/s72-c/image012.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-3932596708561192405</id><published>2008-07-14T08:15:00.001-07:00</published><updated>2008-07-14T08:22:46.387-07:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Hacking Software Collection&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Trojan Horse&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Yuri RAT&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- MofoTro&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Charon&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Beast&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Omerta&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Theef&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Combined Forces R.A.T&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- MoSucker&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- ProRat&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Keylogger&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Elite Keylogger&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- SKL&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- KeySpy&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- A++++&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Curiosity&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Keylogger&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- KeyCopy&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Binder&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Daemon Crypt Public v2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- NT Packer v2.1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- EES binder v1.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- File Injector v3&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Bytes Adder&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- FreshBind v2.01&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- YAB v2.01&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- NakedBind v1.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Amok Joiner&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WebHack/WordList&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Brute Forcer&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Munga Bunga 's Official&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Brutus - Authentication Engine Test 2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- wwwHack v1.946&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- FTP Brute Hacker&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- FTP Brute Forcer.tar.gz - Unix&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Wbrute.tar.gz - Unix&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Shadow Scanner-Brute Forcer&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Hackers Utility v1.5&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- POP3 brute forcer.tar.gz - Unix&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;CGI-Bug Scanner&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- NStealth HTTP Security Scanner v5.8&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Attack Toolkit v4.1 &amp;amp; source code included&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Scanarator&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Legion NetBios Scanner v2.1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- NetView v1.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- CGI Vulnerability Scan&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- CGI Scanner v4.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- VoidEye CGI scanner&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Virus!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Viruse&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Hippi virus&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Sasser&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- W32. Blaster .Worm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Midnight Massacre&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- 00001&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Nimda&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Loveletter virus&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Happy '99&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- MXZ&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Virus Builder&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- DR VBS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- VBSwg 2 beta - Virus builder&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- p0ke's WormGen 2.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- RESIDUO - DoS Virus&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;MSN Hack &amp;amp; Bot&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- HoaX Toolbox 1.1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- MSN Extreme 3.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- MessenPass v1.06&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Advanced Blood Scroller&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Nudge Madness&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Advanced Instant Messengers Password Recovery&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Contact Spy&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Msn Explosion&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Encrypted Messenger&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Port &amp;amp; IP Scanner&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Blues Port Scanner&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- ProPort v2.2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- SuperScan v3.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Net Scan Tools v4.2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- LanSpy v2.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Bitchin Threads v3.1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Trojan Hunter v1.5&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- SuperScan v4.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;- Neotrace PRO v3.25 trial &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;20 Hacking Softwares&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91730792/Seria-of-Soft.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91624959/hide_ip_plantinumwith_key.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91023193/Account-Locker.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91023633/Anti-Mail-Bomb.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91024117/Emoticon_Creator.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91025261/Frez-Accont.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91027689/Kitle.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91029795/Msn-Block-Checker.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91032421/Proyect_Lithium_Version_0.2.0.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91033497/skinnerv12setup.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91025674/Hot-Hack.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91026666/Hotmal-Kiler.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91027055/Hotm-Crak.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91028264/MSN7UniversalPatcherPlusPlus.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91028827/Msn-_Dondurucu-hhhh.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91029357/Msn-Auto-Responder.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91030167/Msn-Clean.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91030644/Msn-Pass-Grab.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91031205/Msn-Pass-Recouvery.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91031509/My-Pass.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91035275/t__T__T8f_OnT2.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91035276/Yah-Boter.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91035277/yahoocrack.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rapidshare.com/files/91035278/Yaho-Web-Hak.rar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;put http:// before the links&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ethical Hacking Tools&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Screenshots:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;http://i172.photobucket.com/albums/w24/mr_mahesh_in/nettools960x600.jpg&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;http://i172.photobucket.com/albums/w24/mr_mahesh_in/Screenshot.jpg&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Download:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;h**p://rapidshare.com/files/70063126/Net_Tools.rar &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-3932596708561192405?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/3932596708561192405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=3932596708561192405' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3932596708561192405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3932596708561192405'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/07/hacking-software-collection-trojan.html' title=''/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-432787505211718183</id><published>2008-01-29T07:54:00.000-08:00</published><updated>2008-01-29T07:56:23.877-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hacking'/><title type='text'>Begin Hacking.........!!(@ ur own risk.......)</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Introduction: The State of the Hack&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;   After surveying a rather large g-file collection, my attention was drawn to&lt;br /&gt;the fact that there hasn't been a good introductory file written for absolute&lt;br /&gt;beginners since back when Mark Tabas was cranking them out (and almost&lt;br /&gt;*everyone* was a beginner!)  The Arts of Hacking and Phreaking have changed&lt;br /&gt;radically since that time, and as the 90's approach, the hack/phreak community&lt;br /&gt;has recovered from the Summer '87 busts (just like it recovered from the Fall&lt;br /&gt;'85 busts, and like it will always recover from attempts to shut it down), and&lt;br /&gt;the progressive media (from Reality Hackers magazine to William Gibson and&lt;br /&gt;Bruce Sterling's cyberpunk fables of hackerdom) is starting to take notice&lt;br /&gt;of us for the first time in recent years in a positive light.&lt;br /&gt;   Unfortunately, it has also gotten more dangerous since the early 80's.&lt;br /&gt;Phone cops have more resources, more awareness, and more intelligence that they&lt;br /&gt;exhibited in the past.  It is becoming more and more difficult to survive as&lt;br /&gt;a hacker long enough to become skilled in the art.  To this end this file&lt;br /&gt;is dedicated .  If it can help someone get started, and help them survive&lt;br /&gt;to discover new systems and new information, it will have served it's purpose,&lt;br /&gt;and served as a partial repayment to all the people who helped me out when I&lt;br /&gt;was a beginner.&lt;br /&gt;&lt;br /&gt;Contents&lt;br /&gt;~~~~~~~~&lt;br /&gt;   This file will be divided into four parts:&lt;br /&gt;       Part 1: What is Hacking, A Hacker's Code of Ethics, Basic Hacking Safety&lt;br /&gt;       Part 2: Packet Switching Networks: Telenet- How it Works, How to Use it,&lt;br /&gt;               Outdials, Network Servers, Private PADs&lt;br /&gt;       Part 3: Identifying a Computer, How to Hack In, Operating System&lt;br /&gt;               Defaults&lt;br /&gt;       Part 4: Conclusion- Final Thoughts, Books to Read, Boards to Call,&lt;br /&gt;               Acknowledgements&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Part One: The Basics&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;    As long as there have been computers, there have been hackers.  In the 50's&lt;br /&gt;at the Massachusets Institute of Technology (MIT), students devoted much time&lt;br /&gt;and energy to ingenious exploration of the computers.  Rules and the law were&lt;br /&gt;disregarded in their pursuit for the 'hack'.  Just as they were enthralled with&lt;br /&gt;their pursuit of information, so are we.  The thrill of the hack is not in&lt;br /&gt;breaking the law, it's in the pursuit and capture of knowledge.&lt;br /&gt;    To this end, let me contribute my suggestions for guidelines to follow to&lt;br /&gt;ensure that not only you stay out of trouble, but you pursue your craft without&lt;br /&gt;damaging the computers you hack into or the companies who own them.&lt;br /&gt;&lt;br /&gt;I.    Do not intentionally damage *any* system.&lt;br /&gt;II.   Do not alter any system files other than ones needed to ensure your&lt;br /&gt;      escape from detection and your future access (Trojan Horses, Altering&lt;br /&gt;      Logs, and the like are all necessary to your survival for as long as&lt;br /&gt;      possible.)&lt;br /&gt;III.  Do not leave your (or anyone else's) real name, real handle, or real&lt;br /&gt;      phone number on any system that you access illegally.  They *can* and&lt;br /&gt;      will track you down from your handle!&lt;br /&gt;IV.   Be careful who you share information with.  Feds are getting trickier.&lt;br /&gt;      Generally, if you don't know their voice phone number, name, and&lt;br /&gt;      occupation or haven't spoken with them voice on non-info trading&lt;br /&gt;      conversations, be wary.&lt;br /&gt;&lt;br /&gt;V.    Do not leave your real phone number to anyone you don't know.  This&lt;br /&gt;      includes logging on boards, no matter how k-rad they seem.  If you&lt;br /&gt;      don't know the sysop, leave a note telling some trustworthy people&lt;br /&gt;      that will validate you.&lt;br /&gt;VI.   Do not hack government computers.  Yes, there are government systems&lt;br /&gt;      that are safe to hack, but they are few and far between.  And the&lt;br /&gt;      government has inifitely more time and resources to track you down than&lt;br /&gt;      a company who has to make a profit and justify expenses.&lt;br /&gt;VII.  Don't use codes unless there is *NO* way around it (you don't have a&lt;br /&gt;      local telenet or tymnet outdial and can't connect to anything 800...)&lt;br /&gt;      You use codes long enough, you will get caught.  Period.&lt;br /&gt;VIII. Don't be afraid to be paranoid.  Remember, you *are* breaking the law.&lt;br /&gt;      It doesn't hurt to store everything encrypted on your hard disk, or&lt;br /&gt;      keep your notes buried in the backyard or in the trunk of your car.&lt;br /&gt;      You may feel a little funny, but you'll feel a lot funnier when you&lt;br /&gt;      when you meet Bruno, your transvestite cellmate who axed his family to&lt;br /&gt;      death.&lt;br /&gt;IX.   Watch what you post on boards.  Most of the really great hackers in the&lt;br /&gt;      country post *nothing* about the system they're currently working&lt;br /&gt;      except in the broadest sense (I'm working on a UNIX, or a COSMOS, or&lt;br /&gt;      something generic.  Not "I'm hacking into General Electric's Voice Mail&lt;br /&gt;      System" or something inane and revealing like that.)&lt;br /&gt;X.    Don't be afraid to ask questions.  That's what more experienced hackers&lt;br /&gt;      are for.  Don't expect *everything* you ask to be answered, though.&lt;br /&gt;      There are some things (LMOS, for instance) that a begining hacker&lt;br /&gt;      shouldn't mess with.  You'll either get caught, or screw it up for&lt;br /&gt;      others, or both.&lt;br /&gt;XI.   Finally, you have to actually hack.  You can hang out on boards all you&lt;br /&gt;      want, and you can read all the text files in the world, but until you&lt;br /&gt;      actually start doing it, you'll never know what it's all about.  There's&lt;br /&gt;      no thrill quite the same as getting into your first system (well, ok,&lt;br /&gt;      I can think of a couple of bigger thrills, but you get the picture.)&lt;br /&gt;&lt;br /&gt;   One of the safest places to start your hacking career is on a computer&lt;br /&gt;system belonging to a college.  University computers have notoriously lax&lt;br /&gt;security, and are more used to hackers, as every college computer depart-&lt;br /&gt;ment has one or two, so are less likely to press charges if you should&lt;br /&gt;be detected.  But the odds of them detecting you and having the personel to&lt;br /&gt;committ to tracking you down are slim as long as you aren't destructive.&lt;br /&gt;   If you are already a college student, this is ideal, as you can legally&lt;br /&gt;explore your computer system to your heart's desire, then go out and look&lt;br /&gt;for similar systems that you can penetrate with confidence, as you're already&lt;br /&gt;familar with them.&lt;br /&gt;   So if you just want to get your feet wet, call your local college.  Many of&lt;br /&gt;them will provide accounts for local residents at a nominal (under $20) charge.&lt;br /&gt;   Finally, if you get caught, stay quiet until you get a lawyer.  Don't vol-&lt;br /&gt;unteer any information, no matter what kind of 'deals' they offer you. &lt;br /&gt;Nothing is binding unless you make the deal through your lawyer, so you might&lt;br /&gt;as well shut up and wait.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Part Two: Networks&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;   The best place to begin hacking (other than a college) is on one of the&lt;br /&gt;bigger networks such as Telenet.  Why?  First, there is a wide variety of&lt;br /&gt;computers to choose from, from small Micro-Vaxen to huge Crays.  Second, the&lt;br /&gt;networks are fairly well documented.  It's easier to find someone who can help&lt;br /&gt;you with a problem off of Telenet than it is to find assistance concerning your&lt;br /&gt;local college computer or high school machine.  Third, the networks are safer.&lt;br /&gt;Because of the enormous number of calls that are fielded every day by the big&lt;br /&gt;networks, it is not financially practical to keep track of where every call and&lt;br /&gt;connection are made from.  It is also very easy to disguise your location using&lt;br /&gt;the network, which makes your hobby much more secure.&lt;br /&gt;   Telenet has more computers hooked to it than any other system in the world&lt;br /&gt;once you consider that from Telenet you have access to Tymnet, ItaPAC, JANET,&lt;br /&gt;DATAPAC, SBDN, PandaNet, THEnet, and a whole host of other networks, all of&lt;br /&gt;which you can connect to from your terminal.&lt;br /&gt;   The first step that you need to take is to identify your local dialup port.&lt;br /&gt;This is done by dialing 1-800-424-9494 (1200 7E1) and connecting.  It will&lt;br /&gt;spout some garbage at you and then you'll get a prompt saying 'TERMINAL='.&lt;br /&gt;This is your terminal type.  If you have vt100 emulation, type it in now.  Or&lt;br /&gt;just hit return and it will default to dumb terminal mode.&lt;br /&gt;   You'll now get a prompt that looks like a @.  From here, type @c mail &lt;cr&gt;&lt;br /&gt;and then it will ask for a Username.  Enter 'phones' for the username. When it&lt;br /&gt;asks for a password, enter 'phones' again.  From this point, it is menu&lt;br /&gt;driven.  Use this to locate your local dialup, and call it back locally.  If&lt;br /&gt;you don't have a local dialup, then use whatever means you wish to connect to&lt;br /&gt;one long distance (more on this later.)&lt;br /&gt;   When you call your local dialup, you will once again go through the&lt;br /&gt;TERMINAL= stuff, and once again you'll be presented with a @.  This prompt lets&lt;br /&gt;you know you are connected to a Telenet PAD.  PAD stands for either Packet&lt;br /&gt;Assembler/Disassembler (if you talk to an engineer), or Public Access Device&lt;br /&gt;(if you talk to Telenet's marketing people.)  The first description is more&lt;br /&gt;correct.&lt;br /&gt;   Telenet works by taking the data you enter in on the PAD you dialed into,&lt;br /&gt;bundling it into a 128 byte chunk (normally... this can be changed), and then&lt;br /&gt;transmitting it at speeds ranging from 9600 to 19,200 baud to another PAD, who&lt;br /&gt;then takes the data and hands it down to whatever computer or system it's&lt;br /&gt;connected to.  Basically, the PAD allows two computers that have different baud&lt;br /&gt;rates or communication protocols to communicate with each other over a long&lt;br /&gt;distance.  Sometimes you'll notice a time lag in the remote machines response.&lt;br /&gt;This is called PAD Delay, and is to be expected when you're sending data&lt;br /&gt;through several different links.&lt;br /&gt;   What do you do with this PAD?  You use it to connect to remote computer&lt;br /&gt;systems by typing 'C' for connect and then the Network User Address (NUA) of&lt;br /&gt;the system you want to go to.&lt;br /&gt;   An NUA takes the form of   031103130002520&lt;br /&gt;                              \___/\___/\___/&lt;br /&gt;                                |    |    |&lt;br /&gt;                                |    |    |____ network address&lt;br /&gt;                                |    |_________ area prefix&lt;br /&gt;                                |______________ DNIC&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     This is a summary of DNIC's (taken from Blade Runner's file on ItaPAC)&lt;br /&gt;     according to their country and network name.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;DNIC   Network Name    Country          DNIC   Network Name    Country&lt;br /&gt;_______________________________________________________________________________&lt;br /&gt;                                     |&lt;br /&gt;02041   Datanet 1       Netherlands  |  03110   Telenet         USA&lt;br /&gt;02062   DCS             Belgium      |  03340   Telepac         Mexico&lt;br /&gt;02080   Transpac        France       |  03400   UDTS-Curacau    Curacau&lt;br /&gt;02284   Telepac         Switzerland  |  04251   Isranet         Israel&lt;br /&gt;02322   Datex-P         Austria      |  04401   DDX-P           Japan&lt;br /&gt;02329   Radaus          Austria      |  04408   Venus-P         Japan&lt;br /&gt;02342   PSS             UK           |  04501   Dacom-Net       South Korea&lt;br /&gt;02382   Datapak         Denmark      |  04542   Intelpak        Singapore&lt;br /&gt;02402   Datapak         Sweden       |  05052   Austpac         Australia&lt;br /&gt;02405   Telepak         Sweden       |  05053   Midas           Australia&lt;br /&gt;02442   Finpak          Finland      |  05252   Telepac         Hong Kong&lt;br /&gt;02624   Datex-P         West Germany |  05301   Pacnet          New Zealand&lt;br /&gt;02704   Luxpac          Luxembourg   |  06550   Saponet         South Africa&lt;br /&gt;02724   Eirpak          Ireland      |  07240   Interdata       Brazil&lt;br /&gt;03020   Datapac         Canada       |  07241   Renpac          Brazil&lt;br /&gt;03028   Infogram        Canada       |  09000   Dialnet         USA&lt;br /&gt;03103   ITT/UDTS        USA          |  07421   Dompac          French Guiana&lt;br /&gt;03106   Tymnet          USA          |&lt;br /&gt;&lt;br /&gt;   There are two ways to find interesting addresses to connect to.  The first&lt;br /&gt;and easiest way is to obtain a copy of the LOD/H Telenet Directory from the&lt;br /&gt;LOD/H Technical Journal #4 or 2600 Magazine.  Jester Sluggo also put out a good&lt;br /&gt;list of non-US addresses in Phrack Inc. Newsletter Issue 21.  These files will&lt;br /&gt;tell you the NUA, whether it will accept collect calls or not, what type of&lt;br /&gt;computer system it is (if known) and who it belongs to (also if known.)&lt;br /&gt;   The second method of locating interesting addresses is to scan for them&lt;br /&gt;manually.  On Telenet, you do not have to enter the 03110 DNIC to connect to a&lt;br /&gt;Telenet host.  So if you saw that 031104120006140 had a VAX on it you wanted to&lt;br /&gt;look at, you could type @c 412 614 (0's can be ignored most of the time.)&lt;br /&gt;   If this node allows collect billed connections, it will say 412 614&lt;br /&gt;CONNECTED and then you'll possibly get an identifying header or just a&lt;br /&gt;Username: prompt.  If it doesn't allow collect connections, it will give you a&lt;br /&gt;message such as 412 614 REFUSED COLLECT CONNECTION with some error codes out to&lt;br /&gt;the right, and return you to the @ prompt.&lt;br /&gt;   There are two primary ways to get around the REFUSED COLLECT message.  The&lt;br /&gt;first is to use a Network User Id (NUI) to connect.  An NUI is a username/pw&lt;br /&gt;combination that acts like a charge account on Telenet.  To collect to node&lt;br /&gt;412 614 with NUI junk4248, password 525332, I'd type the following:&lt;br /&gt;@c 412 614,junk4248,525332  &lt;---- the 525332 will *not* be echoed to the&lt;br /&gt;screen.  The problem with NUI's is that they're hard to come by unless you're&lt;br /&gt;a good social engineer with a thorough knowledge of Telenet (in which case&lt;br /&gt;you probably aren't reading this section), or you have someone who can&lt;br /&gt;provide you with them.&lt;br /&gt;   The second way to connect is to use a private PAD, either through an X.25&lt;br /&gt;PAD or through something like Netlink off of a Prime computer (more on these&lt;br /&gt;two below.)&lt;br /&gt;   The prefix in a Telenet NUA oftentimes (not always) refers to the phone Area&lt;br /&gt;Code that the computer is located in (i.e. 713 xxx would be a computer in&lt;br /&gt;Houston, Texas.)  If there's a particular area you're interested in, (say,&lt;br /&gt;New York City 914), you could begin by typing @c 914 001 &lt;cr&gt;.  If it connects,&lt;br /&gt;you make a note of it and go on to 914 002.  You do this until you've found&lt;br /&gt;some interesting systems to play with.&lt;br /&gt;   Not all systems are on a simple xxx yyy address.  Some go out to four or&lt;br /&gt;five digits (914 2354), and some have decimal or numeric extensions&lt;br /&gt;(422 121A = 422 121.01).  You have to play with them, and you never know what&lt;br /&gt;you're going to find.  To fully scan out a prefix would take ten million&lt;br /&gt;attempts per prefix.  For example, if I want to scan 512 completely, I'd have&lt;br /&gt;to start with 512 00000.00 and go through 512 00000.99, then increment the&lt;br /&gt;address by 1 and try 512 00001.00 through 512 00001.99.  A lot of scanning.&lt;br /&gt;There are plenty of neat computers to play with in a 3-digit scan, however,&lt;br /&gt;so don't go berserk with the extensions.&lt;br /&gt;   Sometimes you'll attempt to connect and it will just be sitting there after&lt;br /&gt;one or two minutes.  In this case, you want to abort the connect attempt by&lt;br /&gt;sending a hard break (this varies with different term programs, on Procomm,&lt;br /&gt;it's ALT-B), and then when you get the @ prompt back, type 'D' for disconnect.&lt;br /&gt;   If you connect to a computer and wish to disconnect, you can type &lt;cr&gt; @&lt;br /&gt;&lt;cr&gt; and you it should say TELENET and then give you the @ prompt.  From there,&lt;br /&gt;type D to disconnect or CONT to re-connect and continue your session&lt;br /&gt;uninterrupted.&lt;br /&gt;&lt;br /&gt;Outdials, Network Servers, and PADs&lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;   In addition to computers, an NUA may connect you to several other things.&lt;br /&gt;One of the most useful is the outdial.  An outdial is nothing more than a modem&lt;br /&gt;you can get to over telenet- similar to the PC Pursuit concept, except that&lt;br /&gt;these don't have passwords on them most of the time.&lt;br /&gt;   When you connect, you will get a message like 'Hayes 1200 baud outdial,&lt;br /&gt;Detroit, MI', or 'VEN-TEL 212 Modem', or possibly 'Session 1234 established&lt;br /&gt;on Modem 5588'.  The best way to figure out the commands on these is to&lt;br /&gt;type ? or H or HELP- this will get you all the information that you need to&lt;br /&gt;use one.&lt;br /&gt;   Safety tip here- when you are hacking *any* system through a phone dialup,&lt;br /&gt;always use an outdial or a diverter, especially if it is a local phone number&lt;br /&gt;to you.  More people get popped hacking on local computers than you can&lt;br /&gt;imagine, Intra-LATA calls are the easiest things in the world to trace inexp-&lt;br /&gt;ensively.&lt;br /&gt;   Another nice trick you can do with an outdial is use the redial or macro&lt;br /&gt;function that many of them have.  First thing you do when you connect is to&lt;br /&gt;invoke the 'Redial Last Number' facility.  This will dial the last number used,&lt;br /&gt;which will be the one the person using it before you typed.  Write down the&lt;br /&gt;number, as no one would be calling a number without a computer on it.  This&lt;br /&gt;is a good way to find new systems to hack.  Also, on a VENTEL modem, type 'D'&lt;br /&gt;for Display and it will display the five numbers stored as macros in the&lt;br /&gt;modem's memory.&lt;br /&gt;   There are also different types of servers for remote Local Area Networks&lt;br /&gt;(LAN) that have many machine all over the office or the nation connected to&lt;br /&gt;them.  I'll discuss identifying these later in the computer ID section.&lt;br /&gt;   And finally, you may connect to something that says 'X.25 Communication&lt;br /&gt;PAD' and then some more stuff, followed by a new @ prompt.  This is a PAD&lt;br /&gt;just like the one you are on, except that all attempted connections are billed&lt;br /&gt;to the PAD, allowing you to connect to those nodes who earlier refused collect&lt;br /&gt;connections.&lt;br /&gt;   This also has the added bonus of confusing where you are connecting from.&lt;br /&gt;When a packet is transmitted from PAD to PAD, it contains a header that has&lt;br /&gt;the location you're calling from.  For instance, when you first connected&lt;br /&gt;to Telenet, it might have said 212 44A CONNECTED if you called from the 212&lt;br /&gt;area code.  This means you were calling PAD number 44A in the 212 area.&lt;br /&gt;That 21244A will be sent out in the header of all packets leaving the PAD.&lt;br /&gt;   Once you connect to a private PAD, however, all the packets going out&lt;br /&gt;from *it* will have it's address on them, not yours.  This can be a valuable&lt;br /&gt;buffer between yourself and detection.&lt;br /&gt;&lt;br /&gt;Phone Scanning&lt;br /&gt;~~~~~~~~~~~~~~&lt;br /&gt;   Finally, there's the time-honored method of computer hunting that was made&lt;br /&gt;famous among the non-hacker crowd by that Oh-So-Technically-Accurate movie&lt;br /&gt;Wargames.  You pick a three digit phone prefix in your area and dial every&lt;br /&gt;number from 0000 --&gt; 9999 in that prefix, making a note of all the carriers&lt;br /&gt;you find.  There is software available to do this for nearly every computer&lt;br /&gt;in the world, so you don't have to do it by hand.&lt;br /&gt;&lt;br /&gt;Part Three: I've Found a Computer, Now What?&lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;   This next section is applicable universally.  It doesn't matter how you&lt;br /&gt;found this computer, it could be through a network, or it could be from&lt;br /&gt;carrier scanning your High School's phone prefix, you've got this prompt&lt;br /&gt;this prompt, what the hell is it?&lt;br /&gt;   I'm *NOT* going to attempt to tell you what to do once you're inside of&lt;br /&gt;any of these operating systems.  Each one is worth several G-files in its&lt;br /&gt;own right.  I'm going to tell you how to identify and recognize certain&lt;br /&gt;OpSystems, how to approach hacking into them, and how to deal with something&lt;br /&gt;that you've never seen before and have know idea what it is.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;VMS-       The VAX computer is made by Digital Equipment Corporation (DEC),&lt;br /&gt;           and runs the VMS (Virtual Memory System) operating system.&lt;br /&gt;           VMS is characterized by the 'Username:' prompt.  It will not tell&lt;br /&gt;           you if you've entered a valid username or not, and will disconnect&lt;br /&gt;           you after three bad login attempts.  It also keeps track of all&lt;br /&gt;           failed login attempts and informs the owner of the account next time&lt;br /&gt;           s/he logs in how many bad login attempts were made on the account.&lt;br /&gt;           It is one of the most secure operating systems around from the&lt;br /&gt;           outside, but once you're in there are many things that you can do&lt;br /&gt;           to circumvent system security.  The VAX also has the best set of&lt;br /&gt;           help files in the world.  Just type HELP and read to your heart's&lt;br /&gt;           content.&lt;br /&gt;           Common Accounts/Defaults:  [username: password [[,password]] ]&lt;br /&gt;           SYSTEM:     OPERATOR or MANAGER or SYSTEM or SYSLIB&lt;br /&gt;           OPERATOR:   OPERATOR&lt;br /&gt;           SYSTEST:    UETP&lt;br /&gt;           SYSMAINT:   SYSMAINT or SERVICE or DIGITAL&lt;br /&gt;           FIELD:      FIELD or SERVICE&lt;br /&gt;           GUEST:      GUEST or unpassworded&lt;br /&gt;           DEMO:       DEMO  or unpassworded&lt;br /&gt;           DECNET:     DECNET&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;DEC-10-    An earlier line of DEC computer equipment, running the TOPS-10&lt;br /&gt;           operating system.  These machines are recognized by their&lt;br /&gt;           '.' prompt.  The DEC-10/20 series are remarkably hacker-friendly,&lt;br /&gt;           allowing you to enter several important commands without ever&lt;br /&gt;           logging into the system.  Accounts are in the format [xxx,yyy] where&lt;br /&gt;           xxx and yyy are integers.  You can get a listing of the accounts and&lt;br /&gt;           the process names of everyone on the system before logging in with&lt;br /&gt;           the command .systat (for SYstem STATus).  If you seen an account&lt;br /&gt;           that reads [234,1001]   BOB JONES, it might be wise to try BOB or&lt;br /&gt;           JONES or both for a password on this account.  To login, you type&lt;br /&gt;           .login xxx,yyy  and then type the password when prompted for it.&lt;br /&gt;           The system will allow you unlimited tries at an account, and does&lt;br /&gt;           not keep records of bad login attempts.  It will also inform you&lt;br /&gt;           if the UIC you're trying (UIC = User Identification Code, 1,2 for&lt;br /&gt;           example) is bad.&lt;br /&gt;           Common Accounts/Defaults:&lt;br /&gt;           1,2:        SYSLIB or OPERATOR or MANAGER&lt;br /&gt;           2,7:        MAINTAIN&lt;br /&gt;           5,30:       GAMES&lt;br /&gt;&lt;br /&gt;UNIX-      There are dozens of different machines out there that run UNIX.&lt;br /&gt;           While some might argue it isn't the best operating system in the&lt;br /&gt;           world, it is certainly the most widely used.  A UNIX system will&lt;br /&gt;           usually have a prompt like 'login:' in lower case.  UNIX also&lt;br /&gt;           will give you unlimited shots at logging in (in most cases), and&lt;br /&gt;           there is usually no log kept of bad attempts.&lt;br /&gt;           Common Accounts/Defaults: (note that some systems are case&lt;br /&gt;           sensitive, so use lower case as a general rule.  Also, many times&lt;br /&gt;           the accounts will be unpassworded, you'll just drop right in!)&lt;br /&gt;           root:       root&lt;br /&gt;           admin:      admin&lt;br /&gt;           sysadmin:   sysadmin or admin&lt;br /&gt;           unix:       unix&lt;br /&gt;           uucp:       uucp&lt;br /&gt;           rje:        rje&lt;br /&gt;           guest:      guest&lt;br /&gt;           demo:       demo&lt;br /&gt;           daemon:     daemon&lt;br /&gt;           sysbin:     sysbin&lt;br /&gt;&lt;br /&gt;Prime-     Prime computer company's mainframe running the Primos operating&lt;br /&gt;           system.  The are easy to spot, as the greet you with&lt;br /&gt;           'Primecon 18.23.05' or the like, depending on the version of the&lt;br /&gt;           operating system you run into.  There will usually be no prompt&lt;br /&gt;           offered, it will just look like it's sitting there.  At this point,&lt;br /&gt;           type 'login &lt;username&gt;'.  If it is a pre-18.00.00 version of Primos,&lt;br /&gt;           you can hit a bunch of ^C's for the password and you'll drop in.&lt;br /&gt;           Unfortunately, most people are running versions 19+.  Primos also&lt;br /&gt;           comes with a good set of help files.  One of the most useful&lt;br /&gt;           features of a Prime on Telenet is a facility called NETLINK.  Once&lt;br /&gt;           you're inside, type NETLINK and follow the help files.  This allows&lt;br /&gt;           you to connect to NUA's all over the world using the 'nc' command.&lt;br /&gt;           For example, to connect to NUA 026245890040004, you would type&lt;br /&gt;           @nc :26245890040004 at the netlink prompt.&lt;br /&gt;           Common Accounts/Defaults:&lt;br /&gt;           PRIME       PRIME or PRIMOS&lt;br /&gt;           PRIMOS_CS   PRIME or PRIMOS&lt;br /&gt;           PRIMENET    PRIMENET&lt;br /&gt;           SYSTEM      SYSTEM or PRIME&lt;br /&gt;           NETLINK     NETLINK&lt;br /&gt;           TEST        TEST&lt;br /&gt;           GUEST       GUEST&lt;br /&gt;           GUEST1      GUEST&lt;br /&gt;&lt;br /&gt;HP-x000-   This system is made by Hewlett-Packard.  It is characterized by the&lt;br /&gt;           ':' prompt.  The HP has one of the more complicated login sequences&lt;br /&gt;           around- you type 'HELLO SESSION NAME,USERNAME,ACCOUNTNAME,GROUP'.&lt;br /&gt;           Fortunately, some of these fields can be left blank in many cases.&lt;br /&gt;           Since any and all of these fields can be passworded, this is not&lt;br /&gt;           the easiest system to get into, except for the fact that there are&lt;br /&gt;           usually some unpassworded accounts around.  In general, if the&lt;br /&gt;           defaults don't work, you'll have to brute force it using the&lt;br /&gt;           common password list (see below.)  The HP-x000 runs the MPE operat-&lt;br /&gt;           ing system, the prompt for it will be a ':', just like the logon&lt;br /&gt;           prompt.&lt;br /&gt;           Common Accounts/Defaults:&lt;br /&gt;           MGR.TELESUP,PUB                      User: MGR Acct: HPONLY Grp: PUB&lt;br /&gt;           MGR.HPOFFICE,PUB                     unpassworded&lt;br /&gt;           MANAGER.ITF3000,PUB                  unpassworded&lt;br /&gt;           FIELD.SUPPORT,PUB                    user: FLD,  others unpassworded&lt;br /&gt;           MAIL.TELESUP,PUB                     user: MAIL, others&lt;br /&gt;unpassworded&lt;br /&gt;           MGR.RJE                              unpassworded&lt;br /&gt;           FIELD.HPPl89 ,HPPl87,HPPl89,HPPl96   unpassworded&lt;br /&gt;           MGR.TELESUP,PUB,HPONLY,HP3           unpassworded&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IRIS-      IRIS stands for Interactive Real Time Information System.  It orig-&lt;br /&gt;           inally ran on PDP-11's, but now runs on many other minis.  You can&lt;br /&gt;           spot an IRIS by the 'Welcome to "IRIS" R9.1.4 Timesharing' banner,&lt;br /&gt;           and the ACCOUNT ID? prompt.  IRIS allows unlimited tries at hacking&lt;br /&gt;           in, and keeps no logs of bad attempts.  I don't know any default&lt;br /&gt;           passwords, so just try the common ones from the password database&lt;br /&gt;           below.&lt;br /&gt;           Common Accounts:&lt;br /&gt;           MANAGER&lt;br /&gt;           BOSS&lt;br /&gt;           SOFTWARE&lt;br /&gt;           DEMO&lt;br /&gt;           PDP8&lt;br /&gt;           PDP11&lt;br /&gt;           ACCOUNTING&lt;br /&gt;&lt;br /&gt;VM/CMS-    The VM/CMS operating system runs in International Business Machines&lt;br /&gt;           (IBM) mainframes.  When you connect to one of these, you will get&lt;br /&gt;           message similar to 'VM/370 ONLINE', and then give you a '.' prompt,&lt;br /&gt;           just like TOPS-10 does.  To login, you type 'LOGON &lt;username&gt;'.&lt;br /&gt;           Common Accounts/Defaults are:&lt;br /&gt;           AUTOLOG1:            AUTOLOG or AUTOLOG1&lt;br /&gt;           CMS:                 CMS&lt;br /&gt;           CMSBATCH:            CMS or CMSBATCH&lt;br /&gt;           EREP:                EREP&lt;br /&gt;           MAINT:               MAINT or MAINTAIN&lt;br /&gt;           OPERATNS:            OPERATNS or OPERATOR&lt;br /&gt;           OPERATOR:            OPERATOR&lt;br /&gt;           RSCS:                RSCS&lt;br /&gt;           SMART:               SMART&lt;br /&gt;           SNA:                 SNA&lt;br /&gt;           VMTEST:              VMTEST&lt;br /&gt;           VMUTIL:              VMUTIL&lt;br /&gt;           VTAM:                VTAM&lt;br /&gt;&lt;br /&gt;NOS-       NOS stands for Networking Operating System, and runs on the Cyber&lt;br /&gt;           computer made by Control Data Corporation.  NOS identifies itself&lt;br /&gt;           quite readily, with a banner of 'WELCOME TO THE NOS SOFTWARE&lt;br /&gt;           SYSTEM.  COPYRIGHT CONTROL DATA 1978,1987'.  The first prompt you&lt;br /&gt;           will get will be FAMILY:.  Just hit return here.  Then you'll get&lt;br /&gt;           a USER NAME: prompt.  Usernames are typically 7 alpha-numerics&lt;br /&gt;           characters long, and are *extremely* site dependent. Operator&lt;br /&gt;           accounts begin with a digit, such as 7ETPDOC.&lt;br /&gt;           Common Accounts/Defaults:&lt;br /&gt;           $SYSTEM              unknown&lt;br /&gt;           SYSTEMV              unknown&lt;br /&gt;&lt;br /&gt;Decserver- This is not truly a computer system, but is a network server that&lt;br /&gt;           has many different machines available from it.  A Decserver will&lt;br /&gt;           say 'Enter Username&gt;' when you first connect.  This can be anything,&lt;br /&gt;           it doesn't matter, it's just an identifier.  Type 'c', as this is&lt;br /&gt;           the least conspicuous thing to enter.  It will then present you&lt;br /&gt;           with a 'Local&gt;' prompt.  From here, you type 'c &lt;systemname&gt;' to&lt;br /&gt;           connect to a system.  To get a list of system names, type&lt;br /&gt;           'sh services' or 'sh nodes'.  If you have any problems, online&lt;br /&gt;           help is available with the 'help' command.  Be sure and look for&lt;br /&gt;           services named 'MODEM' or 'DIAL' or something similar, these are&lt;br /&gt;           often outdial modems and can be useful!&lt;br /&gt;&lt;br /&gt;GS/1-      Another type of network server.  Unlike a Decserver, you can't&lt;br /&gt;           predict what prompt a GS/1 gateway is going to give you.  The&lt;br /&gt;           default prompt it 'GS/1&gt;', but this is redifinable by the&lt;br /&gt;           system administrator.  To test for a GS/1, do a 'sh d'.  If that&lt;br /&gt;           prints out a large list of defaults (terminal speed, prompt,&lt;br /&gt;           parity, etc...), you are on a GS/1.  You connect in the same manner&lt;br /&gt;           as a Decserver, typing 'c &lt;systemname&gt;'.  To find out what systems&lt;br /&gt;           are available, do a 'sh n' or a 'sh c'.  Another trick is to do a&lt;br /&gt;           'sh m', which will sometimes show you a list of macros for logging&lt;br /&gt;           onto a system.  If there is a macro named VAX, for instance, type&lt;br /&gt;           'do VAX'.&lt;br /&gt;&lt;br /&gt;           The above are the main system types in use today.  There are&lt;br /&gt;           hundreds of minor variants on the above, but this should be&lt;br /&gt;           enough to get you started.&lt;br /&gt;         &lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Unresponsive Systems&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;   Occasionally you will connect to a system that will do nothing but sit&lt;br /&gt;there.  This is a frustrating feeling, but a methodical approach to the system&lt;br /&gt;will yield a response if you take your time.  The following list will usually&lt;br /&gt;make *something* happen.&lt;br /&gt;1)  Change your parity, data length, and stop bits.  A system that won't re-&lt;br /&gt;    spond at 8N1 may react at 7E1 or 8E2 or 7S2.  If you don't have a term&lt;br /&gt;    program that will let you set parity to EVEN, ODD, SPACE, MARK, and NONE,&lt;br /&gt;    with data length of 7 or 8, and 1 or 2 stop bits, go out and buy one.&lt;br /&gt;    While having a good term program isn't absolutely necessary, it sure is&lt;br /&gt;    helpful.&lt;br /&gt;2)  Change baud rates.  Again, if your term program will let you choose odd&lt;br /&gt;    baud rates such as 600 or 1100, you will occasionally be able to penetrate&lt;br /&gt;    some very interesting systems, as most systems that depend on a strange&lt;br /&gt;    baud rate seem to think that this is all the security they need...&lt;br /&gt;3)  Send a series of &lt;cr&gt;'s.&lt;br /&gt;4)  Send a hard break followed by a &lt;cr&gt;.&lt;br /&gt;5)  Type a series of .'s (periods).  The Canadian network Datapac responds&lt;br /&gt;    to this.&lt;br /&gt;6)  If you're getting garbage, hit an 'i'.  Tymnet responds to this, as does&lt;br /&gt;    a MultiLink II.&lt;br /&gt;7)  Begin sending control characters, starting with ^A --&gt; ^Z.&lt;br /&gt;8)  Change terminal emulations.  What your vt100 emulation thinks is garbage&lt;br /&gt;    may all of a sudden become crystal clear using ADM-5 emulation.  This also&lt;br /&gt;    relates to how good your term program is.&lt;br /&gt;9)  Type LOGIN, HELLO, LOG, ATTACH, CONNECT, START, RUN, BEGIN, LOGON, GO,&lt;br /&gt;    JOIN, HELP, and anything else you can think of.&lt;br /&gt;10) If it's a dialin, call the numbers around it and see if a company&lt;br /&gt;    answers.  If they do, try some social engineering.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Brute Force Hacking&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;   There will also be many occasions when the default passwords will not work&lt;br /&gt;on an account.  At this point, you can either go onto the next system on your&lt;br /&gt;list, or you can try to 'brute-force' your way in by trying a large database&lt;br /&gt;of passwords on that one account.  Be careful, though!  This works fine on&lt;br /&gt;systems that don't keep track of invalid logins, but on a system like a VMS,&lt;br /&gt;someone is going to have a heart attack if they come back and see '600 Bad&lt;br /&gt;Login Attempts Since Last Session' on their account.  There are also some&lt;br /&gt;operating systems that disconnect after 'x' number of invalid login attempts&lt;br /&gt;and refuse to allow any more attempts for one hour, or ten minutes, or some-&lt;br /&gt;times until the next day.&lt;br /&gt;   The following list is taken from my own password database plus the data-&lt;br /&gt;base of passwords that was used in the Internet UNIX Worm that was running&lt;br /&gt;around in November of 1988.  For a shorter group, try first names, computer&lt;br /&gt;terms, and obvious things like 'secret', 'password', 'open', and the name&lt;br /&gt;of the account.  Also try the name of the company that owns the computer&lt;br /&gt;system (if known), the company initials, and things relating to the products&lt;br /&gt;the company makes or deals with.&lt;br /&gt;&lt;br /&gt;                              Password List&lt;br /&gt;                              =============&lt;br /&gt;&lt;br /&gt;      aaa                daniel             jester             rascal&lt;br /&gt;      academia           danny              johnny             really&lt;br /&gt;      ada                dave               joseph             rebecca&lt;br /&gt;      adrian             deb                joshua             remote&lt;br /&gt;      aerobics           debbie             judith             rick&lt;br /&gt;      airplane           deborah            juggle             reagan&lt;br /&gt;      albany             december           julia              robot&lt;br /&gt;      albatross          desperate          kathleen           robotics&lt;br /&gt;      albert             develop            kermit             rolex&lt;br /&gt;      alex               diet               kernel             ronald&lt;br /&gt;      alexander          digital            knight             rosebud&lt;br /&gt;      algebra            discovery          lambda             rosemary&lt;br /&gt;      alias              disney             larry              roses&lt;br /&gt;      alpha              dog                lazarus            ruben&lt;br /&gt;      alphabet           drought            lee                rules&lt;br /&gt;      ama                duncan             leroy              ruth&lt;br /&gt;      amy                easy               lewis              sal&lt;br /&gt;      analog             eatme              light              saxon&lt;br /&gt;      anchor             edges              lisa               scheme&lt;br /&gt;      andy               edwin              louis              scott&lt;br /&gt;      andrea             egghead            lynne              scotty&lt;br /&gt;      animal             eileen             mac                secret&lt;br /&gt;      answer             einstein           macintosh          sensor&lt;br /&gt;      anything           elephant           mack               serenity&lt;br /&gt;      arrow              elizabeth          maggot             sex&lt;br /&gt;      arthur             ellen              magic              shark&lt;br /&gt;      asshole            emerald            malcolm            sharon&lt;br /&gt;      athena             engine             mark               shit&lt;br /&gt;      atmosphere         engineer           markus             shiva&lt;br /&gt;      bacchus            enterprise         marty              shuttle&lt;br /&gt;      badass             enzyme             marvin             simon&lt;br /&gt;      bailey             euclid             master             simple&lt;br /&gt;      banana             evelyn             maurice            singer&lt;br /&gt;      bandit             extension          merlin             single&lt;br /&gt;      banks              fairway            mets               smile&lt;br /&gt;      bass               felicia            michael            smiles&lt;br /&gt;      batman             fender             michelle           smooch&lt;br /&gt;      beauty             fermat             mike               smother&lt;br /&gt;      beaver             finite             minimum            snatch&lt;br /&gt;      beethoven          flower             minsky             snoopy&lt;br /&gt;      beloved            foolproof          mogul              soap&lt;br /&gt;      benz               football           moose              socrates&lt;br /&gt;      beowulf            format             mozart             spit&lt;br /&gt;      berkeley           forsythe           nancy              spring&lt;br /&gt;      berlin             fourier            napoleon           subway&lt;br /&gt;      beta               fred               network            success&lt;br /&gt;      beverly            friend             newton             summer&lt;br /&gt;      bob                frighten           next               super&lt;br /&gt;      brenda             fun                olivia             support&lt;br /&gt;      brian              gabriel            oracle             surfer&lt;br /&gt;      bridget            garfield           orca               suzanne&lt;br /&gt;      broadway           gauss              orwell             tangerine&lt;br /&gt;      bumbling           george             osiris             tape&lt;br /&gt;      cardinal           gertrude           outlaw             target&lt;br /&gt;      carmen             gibson             oxford             taylor&lt;br /&gt;      carolina           ginger             pacific            telephone&lt;br /&gt;      caroline           gnu                painless           temptation&lt;br /&gt;      castle             golf               pam                tiger&lt;br /&gt;      cat                golfer             paper              toggle&lt;br /&gt;      celtics            gorgeous           password           tomato&lt;br /&gt;      change             graham             pat                toyota&lt;br /&gt;      charles            gryphon            patricia           trivial&lt;br /&gt;      charming           guest              penguin            unhappy&lt;br /&gt;      charon             guitar             pete               unicorn&lt;br /&gt;      chester            hacker             peter              unknown&lt;br /&gt;      cigar              harmony            philip             urchin&lt;br /&gt;      classic            harold             phoenix            utility&lt;br /&gt;      coffee             harvey             pierre             vicky&lt;br /&gt;      coke               heinlein           pizza              virginia&lt;br /&gt;      collins            hello              plover             warren&lt;br /&gt;      comrade            help               polynomial         water&lt;br /&gt;      computer           herbert            praise             weenie&lt;br /&gt;      condo              honey              prelude            whatnot&lt;br /&gt;      condom             horse              prince             whitney&lt;br /&gt;      cookie             imperial           protect            will&lt;br /&gt;      cooper             include            pumpkin            william&lt;br /&gt;      create             ingres             puppet             willie&lt;br /&gt;      creation           innocuous          rabbit             winston&lt;br /&gt;      creator            irishman           rachmaninoff       wizard&lt;br /&gt;      cretin             isis               rainbow            wombat&lt;br /&gt;      daemon             japan              raindrop           yosemite&lt;br /&gt;      dancer             jessica            random             zap&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Part Four: Wrapping it up!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/span&gt;&lt;br /&gt;   I hope this file has been of some help in getting started.  If you're&lt;br /&gt;asking yourself the question 'Why hack?', then you've probably wasted a lot&lt;br /&gt;of time reading this, as you'll never understand.  For those of you who&lt;br /&gt;have read this and found it useful, please send a tax-deductible donation&lt;br /&gt;of $5.00 (or more!) in the name of the Legion of Doom to:&lt;br /&gt;                                       The American Cancer Society&lt;br /&gt;                                       90 Park Avenue&lt;br /&gt;                                       New York, NY  10016&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;********************************************************************************&lt;br /&gt;References:&lt;br /&gt;1) Introduction to ItaPAC by Blade Runner&lt;br /&gt;   Telecom Security Bulletin #1&lt;br /&gt;2) The IBM VM/CMS Operating System by Lex Luthor&lt;br /&gt;   The LOD/H Technical Journal #2&lt;br /&gt;3) Hacking the IRIS Operating System by The Leftist&lt;br /&gt;   The LOD/H Technical Journal #3&lt;br /&gt;4) Hacking CDC's Cyber by Phrozen Ghost&lt;br /&gt;   Phrack Inc. Newsletter #18&lt;br /&gt;5) USENET comp.risks digest (various authors, various issues)&lt;br /&gt;6) USENET unix.wizards forum (various authors)&lt;br /&gt;7) USENET info-vax forum (various authors)&lt;br /&gt;&lt;br /&gt;Recommended Reading:&lt;br /&gt;1) Hackers by Steven Levy&lt;br /&gt;2) Out of the Inner Circle by Bill Landreth&lt;br /&gt;3) Turing's Man by J. David Bolter&lt;br /&gt;4) Soul of a New Machine by Tracy Kidder&lt;br /&gt;5) Neuromancer, Count Zero, Mona Lisa Overdrive, and Burning Chrome, all&lt;br /&gt;   by William Gibson&lt;br /&gt;6) Reality Hackers Magazine c/o High Frontiers, P.O. Box 40271, Berkeley,&lt;br /&gt;   California, 94704, 415-995-2606&lt;br /&gt;7) Any of the Phrack Inc. Newsletters &amp;amp; LOD/H Technical Journals you can find.&lt;br /&gt;&lt;br /&gt;Acknowledgements:&lt;br /&gt;   Thanks to my wife for putting up with me.&lt;br /&gt;   Thanks to Lone Wolf for the RSTS &amp;amp; TOPS assistance.&lt;br /&gt;   Thanks to Android Pope for proofreading, suggestions, and beer.&lt;br /&gt;   Thanks to The Urvile/Necron 99 for proofreading &amp;amp; Cyber info.&lt;br /&gt;   Thanks to Eric Bloodaxe for wading through all the trash.&lt;br /&gt;   Thanks to the users of Phoenix Project for their contributions.&lt;br /&gt;   Thanks to Altos Computer Systems, Munich, for the chat system.&lt;br /&gt;   Thanks to the various security personel who were willing to talk to&lt;br /&gt;             me about how they operate.&lt;br /&gt; &lt;br /&gt;Boards:&lt;br /&gt;   I can be reached on the following systems with some regularity-&lt;br /&gt;       The Phoenix Project:    512/441-3088    300-2400 baud&lt;br /&gt;       Hacker's Den-80:        718/358-9209    300-1200 baud&lt;br /&gt;       Smash Palace South:     512/478-6747    300-2400 baud&lt;br /&gt;       Smash Palace North:     612/633-0509    300-2400 baud&lt;br /&gt;&lt;br /&gt;************************************* EOF **************************************&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;X-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-X&lt;br /&gt; Another file downloaded from:                     The NIRVANAnet(tm) Seven&lt;br /&gt;&lt;br /&gt; &amp;amp; the Temple of the Screaming Electron   Taipan Enigma        510/935-5845&lt;br /&gt; Burn This Flag                           Zardoz               408/363-9766&lt;br /&gt; realitycheck                             Poindexter Fortran   510/527-1662&lt;br /&gt; Lies Unlimited                           Mick Freen           801/278-2699&lt;br /&gt; The New Dork Sublime                     Biffnix              415/864-DORK&lt;br /&gt; The Shrine                               Rif Raf              206/794-6674&lt;br /&gt; Planet Mirth                             Simon Jester         510/786-6560&lt;br /&gt;&lt;br /&gt;                          "Raw Data for Raw Nerves"&lt;br /&gt;X-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-X&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-432787505211718183?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/432787505211718183/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=432787505211718183' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/432787505211718183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/432787505211718183'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/01/begin-hacking-ur-own-risk.html' title='Begin Hacking.........!!(@ ur own risk.......)'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1816654185723805585.post-3459853023691878532</id><published>2008-01-29T07:50:00.000-08:00</published><updated>2008-01-29T07:53:58.374-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hacking'/><title type='text'>Hacker's Mindset.......according to me.....!!</title><content type='html'>So you wanna be a HACKER huh? &lt;bwahahaha!&gt; It's a state-of-MIND!&lt;br /&gt;..you can induce it - but only if you are willing to drive yourself&lt;br /&gt;mad enough! Go read and practice until you have mastered at least&lt;br /&gt;Assembly language and Intermediate Level Electronics! Without this&lt;br /&gt;foundation you'll be just another little geek, who might know the magic&lt;br /&gt;words to the spell but dosent understand what he's doing! So RTFM!&lt;br /&gt;..so what does that mean? Read The Fucking Manual! You will be sooo&lt;br /&gt;amazed at how easy most things are if you just try to read the manual&lt;br /&gt;first! The truth is: Most people cant read. Or they read poorly if&lt;br /&gt;they read at all. So if you can't really read...STOP RIGHT HERE. GO&lt;br /&gt;learn to read first. If you can't read at a minimum 12th Grade level&lt;br /&gt;you cant be a hacker. Reading is the basic skill you must have to do&lt;br /&gt;EVERYTHING BEYOND THIS POINT.&lt;br /&gt;&lt;br /&gt; Tell your friends you cant party...you're busy. Spend at least 4&lt;br /&gt;hours a day at your new-found fascination...or decide right here&lt;br /&gt;and now that you cant cut it! If you CAN, get a copy of MINIX or&lt;br /&gt;LINUX...start learning about OPERATING SYSTEMS. Then start your&lt;br /&gt;1st real hack...try building a computer-controlled, DTMF dialer&lt;br /&gt;card for your cheap PC...write the code to use it with, make it&lt;br /&gt;a TSR to keep life interesting...now port it to MINIX or whatever&lt;br /&gt;...better yet, port it as an IOCTL call at kernel level! You keep&lt;br /&gt;reading...&lt;br /&gt;&lt;br /&gt; Now you're ready to take on something more complex - go to the&lt;br /&gt;Library, start a literature search; topic: Telephone Technologies.&lt;br /&gt;RTFM! Learm about the ancient cross-bar, the Pre-ESS systems, the&lt;br /&gt;fab MFTSS, the TELEX boxes and circuits...keep reading...buy up&lt;br /&gt;an older, cheap (like under $50) cellular phone...by this time&lt;br /&gt;you should already have a subscription to 'Nuts &amp;amp; Volts" as well&lt;br /&gt;as a few other grassroots technology pubs....buy a copy of the&lt;br /&gt;"Cellular Hacker's Bible"....start by doing something simple..&lt;br /&gt;..disassemble and re-write the phone`s control ROM to allow it&lt;br /&gt;to function as an 800MHZ scanner...hopefully you've assembled&lt;br /&gt;a large array of tools and test gear by now. You've got a good&lt;br /&gt;dual-trace scope, some pc-based PROM burner, a signal generator,&lt;br /&gt;a logic probe or two, maybe even a microprocessor-emulator for&lt;br /&gt;the 5051, the Z80, the 68010 or something....you may have been&lt;br /&gt;dragged into some fields-afar by life - incorporate them: If&lt;br /&gt;somebody drasgged you into SCUBA, build your own sonar. If you&lt;br /&gt;have gotten interested in amateur radio, you can build a lot&lt;br /&gt;of swell stuff...I recommend you checkout Packet's AX25A level2&lt;br /&gt;protocol...very slick stuff! If your bud's are all into motors,&lt;br /&gt;take a whak at doing your own Performance PROMS for GM's F.I. and&lt;br /&gt;spark advance curves...or try adapting some Volkswagen/BOSCHE&lt;br /&gt;Kjetronics F.I. to a Harley Davidson!..maybe you're into music&lt;br /&gt;so you buy a synthesizer and learn all about electronic music,&lt;br /&gt;you start hacking analog modules and build a nicer synth than you&lt;br /&gt;could buy! Then you interface it to a MIDI port on a cheap 286AT&lt;br /&gt;and then hack up some sequencer software, or buy some and then&lt;br /&gt;disassemble it to fix all the bugs! You keep reading...&lt;br /&gt;&lt;br /&gt; By now most of your friends are also "far into the pudding", you&lt;br /&gt;have either gained 50 lbs or gone totally skinny...your skin tone&lt;br /&gt;is 2 shades lighter from being indoors so long...most of the opposite&lt;br /&gt;sex is either totally freaked by or with you - they either dig you,&lt;br /&gt;or they dont!...you're probably knocking on the door of what will&lt;br /&gt;be a $60K+/yr job as a systems analyst...and you are well-aware that&lt;br /&gt;90% of the people in this world can't talk their way out of a badly&lt;br /&gt;cooked steak at the local eatery, let alone install a new motherboard&lt;br /&gt;in their PC! So you pick up some extra cash on doing shit like that&lt;br /&gt;for the straights...you keep reading, and RTFM'ing higher and higher,&lt;br /&gt;learning about networks...the VCR breaks down and your SO bitches&lt;br /&gt;about having to wait till monday to have it fixed...you fix it in&lt;br /&gt;about 40 minutes....the next day the clothes dryer starts to make&lt;br /&gt;squeeking noises like a 50' mouse, you've never fixed one before -&lt;br /&gt;but somehow it's not that difficult to open the bastard up and find&lt;br /&gt;the squeek and fix it...and suddenly it dawns on you that hacking&lt;br /&gt;code or hardware is pretty much the same! You keep reading...&lt;br /&gt;&lt;br /&gt; Congrats, you are now a real hacker. Absolutly nothing but a lack of&lt;br /&gt;time (or in some cases money) can stop you. You are a true Technologic&lt;br /&gt;Philosopher...you can function in places a mere Engineer or Scientist&lt;br /&gt;would truly FEAR TO TREAD! You can read better than Evelyn Wood, you&lt;br /&gt;have a collection of tools that would make a Master Machinist and a&lt;br /&gt;Prototype EE or ME cry. You can calculate series and parallel resonant&lt;br /&gt;circuits in your head. You can fix any consumer appliance - if you can&lt;br /&gt;get the parts. Your car has either become one of your main hacks or&lt;br /&gt;you'ver deligated the job to a mechanic who you have found to be a&lt;br /&gt;fellow hacker; and you work on his homebrew 68010 unix box...because&lt;br /&gt;you've got a 68010 emulator and he works on your car because that's&lt;br /&gt;the kind he specializes in! Maybe you trade services with people&lt;br /&gt;for 50% of what ordinary people have to BUY WITH CASH!...you keep&lt;br /&gt;reading...&lt;br /&gt;&lt;br /&gt; (this is the stage where the author now finds himself...16 years&lt;br /&gt;  into a career at a Fortune 5 company and age 42...still reading...&lt;br /&gt;  your mileage may vary! &lt;-((that's my code too! I co-wrote VEEP,&lt;br /&gt;  (vehicle-economy-emissions-program, a complete auto-simulator,&lt;br /&gt;  written in Fortran-5 for the Univac 1108 system using punch-cards!)&lt;br /&gt;  for the Ford Foundation and the DOT while at JPL in 1973)) )&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1816654185723805585-3459853023691878532?l=bridewin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bridewin.blogspot.com/feeds/3459853023691878532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1816654185723805585&amp;postID=3459853023691878532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3459853023691878532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1816654185723805585/posts/default/3459853023691878532'/><link rel='alternate' type='text/html' href='http://bridewin.blogspot.com/2008/01/hackers-mindsetaccording-to-me.html' title='Hacker&apos;s Mindset.......according to me.....!!'/><author><name>Bridewin</name><uri>http://www.blogger.com/profile/11787710642189906631</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
