<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Information Technology Enthusiast </title>
	<atom:link href="http://infolookup.securegossip.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://infolookup.securegossip.com</link>
	<description>Just another SecureGossip - United Security Blog Portal weblog</description>
	<lastBuildDate>Thu, 17 May 2012 20:09:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Port forwarding with Fortigate 100A by Sherwyn</title>
		<link>http://infolookup.securegossip.com/2010/10/01/port-forwarding-with-fortigate-100a/comment-page-1/#comment-38071</link>
		<dc:creator>Sherwyn</dc:creator>
		<pubDate>Thu, 17 May 2012 20:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=363#comment-38071</guid>
		<description>Hi Derek,

Thank you very much for your information. I was unable to test this on our device since its in a remote location but I am happy to know someone else was able to shed some light on this.

Cheers,
Sherwyn
@infolookup</description>
		<content:encoded><![CDATA[<p>Hi Derek,</p>
<p>Thank you very much for your information. I was unable to test this on our device since its in a remote location but I am happy to know someone else was able to shed some light on this.</p>
<p>Cheers,<br />
Sherwyn<br />
@infolookup</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Port forwarding with Fortigate 100A by Derek</title>
		<link>http://infolookup.securegossip.com/2010/10/01/port-forwarding-with-fortigate-100a/comment-page-1/#comment-38043</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Wed, 16 May 2012 21:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=363#comment-38043</guid>
		<description>Hi there,

I just went through this myself, and discovered that you really can&#039;t create a VIP with two nonconsecutive ports.

If you need say port 110 and port 25 to be forwarded, you will need to create two VIP&#039;s.

FG60C (vip) # edit Test-VIP-SMTP
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP
 FG60C (Test-VIP) # set extport 25 =&gt; setting up external port
 FG60C (Test-VIP) # set mappedport 25 =&gt; mapping to internal destination port

FG60C (vip) # edit Test-VIP-POP3
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP
 FG60C (Test-VIP) # set extport 110 =&gt; setting up external port
 FG60C (Test-VIP) # set mappedport 110 =&gt; mapping to internal destination port

Note, you then have two VIP&#039;s , and you create two firewall rules, one for each.
Set up the firewall with the proper service, and that traffic will flow.  If you set 
up a firewall with &quot;ANY&quot; as the service, then you will only catch the first one, which won&#039;t work for POP3.

If you want to set up a range, the extip can only be set with an integer (a single port)
Set it to the first port, then set up the range in &quot;mappedport&quot;

It was asked, how do you forward 10000 to 20000:

FG60C (vip) # edit Test-VIP-RANGESERVER
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP
 FG60C (Test-VIP) # set extport 10000 =&gt; setting up external port
 FG60C (Test-VIP) # set mappedport 10000-20000 =&gt; mapping to internal destination port

Note2: I have a FG60C, and I&#039;m just figuring this out on the fly, so please don&#039;t take my word for it.

http://docs.fortinet.com/fgt/handbook/cli_html/wwhelp/wwhimpl/js/html/wwhelp.htm</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I just went through this myself, and discovered that you really can&#8217;t create a VIP with two nonconsecutive ports.</p>
<p>If you need say port 110 and port 25 to be forwarded, you will need to create two VIP&#8217;s.</p>
<p>FG60C (vip) # edit Test-VIP-SMTP<br />
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP<br />
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface<br />
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding<br />
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP<br />
 FG60C (Test-VIP) # set extport 25 =&gt; setting up external port<br />
 FG60C (Test-VIP) # set mappedport 25 =&gt; mapping to internal destination port</p>
<p>FG60C (vip) # edit Test-VIP-POP3<br />
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP<br />
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface<br />
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding<br />
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP<br />
 FG60C (Test-VIP) # set extport 110 =&gt; setting up external port<br />
 FG60C (Test-VIP) # set mappedport 110 =&gt; mapping to internal destination port</p>
<p>Note, you then have two VIP&#8217;s , and you create two firewall rules, one for each.<br />
Set up the firewall with the proper service, and that traffic will flow.  If you set<br />
up a firewall with &#8220;ANY&#8221; as the service, then you will only catch the first one, which won&#8217;t work for POP3.</p>
<p>If you want to set up a range, the extip can only be set with an integer (a single port)<br />
Set it to the first port, then set up the range in &#8220;mappedport&#8221;</p>
<p>It was asked, how do you forward 10000 to 20000:</p>
<p>FG60C (vip) # edit Test-VIP-RANGESERVER<br />
 FG60C (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP<br />
 FG60C (Test-VIP) # set extintf wan2 =&gt; binding to an external interface<br />
 FG60C (Test-VIP) # set portforward enable =&gt; enable port forwarding<br />
 FG60C (Test-VIP) # set mappedip 172.29.19.10 =&gt; mapping to an internal IP<br />
 FG60C (Test-VIP) # set extport 10000 =&gt; setting up external port<br />
 FG60C (Test-VIP) # set mappedport 10000-20000 =&gt; mapping to internal destination port</p>
<p>Note2: I have a FG60C, and I&#8217;m just figuring this out on the fly, so please don&#8217;t take my word for it.</p>
<p><a href="http://docs.fortinet.com/fgt/handbook/cli_html/wwhelp/wwhimpl/js/html/wwhelp.htm" rel="nofollow">http://docs.fortinet.com/fgt/handbook/cli_html/wwhelp/wwhimpl/js/html/wwhelp.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handcent SMS logs all your sent messages by Sherwyn</title>
		<link>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/comment-page-1/#comment-38037</link>
		<dc:creator>Sherwyn</dc:creator>
		<pubDate>Wed, 16 May 2012 19:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=663#comment-38037</guid>
		<description>Hi Goi,

Thank you for your comment.

Is my phone rooted? Yes

My concern would have still exist even if my phone is not root, I have a concern about my privacy, if I delete something I want it to be deleted. 

If I lost my phone and something found it, I dont want them finding all my private sms, or have some company logging and possibly accessing my sms.</description>
		<content:encoded><![CDATA[<p>Hi Goi,</p>
<p>Thank you for your comment.</p>
<p>Is my phone rooted? Yes</p>
<p>My concern would have still exist even if my phone is not root, I have a concern about my privacy, if I delete something I want it to be deleted. </p>
<p>If I lost my phone and something found it, I dont want them finding all my private sms, or have some company logging and possibly accessing my sms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handcent SMS logs all your sent messages by Goi</title>
		<link>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/comment-page-1/#comment-38014</link>
		<dc:creator>Goi</dc:creator>
		<pubDate>Wed, 16 May 2012 06:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=663#comment-38014</guid>
		<description>Is your phone rooted? If not, the sqlite database, which is stored in handcent&#039;s /data folder, should be accessible only to handcent isn&#039;t it? Also, does deleting the database solve the problem?</description>
		<content:encoded><![CDATA[<p>Is your phone rooted? If not, the sqlite database, which is stored in handcent&#8217;s /data folder, should be accessible only to handcent isn&#8217;t it? Also, does deleting the database solve the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handcent SMS logs all your sent messages by Attack of the Androids - AotA 15: It Won’t Connect</title>
		<link>http://infolookup.securegossip.com/2011/12/18/handcent-sms-logs-all-your-send-messages/comment-page-1/#comment-37725</link>
		<dc:creator>Attack of the Androids - AotA 15: It Won’t Connect</dc:creator>
		<pubDate>Thu, 03 May 2012 06:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=663#comment-37725</guid>
		<description>[...] some interesting findings about one of the most popular Android messaging apps, Handcent. Hopefully we can have the author on the show next week to answer some of the questions we tossed back and forth. If I delete [...]</description>
		<content:encoded><![CDATA[<p>[...] some interesting findings about one of the most popular Android messaging apps, Handcent. Hopefully we can have the author on the show next week to answer some of the questions we tossed back and forth. If I delete [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Port forwarding with Fortigate 100A by Sherwyn</title>
		<link>http://infolookup.securegossip.com/2010/10/01/port-forwarding-with-fortigate-100a/comment-page-1/#comment-37504</link>
		<dc:creator>Sherwyn</dc:creator>
		<pubDate>Wed, 25 Apr 2012 15:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=363#comment-37504</guid>
		<description>Hi p_buddhika,

Thank you for visiting my blog, as it relates to your question have you tried what I have suggested in the post?
I am only forwarding one IP there but you can easily add more than one. The question I have is are you forwarding both ports to the same internal IP? if so just do:

FG100A (vip) # edit Test-VIP
    FG100A (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP
    FG100A (Test-VIP) # set extintf wan2 =&gt; binding to an external interface
    FG100A (Test-VIP) # set portforward enable =&gt; enable port forwarding
    FG100A (Test-VIP) #  set mappedip 172.29.19.10 =&gt; mapping to an internal IP
    FG100A (Test-VIP) # set extport 25 =&gt; setting up external port
                        set extport 225 =&gt; setting up external port
    FG100A (Test-VIP) # set mappedport 25 =&gt; mapping to internal destination port
   FG100A (Test-VIP) # set mappedport 225 =&gt; mapping to internal destination port

That should work.</description>
		<content:encoded><![CDATA[<p>Hi p_buddhika,</p>
<p>Thank you for visiting my blog, as it relates to your question have you tried what I have suggested in the post?<br />
I am only forwarding one IP there but you can easily add more than one. The question I have is are you forwarding both ports to the same internal IP? if so just do:</p>
<p>FG100A (vip) # edit Test-VIP<br />
    FG100A (Test-VIP) # set extip 192.168.10.10 =&gt; setting up the external IP<br />
    FG100A (Test-VIP) # set extintf wan2 =&gt; binding to an external interface<br />
    FG100A (Test-VIP) # set portforward enable =&gt; enable port forwarding<br />
    FG100A (Test-VIP) #  set mappedip 172.29.19.10 =&gt; mapping to an internal IP<br />
    FG100A (Test-VIP) # set extport 25 =&gt; setting up external port<br />
                        set extport 225 =&gt; setting up external port<br />
    FG100A (Test-VIP) # set mappedport 25 =&gt; mapping to internal destination port<br />
   FG100A (Test-VIP) # set mappedport 225 =&gt; mapping to internal destination port</p>
<p>That should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block users from creating global distribution list in Exchange 2010 by Sherwyn</title>
		<link>http://infolookup.securegossip.com/2011/10/13/block-users-from-creating-global-distribution-list-in-exchange-2010/comment-page-1/#comment-37503</link>
		<dc:creator>Sherwyn</dc:creator>
		<pubDate>Wed, 25 Apr 2012 15:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=640#comment-37503</guid>
		<description>Hi Rob,

Thank you for visiting my blog, it looks like this behavior did carry over pass the RTM cause we didn&#039;t install the RTM we installed the final release.</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Thank you for visiting my blog, it looks like this behavior did carry over pass the RTM cause we didn&#8217;t install the RTM we installed the final release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block users from creating global distribution list in Exchange 2010 by Rob</title>
		<link>http://infolookup.securegossip.com/2011/10/13/block-users-from-creating-global-distribution-list-in-exchange-2010/comment-page-1/#comment-37500</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 25 Apr 2012 15:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=640#comment-37500</guid>
		<description>It looks like this was the default behavior in the Beta but was changed in the RTM.  This shouldn&#039;t be an issue for most default installations:
http://blogs.technet.com/b/exchange/archive/2009/11/18/3408844.aspx</description>
		<content:encoded><![CDATA[<p>It looks like this was the default behavior in the Beta but was changed in the RTM.  This shouldn&#8217;t be an issue for most default installations:<br />
<a href="http://blogs.technet.com/b/exchange/archive/2009/11/18/3408844.aspx" rel="nofollow">http://blogs.technet.com/b/exchange/archive/2009/11/18/3408844.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Port forwarding with Fortigate 100A by Prasanna</title>
		<link>http://infolookup.securegossip.com/2010/10/01/port-forwarding-with-fortigate-100a/comment-page-1/#comment-37447</link>
		<dc:creator>Prasanna</dc:creator>
		<pubDate>Tue, 24 Apr 2012 11:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=363#comment-37447</guid>
		<description>How do you setup 2 ports (25 and 225) to be forwarded?</description>
		<content:encoded><![CDATA[<p>How do you setup 2 ports (25 and 225) to be forwarded?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bypassing UAC with User Privilege under Windows Vista/7 **Mirrored** by Sherwyn</title>
		<link>http://infolookup.securegossip.com/2010/11/25/bypassing-uac-with-user-privilege-under-windows-vista7-mirrored/comment-page-1/#comment-37271</link>
		<dc:creator>Sherwyn</dc:creator>
		<pubDate>Wed, 18 Apr 2012 21:08:23 +0000</pubDate>
		<guid isPermaLink="false">http://infolookup.securegossip.com/?p=439#comment-37271</guid>
		<description>Hey,
Sorry for the delayed response I was a bit busy. Now if ICT is your support admins then you should to the boss and have them do their jobs. If you want you can Google &quot;bios master password &quot;Machine model&quot;. You can also try to exploit the machine, do a few scans with Nessus or OpenVas and see what vulnerable services its running and exploit it as you see it :).</description>
		<content:encoded><![CDATA[<p>Hey,<br />
Sorry for the delayed response I was a bit busy. Now if ICT is your support admins then you should to the boss and have them do their jobs. If you want you can Google &#8220;bios master password &#8220;Machine model&#8221;. You can also try to exploit the machine, do a few scans with Nessus or OpenVas and see what vulnerable services its running and exploit it as you see it <img src='http://infolookup.securegossip.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

