<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hacking-Gurus &#187; DOS</title>
	<atom:link href="http://www.hacking-gurus.net/tag/dos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hacking-gurus.net</link>
	<description>Security Blog</description>
	<lastBuildDate>Thu, 19 Jan 2012 21:06:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using Cookies For Selective DoS and State Detection</title>
		<link>http://www.hacking-gurus.net/2010/08/22/using-cookies-for-selective-dos-and-state-detection/</link>
		<comments>http://www.hacking-gurus.net/2010/08/22/using-cookies-for-selective-dos-and-state-detection/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 18:30:47 +0000</pubDate>
		<dc:creator>r00t</dc:creator>
				<category><![CDATA[Website Security]]></category>
		<category><![CDATA[Attacker]]></category>
		<category><![CDATA[Continuation]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Logs]]></category>
		<category><![CDATA[Onerror Event]]></category>
		<category><![CDATA[Security Lab]]></category>
		<category><![CDATA[Variable Width]]></category>
		<category><![CDATA[Web Application Security]]></category>

		<guid isPermaLink="false">http://www.hacking-gurus.net/?p=237</guid>
		<description><![CDATA[Using Cookies For Selective DoS and State Detection: &#8220; 28 posts left…. This is a continuation of he first post where we described how you can use cookies to DoS certain portions of the website. After our speech one of the Mozilla guys came up to us and described another attack that arises from this. [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.hacking-gurus.net/2010/08/22/using-cookies-for-selective-dos-and-state-detection/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Using+Cookies+For+Selective+DoS+and+State+Detection";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "Using Cookies For Selective DoS and State Detection: &#8220;28 posts left….This is a continuation of he first post where we described how you can use cookies to DoS certain portions of the website.  After our speech one of the Mozilla guys came up to us and described another attack that arises from this.  Let’s say when a user logs in it sets a...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Using Cookies For Selective DoS and State Detection: &#8220;
<p>28 posts left….</p>
<p>This is a continuation of he first post where we described how you can use cookies to DoS certain portions of the website.  After our speech one of the Mozilla guys came up to us and described another attack that arises from this.  Let’s say when a user logs in it sets a cookie that is 200 bytes long, and when they log out it re-sets the same cookie to 50 bytes.  Well if the attacker can set a cookie with a particular path to a single image on the site, for instance, they can use JavaScript to check with an onerror event handler to see if the image has loaded.</p>
<p><span id="more-237"></span></p>
<p>By combining the over-long cookie (minus 50 bytes) a logged in state will cause the image to fail to load, where as a logged out state will allow the image to load just fine.  In this way an attacker can tell cookie states as long as the cookies are variable width and there aren’t other cookies muddying the waters.  Interesting attack, I thought!</p>
<p>&#8220;</p>
<p>(Via <a href="http://ha.ckers.org/blog">ha.ckers.org web application security lab</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacking-gurus.net/2010/08/22/using-cookies-for-selective-dos-and-state-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Reasons Websites get hacked</title>
		<link>http://www.hacking-gurus.net/2009/04/15/10-reasons-websites-get-hacked/</link>
		<comments>http://www.hacking-gurus.net/2009/04/15/10-reasons-websites-get-hacked/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 18:42:35 +0000</pubDate>
		<dc:creator>r00t</dc:creator>
				<category><![CDATA[Database Security]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorialz]]></category>
		<category><![CDATA[Website Security]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sql injection]]></category>

		<guid isPermaLink="false">http://www.hacking-gurus.net/?p=82</guid>
		<description><![CDATA[1. Cross site scripting (XSS) The problem: The “most prevalent and pernicious” Web application security vulnerability, XSS flaws happen when an application sends user data to a Web browser without first validating or encoding the content. This lets hackers execute malicious scripts in a browser, letting them hijack user sessions, deface Web sites, insert hostile [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.hacking-gurus.net/2009/04/15/10-reasons-websites-get-hacked/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "new";
		digg_title = "10+Reasons+Websites+get+hacked";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "1. Cross site scripting (XSS)The problem: The “most prevalent and pernicious” Web application security vulnerability, XSS flaws happen when an application sends user data to a Web browser without first validating or encoding the content. This lets hackers execute malicious scripts in a browser, letting them hijack user sessions, deface Web sites,...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p><strong>1. Cross site scripting (XSS)</strong></p>
<p>The problem: The “most prevalent and pernicious” Web application security vulnerability, XSS flaws happen when an application sends user data to a Web browser without first validating or encoding the content. This lets hackers execute malicious scripts in a browser, letting them hijack user sessions, deface Web sites, insert hostile content and conduct phishing and malware attacks.</p>
<p><span id="more-82"></span></p>
<p>Attacks are usually executed with JavaScript, letting hackers manipulate any aspect of a page. In a worst-case scenario, a hacker could steal information and impersonate a user on a bank’s Web site, according to Snyder.</p>
<p>Real-world example: PayPal was targeted last year when attackers redirected PayPal visitors to a page warning users their accounts had been compromised. Victims were redirected to a phishing site and prompted to enter PayPal login information, Social Security numbers and credit card details. PayPal said it closed the vulnerability in June 2006.</p>
<p>How to protect users: Use a whitelist to validate all incoming data, which rejects any data that’s not specified on the whitelist as being good. This approach is the opposite of blacklisting, which rejects only inputs known to be bad. Additionally, use appropriate encoding of all output data. “Validation allows the detection of attacks, and encoding prevents any successful script injection from running in the browser,” OWASP says.</p>
<p><strong><br />
2. Injection flaws</strong></p>
<p>The problem: When user-supplied data is sent to interpreters as part of a command or query, hackers trick the interpreter — which interprets text-based commands — into executing unintended commands. “Injection flaws allow attackers to create, read, update, or delete any arbitrary data available to the application,” OWASP writes. “In the worst-case scenario, these flaws allow an attacker to completely compromise the application and the underlying systems, even bypassing deeply nested firewalled environments.”</p>
<p>Real-world example: Russian hackers broke into a Rhode Island government Web site to steal credit card data in January 2006. Hackers claimed the SQL injection attack stole 53,000 credit card numbers, while the hosting service provider claims it was only 4,113.</p>
<p>How to protect users: Avoid using interpreters if possible. “If you must invoke an interpreter, the key method to avoid injections is the use of safe APIs, such as strongly typed parameterized queries and object relational mapping libraries,” OWASP writes.</p>
<p><strong>3. Malicious file execution</strong></p>
<p>The problem: Hackers can perform remote code execution, remote installation of rootkits, or completely compromise a system. Any type of Web application is vulnerable if it accepts filenames or files from users. The vulnerability may be most common with PHP, a widely used scripting language for Web development.</p>
<p>Real-world example: A teenage programmer discovered in 2002 that Guess.com was vulnerable to attacks that could steal more than 200,000 customer records from the Guess database, including names, credit card numbers and expiration dates. Guess agreed to upgrade its information security the next year after being investigated by the Federal Trade Commission.</p>
<p>How to protect users: Don’t use input supplied by users in any filename for server-based resources, such as images and script inclusions. Set firewall rules to prevent new connections to external Web sites and internal systems.</p>
<p><strong>4. Insecure direct object reference</strong></p>
<p>The problem: Attackers manipulate direct object references to gain unauthorized access to other objects. It happens when URLs or form parameters contain references to objects such as files, directories, database records or keys.</p>
<p>Banking Web sites commonly use a customer account number as the primary key, and may expose account numbers in the Web interface.</p>
<p>“References to database keys are frequently exposed,” OWASP writes. “An attacker can attack these parameters simply by guessing or searching for another valid key. Often, these are sequential in nature.”</p>
<p>Real-world example: An Australian Taxation Office site was hacked in 2000 by a user who changed a tax ID present in a URL to access details on 17,000 companies. The hacker e-mailed the 17,000 businesses to notify them of the security breach.</p>
<p>How to protect users: Use an index, indirect reference map or another indirect method to avoid exposure of direct object references. If you can’t avoid direct references, authorize Web site visitors before using them</p>
<p><strong><br />
5. Cross site request forgery</strong></p>
<p>The problem: “Simple and devastating,” this attack takes control of victim’s browser when it is logged onto a Web site, and sends malicious requests to the Web application. Web sites are extremely vulnerable, partly because they tend to authorize requests based on session cookies or “remember me” functionality. Banks are potential targets.</p>
<p>“Ninety-nine percent of the applications on the Internet are susceptible to cross site request forgery,” Williams says. “Has there been an actual exploit where someone’s lost money? Probably the banks don’t even know. To the bank, all it looks like is a legitimate transaction from a logged-in user.”</p>
<p>Real-world example: A hacker known as Samy gained more than a million “friends” on MySpace.com with a worm in late 2005, automatically including the message “Samy is my hero” in thousands of MySpace pages. The attack itself may not have been that harmful, but it was said to demonstrate the power of combining cross site scripting with cross site request forgery. Another example that came to light one year ago exposed a Google vulnerability allowing outside sites to change a Google user’s language preferences.</p>
<p>How to protect users: Don’t rely on credentials or tokens automatically submitted by browsers. “The only solution is to use a custom token that the browser will not ‘remember,’” OWASP writes. 		<!-- / message --></p>
<p><strong>6. Information leakage and improper error handling</strong></p>
<p>The problem: Error messages that applications generate and display to users are useful to hackers when they violate privacy or unintentionally leak information about the program’s configuration and internal workings.</p>
<p>“Web applications will often leak information about their internal state through detailed or debug error messages. Often, this information can be leveraged to launch or even automate more powerful attacks,” OWASP says.</p>
<p>Real-world example: Information leakage goes well beyond error handling, applying also to breaches occurring when confidential data is left in plain sight. The ChoicePoint debacle in early 2005 thus falls somewhere in this category. The records of 163,000 consumers were compromised after criminals pretending to be legitimate ChoicePoint customers sought details about individuals listed in the company’s database of personal information. ChoicePoint subsequently limited its sales of information products containing sensitive data.</p>
<p>How to protect users: Use a testing tool such as OWASP’S WebScarab Project to see what errors your application generates. “Applications that have not been tested in this way will almost certainly generate unexpected error output,” OWASP writes.</p>
<p><strong><br />
7. Broken authentication and session management</strong></p>
<p>The problem: User and administrative accounts can be hijacked when applications fail to protect credentials and session tokens from beginning to end. Watch out for privacy violations and the undermining of authorization and accountability controls.</p>
<p>“Flaws in the main authentication mechanism are not uncommon, but weaknesses are more often introduced through ancillary authentication functions such as logout, password management, timeout, remember me, secret question and account update,” OWASP writes.</p>
<p>Real-world example: Microsoft had to eliminate a vulnerability in Hotmail that could have let malicious JavaScript programmers steal user passwords in 2002. Revealed by a networking products reseller, the flaw was vulnerable to e-mails containing Trojans that altered the Hotmail user interface, forcing users to repeatedly reenter their passwords and unwittingly send them to hackers.</p>
<p>How to protect users: Communication and credential storage has to be secure. The SSL protocol for transmitting private documents should be the only option for authenticated parts of the application, and credentials should be stored in hashed or encrypted form.</p>
<p>Another tip: get rid of custom cookies used for authentication or session management.</p>
<p><strong>8. Insecure cryptographic storage</strong></p>
<p>The problem: Many Web developers fail to encrypt sensitive data in storage, even though cryptography is a key part of most Web applications. Even when encryption is present, it’s often poorly designed, using inappropriate ciphers.</p>
<p>“These flaws can lead to disclosure of sensitive data and compliance violations,” OWASP writes.</p>
<p>Real-world example: The TJX data breach that exposed 45.7 million credit and debit card numbers. A Canadian government investigation faulted TJX for failing to upgrade its data encryption system before it was targeted by electronic eavesdropping starting in July 2005.<br />
How to protect users: Don’t invent your own cryptographic algorithms. “Only use approved public algorithms such as AES, RSA public key cryptography, and SHA-256 or better for hashing,” OWASP advises.</p>
<p>Furthermore, generate keys offline, and never transmit private keys over insecure channels.</p>
<p><strong><br />
9. Insecure communications</strong></p>
<p>The problem: Similar to No. 8, this is a failure to encrypt network traffic when it’s necessary to protect sensitive communications. Attackers can access unprotected conversations, including transmissions of credentials and sensitive information. For this reason, PCI standards require encryption of credit card information transmitted over the Internet.</p>
<p>Real-world example: TJX again. Investigators believe hackers used a telescope-shaped antenna and laptop computer to steal data exchanged wirelessly between portable price-checking devices, cash registers and store computers, the Wall Street Journal reported.</p>
<p>“The $17.4-billion retailer&#8217;s wireless network had less security than many people have on their home networks,” the Journal wrote. TJX was using the WEP encoding system, rather than the more robust WPA.</p>
<p>How to protect users: Use SSL on any authenticated connection or during the transmission of sensitive data, such as user credentials, credit card details, health records and other private information. SSL or a similar encryption protocol should also be applied to client, partner, staff and administrative access to online systems. Use transport layer security or protocol level encryption to protect communications between parts of your infrastructure, such as Web servers and database systems.</p>
<p><strong><br />
10. Failure to restrict URL access</strong></p>
<p>The problem: Some Web pages are supposed to be restricted to a small subset of privileged users, such as administrators. Yet often there’s no real protection of these pages, and hackers can find the URLs by making educated guesses. Say a URL refers to an ID number such as “123456.” A hacker might say ‘I wonder what’s in 123457?’ Williams says.</p>
<p>The attacks targeting this vulnerability are called forced browsing, “which encompasses guessing links and brute force techniques to find unprotected pages,” OWASP says.</p>
<p>Real-world example: A hole on the Macworld Conference &amp; Expo Web site this year let users get “Platinum” passes worth nearly $1,700 and special access to a Steve Jobs keynote speech, all for free. The flaw was code that evaluated privileges on the client but not on the server, letting people grab free passes via JavaScript on the browser, rather than the server.</p>
<p>How to protect users: Don’t assume users will be unaware of hidden URLs. All URLs and business functions should be protected by an effective access control mechanism that verifies the user’s role and privileges. “Make sure this is done … every step of the way, not just once towards the beginning of any multi-step process,’ OWASP advises.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacking-gurus.net/2009/04/15/10-reasons-websites-get-hacked/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>99 DOS Commands</title>
		<link>http://www.hacking-gurus.net/2009/03/11/99-dos-commands/</link>
		<comments>http://www.hacking-gurus.net/2009/03/11/99-dos-commands/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 08:48:57 +0000</pubDate>
		<dc:creator>r00t</dc:creator>
				<category><![CDATA[Tutorialz]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[port scanner]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.hacking-gurus.net/?p=46</guid>
		<description><![CDATA[Quick Help on Windows Dos Commands . Accessibility Controls = access.cpl Add Hardware Wizard = hdwwiz.cpl Add/Remove Programs = appwiz.cpl Administrative Tools = control admintools Automatic Updates = wuaucpl.cpl Bluetooth Transfer Wizard = fsquirt Calculator = calc Certificate Manager = certmgr.msc Character Map = charmap Check Disk Utility = chkdsk Clipboard Viewer = clipbrd Command [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.hacking-gurus.net/2009/03/11/99-dos-commands/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "new";
		digg_title = "99+DOS+Commands";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "Quick Help on Windows Dos Commands .Accessibility Controls = access.cplAdd Hardware Wizard = hdwwiz.cplAdd/Remove Programs = appwiz.cplAdministrative Tools = control admintoolsAutomatic Updates = wuaucpl.cplBluetooth Transfer Wizard = fsquirtCalculator = calcCertificate Manager = certmgr.mscCharacter Map = charmapCheck Disk Utility = chkdskClipboard...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Quick Help on Windows Dos Commands .</p>
<p>Accessibility Controls = access.cpl<br />
Add Hardware Wizard = hdwwiz.cpl<br />
Add/Remove Programs = appwiz.cpl<br />
Administrative Tools = control admintools<br />
Automatic Updates = wuaucpl.cpl<br />
Bluetooth Transfer Wizard = fsquirt<br />
Calculator = calc<br />
Certificate Manager = certmgr.msc<br />
Character Map = charmap<br />
Check Disk Utility = chkdsk<br />
Clipboard Viewer = clipbrd<br />
Command Prompt = cmd<br />
Component Services = dcomcnfg<br />
Computer Management = compmgmt.msc<br />
Date and Time Properties = timedate.cpl<br />
DDE Shares = ddeshare<br />
Device Manager = devmgmt.msc<br />
Direct X Control Panel (If Installed)* = directx.cpl<br />
Direct X Troubleshooter = dxdiag<br />
Disk Cleanup Utility = cleanmgr<br />
Disk Defragment = dfrg.msc<br />
Disk Management = diskmgmt.msc<br />
Disk Partition Manager = diskpart<br />
Display Properties = control desktop/desk.cpl<br />
Dr. Watson System Troubleshooting Utility = drwtsn32<br />
Driver Verifier Utility = verifier<br />
Event Viewer = eventvwr.msc<br />
File Signature Verification Tool = sigverif<br />
Findfast = findfast.cpl<br />
Folders Properties = control folders<br />
Fonts = control fonts<br />
Fonts Folder = fonts<br />
Free Cell Card Game = freecell<br />
Game Controllers = joy.cpl<br />
Group Policy Editor (XP Prof) = gpedit.msc<br />
Hearts Card Game = mshearts<br />
Iexpress Wizard = iexpress<br />
Indexing Service = ciadv.msc<br />
Internet Properties = inetcpl.cpl<br />
IP Configuration = ipconfig<br />
Java Control Panel (If Installed) = jpicpl32.cpl<br />
Java Application Cache Viewer (If Installed) = javaws<br />
Keyboard Properties = control keyboard<br />
Local Security Settings = secpol.msc<br />
Local Users and Groups = lusrmgr.msc<br />
Logs You Out Of Windows = logoff<br />
Microsoft Chat = winchat<br />
Minesweeper Game = winmine<br />
Mouse Properties = control mouse<br />
Mouse Properties = main.cpl<br />
Network Connections = control netconnections<br />
Network Connections = ncpa.cpl<br />
Network Setup Wizard = netsetup.cpl<br />
Notepad = notepad<br />
Nview Desktop Manager (If Installed) = nvtuicpl.cpl<br />
Object Packager = packager<br />
ODBC Data Source Administrator = odbccp32.cpl<br />
On Screen Keyboard = osk<br />
Opens AC3 Filter (If Installed) = ac3filter.cpl<br />
Password Properties = password.cpl<br />
Performance Monitor = perfmon.msc<br />
Performance Monitor = perfmon<br />
Phone and Modem Options = telephon.cpl<br />
Power Configuration = powercfg.cpl<br />
Printers and Faxes = control printers<br />
Printers Folder = printers<br />
Private Character Editor = eudcedit<br />
Quicktime (If Installed) = QuickTime.cpl<br />
Regional Settings = intl.cpl<br />
Registry Editor = regedit<br />
Registry Editor = regedit32<br />
Remote Desktop = mstsc<br />
Removable Storage = ntmsmgr.msc<br />
Removable Storage Operator Requests = ntmsoprq.msc<br />
Resultant Set of Policy (XP Prof) = rsop.msc<br />
Scanners and Cameras = sticpl.cpl<br />
Scheduled Tasks = control schedtasks<br />
Security Center = wscui.cpl<br />
Services = services.msc<br />
Shared Folders = fsmgmt.msc<br />
Shuts Down Windows = shutdown<br />
Sounds and Audio = mmsys.cpl<br />
Spider Solitare Card Game = spider<br />
SQL Client Configuration = cliconfg<br />
System Configuration Editor = sysedit<br />
System Configuration Utility = msconfig<br />
System File Checker Utility = sfc<br />
System Properties = sysdm.cpl<br />
Task Manager = taskmgr<br />
Telnet Client = telnet<br />
User Account Management = nusrmgr.cpl<br />
Utility Manager = utilman<br />
Windows Firewall = firewall.cpl<br />
Windows Magnifier = magnify<br />
Windows Management Infrastructure = wmimgmt.msc<br />
Windows System Security Tool = syskey<br />
Windows Update Launches = wupdmgr<br />
Windows XP Tour Wizard = tourstart<br />
Wordpad = write</p>
<p><span id="more-46"></span></p>
<p>Hope someone finds it somewhat usefull!?!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacking-gurus.net/2009/03/11/99-dos-commands/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Net Tools</title>
		<link>http://www.hacking-gurus.net/2009/03/08/net-tools/</link>
		<comments>http://www.hacking-gurus.net/2009/03/08/net-tools/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 13:50:09 +0000</pubDate>
		<dc:creator>r00t</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Network Tools]]></category>
		<category><![CDATA[Wireless Security]]></category>
		<category><![CDATA[Anonymous]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[email bomber]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[flooder]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[net meter]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[port scanner]]></category>
		<category><![CDATA[sniffer]]></category>
		<category><![CDATA[SNMP]]></category>
		<category><![CDATA[spoofer]]></category>
		<category><![CDATA[tracert]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[trojan hunter]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://www.hacking-gurus.net/?p=25</guid>
		<description><![CDATA[What is Net Tools : Net Tools is a comprehensive set of host monitoring, network scanning, security, administration tools and much more, all with a highly intuitive user interface. It&#8217;s an ideal tool for those who work in the network security, administration, training, internet forensics or law enforcement internet crimes fields. Net Tools is mainly [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.hacking-gurus.net/2009/03/08/net-tools/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "new";
		digg_title = "Net+Tools";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "What is Net Tools :Net Tools is a comprehensive set of host monitoring, network scanning, security, administration tools and much more, all with a highly intuitive user interface. It&#8217;s an ideal tool for those who work in the network security, administration, training, internet forensics or law enforcement internet crimes fields. Net Tools is mainly...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p><strong>What is Net Tools :</strong></p>
<p>Net Tools is a comprehensive set of host monitoring, network scanning, security, administration tools and much more, all with a highly intuitive user interface. It&#8217;s an ideal tool for those who work in the network security, administration, training, internet forensics or law enforcement internet crimes fields. Net Tools is mainly written in Microsoft Visual Basic 6, Visual C++, Visual C# and Visual Studio .NET.</p>
<p><span id="more-25"></span></p>
<p><strong>Screenshots</strong></p>
<p>Here are a few screenshots of Net Tools 5.                                    Click to enlarge.</p>
<p><a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot1.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH1.jpg" border="0" alt="Screenshot #1 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot2.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH2.jpg" border="0" alt="Screenshot #2 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot3.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH3.jpg" border="0" alt="Screenshot #3 - click to enlarge" width="75" height="75" /></a></p>
<p><a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot4.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH4.jpg" border="0" alt="Screenshot #4 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot5.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH5.jpg" border="0" alt="Screenshot #5 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot6.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH6.jpg" border="0" alt="Screenshot #6 - click to enlarge" width="75" height="75" /></a></p>
<p><a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot7.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH7.jpg" border="0" alt="Screenshot #7 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot8.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH8.jpg" border="0" alt="Screenshot #8 - click to enlarge" width="75" height="75" /></a> <a rel="lightbox" href="http://users.telenet.be/ahmadi/ntscreenshot9.JPG" target="_blank"><img src="http://users.telenet.be/ahmadi/ntSH9.jpg" border="0" alt="Screenshot #9 - click to enlarge" width="75" height="75" /></a></p>
<p><strong>Download Net Tools 5.0</strong></p>
<p><strong>[ <a href="http://www.mabsoft.com/NetTools5.0.70.zip">download</a> ] </strong><span class="style3">(version 5.0.70)</span></p>
<p><strong>Features</strong>:</p>
<p>Net Tools 5.0 (build 70) contains a whole variety of network tools. Here is a list of the most important tools:</p>
<p style="margin-bottom: 0pt;">1) IP Address Scanner<br />
2) IP Calculator<br />
3) IP Converter<br />
4) Port Listener<br />
5) Port Scanner<br />
6) Ping<br />
7) NetStat (2 ways)<br />
8 ) Trace Route (2 ways)<br />
9) TCP/IP Configuration<br />
10) Online &#8211; Offline Checker<br />
11) Resolve Host &amp; IP<br />
12) Time Sync<br />
13) Whois &amp; MX Lookup<br />
14) Connect0r<br />
15) Connection Analysator and protector<br />
16) Net Sender<br />
17) E-mail seeker<br />
18) Net Pager<br />
19) Active and Passive port scanner<br />
20) Spoofer<br />
21) Hack Trapper<br />
22) HTTP flooder (DoS)<br />
23) Mass Website Visiter<br />
24) Advanced Port Scanner<br />
25) Trojan Hunter (Multi IP)<br />
26) Port Connecter Tool<br />
27) Advanced Spoofer<br />
28) Advanced Anonymous E-mailer<br />
29) Simple Anonymous E-mailer<br />
30) Anonymous E-mailer with Attachment Support<br />
31) Mass E-mailer<br />
32) E-mail Bomber<br />
33) E-mail Spoofer<br />
34) Simple Port Scanner (fast)<br />
35) Advanced Netstat Monitoring<br />
36) X Pinger<br />
37) Web Page Scanner<br />
38) Fast Port Scanner<br />
39) Deep Port Scanner<br />
40) Fastest Host Scanner (UDP)<br />
41) Get Header<br />
42) Open Port Scanner<br />
43) Multi Port Scanner<br />
44) HTTP scanner (Open port 80 subnet scanner)<br />
45) Multi Ping for Cisco Routers<br />
46) TCP Packet Sniffer<br />
47) UDP flooder<br />
48) Resolve and Ping<br />
49) Multi IP ping<br />
50) File Dependency Sniffer<br />
51) EXE-joiner (bind 2 files)<br />
52) Encrypter<br />
53) Advanced Encryption<br />
54) File Difference Engine<br />
55) File Comparasion<br />
56) Mass File Renamer<br />
57) Add Bytes to EXE<br />
58) Variable Encryption<br />
59) Simple File Encryption<br />
60) ASCII to Binary (and Binary to ASCII)<br />
61) Enigma<br />
62) Password Unmasker<br />
63) Credit Card Number Validate and Generate<br />
64) Create Local HTTP Server<br />
65) eXtreme UDP Flooder<br />
66) Web Server Scanner<br />
67) Force Reboot<br />
68) Webpage Info Seeker<br />
69) Bouncer<br />
70) Advanced Packet Sniffer<br />
71) IRC server creater<br />
72) Connection Tester<br />
73) Fake Mail Sender<br />
74) Bandwidth Monitor<br />
75) Remote Desktop Protocol Scanner<br />
76) MX Query<br />
77) Messenger Packet Sniffer<br />
78) API Spy<br />
79) DHCP Restart<br />
80) File Merger<br />
81) E-mail Extractor (crawler / harvester bot)<br />
82) Open FTP Scanner<br />
83) Advanced System Locker<br />
84) Advanced System Information<br />
85) CPU Monitor<br />
86) Windows Startup Manager<br />
87) Process Checker<br />
88) IP String Collecter<br />
89) Mass Auto-Emailer (Database mailer; Spammer)<br />
90) Central Server (Base Server; Echo Server; Time Server; Telnet Server; HTTP Server; FTP Server)<br />
91) Fishing Port Scanner (with named ports)<br />
92) Mouse Record / Play Automation (Macro Tool)<br />
93) Internet / LAN Messenger Chat (Server + Client)<br />
94) Timer Shutdown/Restart/Log Off/Hibernate/Suspend/ Control<br />
95) Hash MD5 Checker<br />
96) Port Connect &#8211; Listen tool<br />
97) Internet MAC Address Scanner (Multiple IP)<br />
98) Connection Manager / Monitor<br />
99) Direct Peer Connecter (Send/Receive files + chat)<br />
100) Force Application Termination (against Viruses and Spyware)<br />
101) Easy and Fast Screenshot Maker (also Web Hex Color Picker)<br />
102) COM Detect and Test<br />
103) Create Virtual Drives<br />
104) URL Encoder<br />
105) WEP/WPA Key Generator<br />
106) Sniffer.NET<br />
107) File Shredder<br />
108) Local Access Enumerater<br />
109) Steganographer (Art of hiding secret data in pictures)<br />
110) Subnet Calculater<br />
111) Domain to IP (DNS)<br />
112) Get SNMP Variables<br />
113) Internet Explorer Password Revealer<br />
114) Advanced Multi Port Scanner<br />
115) Port Identification List (+port scanner)<br />
116) Get Quick Net Info<br />
117) Get Remote MAC Address<br />
118) Share Add<br />
119) Net Wanderer<br />
120) WhoIs Console<br />
121) Cookies Analyser<br />
122) Hide Secret Data In Files<br />
123) Packet Generator<br />
124) Secure File Splitting<br />
125) My File Protection (Password Protect Files, File Injections)<br />
126) Dynamic Switch Port Mapper<br />
127) Internet Logger (Log URL)<br />
128) Get Whois Servers<br />
129) File Split&amp;Merge<br />
130) Hide Drive<br />
131) Extract E-mails from Documents<br />
132) Net Tools Mini (Client/Server, Scan, ICMP, Net Statistics, Interactive, Raw Packets, DNS, Whois, ARP, Computer&#8217;s IP, Wake On LAN)<br />
133) Hook Spy<br />
134) Software Uninstaller<br />
135) Tweak &amp; Clean XP<br />
136) Steganographic Random Byte Encryption<br />
137) NetTools Notepad (encrypt your sensitive data)<br />
138) File Encrypter/Decrypter<br />
139) Quick Proxy Server<br />
140) Connection Redirector (HTTP, IRC, &#8230; All protocols supported)<br />
141) Local E-mail Extractor<br />
142) Recursive E-mail Extractor<br />
143) Outlook Express E-mail Extractor<br />
144) Telnet Client<br />
145) Fast Ip Catcher<br />
146) Monitor Host IP<br />
147) FreeMAC (MAC Address Editor)<br />
148) QuickFTP Server (+user accounts support)<br />
149) NetTools Macro Recorder/Player (Keybord and Mouse Hook)<br />
150) Network Protocol Analyzer<br />
151) Steganographic Tools (Picture, Sounds, ZIP Compression and Misc Methods)<br />
152) WebMirror (Website Ripper)<br />
153) GeoLocate IP<br />
154) Google PageRank Calculator<br />
155) Google Link Crawler (Web Result Grabber)<br />
156) Network Adapter Binder<br />
157) Remote LAN PC Lister<br />
158) Fast Sinusoidal Encryption<br />
159) Software Scanner<br />
160) Fast FTP Client<br />
161) Network Traffic Analysis<br />
162)                                    Network Traffic Visualiser<br />
163) Internet Protocol Scanner<br />
164) Net Meter (Bandwidth Traffic Meter)<br />
165) Net Configuration Switcher<br />
166) Advanced System Hardware Info<br />
167) Live System Information<br />
168) Network Profiler<br />
169) Network Browser<br />
170) Quick Website Maker and Web Gallery Creator<br />
171) Remote PC Shutdown<br />
172) Serial Port Terminal<br />
173) Standard Encryptor<br />
174) Tray Minimizer<br />
175) Extra Tools (nmap console &amp; win32 version)</p>
<p style="margin-top: 0pt;">Many extra features and utilities are included in this package!</p>
<p><strong>Download Net Tools 5.0</strong></p>
<p><strong>[ <a href="http://www.mabsoft.com/NetTools5.0.70.zip">download</a> ] </strong><span class="style3">(version 5.0.70)</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacking-gurus.net/2009/03/08/net-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

