Internet technologies. Lab: CGI. CGI programming in assembler?!? - Easily! URL Structure and Request Data Encoding

The article has been circulating on the Internet for quite some time, but, as the author, I think I have the right to repost it here. Much (if not all) of what is written here is outdated and may seem useless at first glance, but having gone this way, 6 years later, I can say that it was not superfluous. So.
In this article I want to talk about the CGI interface in general, its implementation for windows and the use of assembly language in writing CGI programs in particular. Not within the scope of this article Full description CGI, since there is simply a sea of ​​material on the Internet on this issue, and I simply don’t see the point in retelling all this here.

CGI theory
CGI - (Common Gateway Interface)– Common Gateway Interface. As you might guess, this interface serves as a gateway between the server (here I mean the server program) and some external program written for the OS on which this server is running. Thus, the CGI is responsible for exactly how the data will be transferred from the server program to the CGI program and vice versa. The interface does not impose any restrictions on what the CGI program should be written in, it can be either a regular executable file or any other file - the main thing is that the server can run it (in the windows environment, for example, it can be a file with the extension associated with any program).
From the moment you call (for example, press the button of the form to which the call to the CGI program is attached) the CGI program until you receive the result in the browser window, the following happens:
- A web client (for example, a browser) creates a connection to the server specified in the URL;
- The web client sends a request to the server, this request is usually made using two GET or POST methods;
- Data from a client request (eg form field values) is passed by the server using the CGI interface to the CGI program specified in the URL;
- The CGI program processes the client's data received from the server and, based on this processing, generates a response to the client, which it sends over the same CGI interface to the server, and the server, in turn, sends it directly to the client;
- The server terminates the connection with the client.
The standard CGI specification assumes that the server can communicate with the program in the following ways:
- Environment variables - they can be set by the server when starting the program;
- Standard input stream (STDIN) - with its help the server can transfer data to the program;
- Standard output stream (STDOUT) - the program can write its own output to it, which is transmitted to the server;
- Command line - the server can pass some parameters to the program in it.
Standard input/output streams are very convenient and widely used on UNIX systems, which cannot be said about windows, so there is a CGI specification developed specifically for windows systems called "Windows CGI". But, of course, standard input / output streams can also be used in windows CGI programming. Here I will not touch on the “Windows CGI” standard, and there are at least two reasons for this - the first, and most important - at the moment, not all http servers under windows support this specification (in particular, my favorite Apache 1.3.19) . You can observe the second reason by typing in any search engine line "Windows CGI". I will note only general details regarding this interface - all data from the server to the client is transmitted through the usual windows * .ini file, the name of which is passed to the program on the command line. At the same time, all the data in the file is already carefully divided into sections by the server, and you just have to use the “GetPrivateProfile*” functions to extract them from there. The response to the server is transmitted again by means of a file whose name is specified in the corresponding entry in the ini file.
What kind of data can be passed by a client to a CGI program? - almost any. In the general case, the program is passed the values ​​of the form fields that the client fills in, but it can also be any binary data, such as a file with a picture or music. Data can be sent to the server with two various methods is a GET method and a POST method. When we create a form to fill out on our page, we explicitly indicate which of the methods we want to send the data entered by the user, this is done in the main form tag like this:
When sending data using the GET method, the browser reads the data from the form and places it after the URL of the script, after the question mark, if there are several significant fields in the form, then they are all transmitted through the "&" sign, the field name and its value are written in the URL through the " =". For example, the request generated by the browser from the form when clicking on the button to which the script "/cgi-bin/test.exe" is attached, given that the first field of the form is called "your_name", the second - "your_age", may look like this:
GET /cgi-bin/test.exe?your_name=Pupkin&your_age=90 HTTP/1.0
Using the GET method has several weaknesses- the first and most important thing - because data is transmitted in the URL, then it has a limit on the amount of these transmitted data. The second weakness again follows from the URL - this is confidentiality, with such a transfer, the data remains absolutely open. So, it's good if we have 2-3 small fields in the form ... the question arises what to do if there is more data? The answer is to use the POST method!
When using the POST method, the data is transmitted to the server as a data block, and not in a URL, which somewhat frees our hands to increase the amount of information transmitted, for the above example of the POST form, the block sent to the server will be something like this:

POST /cgi-bin/test.exe HTTP/1.0
Accept: text/plain
Accept: text/html
Accept: */*
Content-type: application/x-www-form-urlencoded
content length: 36
your_name=Pupkin&your_age=90

As mentioned above, after receiving the data, the server must convert it and pass it to the CGI program. In the standard CGI specification, the data entered by the client in a GET request is placed by the server in the program's environment variable "QUERY_STRING". A POST request places data on the application's standard input stream, from where it can be read. In addition, with such a request, the server sets two more environment variables - CONTENT_LENGTH and CONTENT_TYPE, which can be used to judge the length of the request in bytes and its content.
In addition to the data itself, the server sets other environment variables of the called program, here are some of them:

REQUEST_METHOD
Describes how the data was obtained
Example: REQUEST_METHOD=GET

QUERY_STRING
Query string if the GET method was used
Example: QUERY_STRING= your_name=Pupkin&your_age=90&hobby=asm

CONTENT_LENGTH
Length in bytes of the request body
Example: CONTENT_LENGTH=31

CONTENT_TYPE
Request body type

GATEWAY_INTERFACE
CGI protocol version
Example:GATEWAY_INTERFACE=CGI/1.1

REMOTE_ADDR
The IP address of the remote host, that is, the client who pressed the button in the form
Example: REMOTE_ADDR=10.21.23.10

REMOTE_HOST
The name of the remote host, this can be its domain name or, for example, the computer name in Windows environment, if none can be obtained, then the field contains its IP
Example: REMOTE_HOST=wasm.ru

SCRIPT_NAME
The name of the script used in the request.
Example: SCRIPT_NAME=/cgi-bin/gols.pl

SCRIPT_FILENAME
The name of the script file on the server.
Example: SCRIPT_FILENAME=c:/page/cgi-bin/gols.pl

SERVER_SOFTWARE
Server software
Example: Apache/1.3.19 (WIN32)
The called CGI program can read any of its environment variables set by the server and use it to its advantage.
In general, this is all in brief, for more detailed information about the Common Gateway Interface, see the specialized documentation, I made this description in order to remind you, and if you did not know, then bring it up to date. Let's try to do something in practice.

Practical part
For practice, we need at least 3 things - some http server for Windows, I tried all the examples on Apache 1.3.19 for Windows, the server is free, you can download it from i
Yes, and we will need a server not just anyhow - which one, but configured to run cgi scripts! See the documentation for how this is done for the server you are using. The second thing we need is of course an assembler, it is also necessary that the compiler supports the creation of WIN32 console applications, I use Tasm, but Fasm and Masm and many other *asms are fine. And finally, the most important thing is that this desire is required.
So, I assume that the server was successfully installed and configured by you, so that in the document root directory of the server there is an index.html file, which is wonderfully displayed in the browser when you type the address 127.0.0.1 . I will also take into account that somewhere in the wilds of the server folders there is a “cgi-bin” folder, in which scripts are allowed to run.
Let's check the server setup, and at the same time write a small script. Our script will be a regular *.bat file. I foresee questions - how? really? Yes, this is a regular batch file, as mentioned above, the CGI specification does not distinguish between file types, the main thing is that the server can run it, and he, in turn, has access to stdin / stdout and environment variables, a bat file, albeit not fully, but for an example we are quite satisfied. Let's create a file with the following content:

@echo off
rem Request header
echo Content-type: text/html
echo.
rem request body
echo "Hi!

echo "GET request received data: %QUERY_STRING%

Let's call the file test.bat and place it in the directory for running scripts, most likely it will be the "cgi-bin" directory. The next thing we will need to do is call this script in some way, in principle, this can be done directly by typing something like the following “http://127.0.0.1/cgi-bin/test.bat” in the browser address box, but let's let's call it from our main page, at the same time check the operation of the GET method. Let's create an index.html file in the root of the server with the following content:

Enter the data to send to the server:
Data:

Now, when you enter the server (http://127.0.0.1 in the browser address bar), a form should appear, type something in it and click the “send” button, if everything was done correctly, you will see the answer of our bat- script. Now let's see what we got there.
As you might guess, the “echo” command outputs to stdout, the first thing we do is pass the header of our response to the server - “echo Content-type: text/html”. This is the standard CGI spec header that tells us whether we want to pass text or an html document, and there are other headers. A very important point is that the header must be separated from the response body by an empty line, which we do with the next “echo.” command. Next, the body of the response itself is transmitted - this is a regular html document, in the body of the document, for clarity, I display one of the environment variables passed to us by the server - “QUERY_STRING”, as already mentioned with the GET method (and this is precisely our case), all the data entered by the user, which we can observe in the script response. You may have noticed “quotes out of place” in the last 2 lines of the file, immediately after “echo”, they are there due to the specificity of bat files, as you can see, html tags are framed by the characters “<» и «>”, at the same time, these characters serve as I / O redirection in bat files, and therefore we cannot freely use them here.
I recommend playing around with similar bat scripts a little, it can be very useful, try looking at other environment variables. I’ll say a little, digressing from the topic, on UNIX systems, command interpreter languages ​​​​are very well developed and the line between programming in the command interpreter language and programming in a “real” programming language is very, very blurred in some cases, so simple scripts are often written on UNIX systems specifically in command interpreter languages, but the windows interpreter cmd.exe or, earlier, command.com is clearly too weak for these purposes.
Now let's move on to the main task of this article, to actually writing a CGI program in assembler. In principle, given all of the above about CGI, we can conclude that the CGI interface requires from our program:

  • The program must be able to read the standard input stream (stdin) in order to access the data passed by the POST method;
  • The program must be able to write to the standard output stream (stdout) in order to send the result of its work to the server;
  • It follows from the first two points that in order for the server to be able to pass something to our program on stdin, and it could answer something on stdout, the CGI program must be a console application;
  • Our program must be able to read its environment variables.
This is quite enough to create a full-fledged CGI application.
Let's start with the last point. To access the environment variables of a Windows application, the GetEnvironmentStrings API function is used, the function has no arguments and returns a pointer to an array of environment variables (NAME=VALUE) separated by zero, the array is closed by a double zero, when the program is launched by the server in the program environment, in addition to standard variables, the specific CGI variables described above are added; when you run the program from the command line, you will not see them, of course.
In order to write something to stdout or read from stdin, we first need to get the handles of these streams, this is done using the GetStdHandle API function, one of the following values ​​is passed as a function parameter:
  • STD_INPUT_HANDLE - for stdin (standard input);
  • STD_OUTPUT_HANDLE - for stdout (standard output);
  • STD_ERROR_HANDLE - for stderr.

The function will return the handle we need for read/write operations. The next thing we need to do is write/read these streams. This is done by ordinary file read/write operations, i.e. ReadFile and WriteFile. There is one subtlety here, you might think that you can use WriteConsole / ReadConsole for these purposes, yes, this is really true for the console and it will work fine, the results, just like with WriteFile, will be displayed on the console, but this will continue until we run our program as a script on the server. This happens because when our program is started by the server, the handles returned by the “GetStdHandle” function will no longer be console handles per se, they will be pipe handles, which is necessary for communication between two applications.
Here is a small example of what a CGI assembler program should look like:

386
.modelflat,stdcall
includelib import32.lib
.const
PAGE_READWRITE=4h
MEM_COMMIT = 1000h
MEM_RESERVE=2000h
STD_INPUT_HANDLE = -10
STD_OUTPUT_HANDLE=-11

Data
hStdoutdd ?
hStdin dd ?
hMemdd ?
header:
db "Content-Type: text/html",13,10,13,10,0
start_html:
db" The environment of a CGI program looks like this:
",13,10,0
for_stdin:
db" STDIN of the program contains:
",13,10,0
end_html:

Db "",13,10,0
nwritten dd ?
toscr db 10 dup(32)
db " - File type",0
.code
_start:

Xor ebx, ebx
call GetStdHandle,STD_OUTPUT_HANDLE
mov hStdout,eax
call GetStdHandle,STD_INPUT_HANDLE
mov hStdin,eax

Call write_stdout, offset header
call write_stdout, offset start_html

Call VirtualAlloc,ebx,1000,MEM_COMMIT+MEM_RESERVE,PAGE_READWRITE
mov hMem,eax
mov edi,eax
call GetEnvironmentStringsA
mov esi,eax
next_symbol:
mov al,
or al, al
jz end_string
mov ,al
next_string:
cmpsb
jmp short next_symbol
end_string:
mov ,">rb<"
add edi,3
cmp byte ptr ,0
jnz next_string
inc edi
stosb
call write_stdout, hMem
call write_stdout, offset for_stdin

Call GetFileSize,,ebx
mov edi,hMem
call ReadFile,,edi, eax,offset nwritten, ebx
add edi,
mov byte ptr ,0
call write_stdout, hMem
call write_stdout, offset end_html
call VirtualFree,hMem
call ExitProcess,-1

Write_stdout proc bufOffs:dword
call lstrlen,bufOffs
call WriteFile,,bufOffs,eax,offset nwritten,0
ret
write_stdout endp
extrn GetEnvironmentStringsA:near
extrn GetStdHandle:near
extrn ReadFile:near
extrn WriteFile:near
extrn GetFileSize:near
extrn VirtualAlloc:near
extrn VirtualFree:near
extrn ExitProcess:near
extrn lstrlen:near
ends
end_start

The executable file is built with the commands:
tasm32.exe /ml test.asm
tlink32.exe /Tpe /ap /o test.obj
Do not forget that the program must be console.
You can call this program using the html form described above, you just need to change the name test.bat in the form to test.exe and copy it to /cgi-bin/, respectively, while you can set it in the POST request method, the program processes it.
I also want to note that you can call the program in a different way, you can create a file in the cgi-bin directory, for example, test.cgi with one single line "#! c: /_path_/test.exe" and call it in requests, and the server in in turn, it will read its first line and run the exe-file, for this it is necessary that the *.cgi extension be specified in the http-server settings as an extension for scripts. With this approach, the server will launch our program with the command line “test.exe path_to_test.exe”, this has several advantages - the first is that the person running our script will not even guess what the script is written on, the second is how it is transmitted to us file name with our line, for example, we can add any settings for our script to this file, which simplifies debugging, by the way, this is how all interpreters work - you have noticed that in all perl / php / etc programs, there is a similar line - indicating to the command interpreter itself. So, when the server starts the cgi program, if the program extension is specified as a script in the settings, it reads the first line of the file, and if it turns out to be of the format described above, then it launches the program specified in the line with the name of this file without a space, let's say that in the line indicates the pearl interpreter, he, having received such a gift, begins its execution, tk. a comment in a pearl is a “#” symbol, then it skips the first line and the script continues to execute, in general, it’s a convenient thing.

Cheap Substitute Clarinex Sildenafil Aska cgi Cheap substitute clarinex ... Cheap substitute clarinex sildenafil add cgi. 2552 votes. Cheap Pfizer Viagra bbs cgi mode- remgruzshina.ru ... sildenafil bbs cgi mode what happened... Cheap Substitute Clarinex Sildenafil Aska cgi Cheap... Independent expertise - Cheap Cialis Cbbs cgi mode... cbbs cgi mode cheap substitute clarinex sildenafil bbs cgi mode... pharmacy cheap cialis bbs cgi ... Cheap Substitute Clarinex Sildenafil Inurl Joyful cgi Cheap substitute clarinex ... Sildenafil Inurl Joyful cgi Cheap substitute clarinex sildenafil bbs cgi mode. ... Cheap Substitute Clarinex Sildenafil Add cgi Cheap substitute clarinex sildenafil aska cgi Cheap... and promotions.Cheap cialis cbbs cgi mode ... Cheap Substitute Clarinex Sildenafil Inurl Guest cgi Pageid Cheap substitute clarinex ... clarinex sildenafil inurl guest cgi pageid... clarinex sildenafil bbs cgi mode ... Cheap Substitute Clarinex Sildenafil Inurl C Board cgi Cmd ... Sterlitamak - Country of Beauty, beauty salons... Reviews about companies. Nuria - salon... Cheap Substitute Clarinex Sildenafil bbs Brick and concrete; Timber; Other building goods and services; Goods for organization... Cheap Substitute Clarinex Sildenafil Vbulletin Cheap Substitute Clarinex ... substitute clarinex sildenafil bbs cgi mode what was... Kamagra Liquid bbs cgi mode- russiancontour.com In fact, Gerasim did not drown Mumu. For who told this story to Turgenev, if Gerasim ...

Cat Cafe World - Cheap Pfizer Viagra bbs Inaka Jsp

Cheap substitute clarinex ... Cheap substitute clarinex sildenafil bbs inaka jsp. cheap ... Cheap Substitute Clarinex Sildenafil Inurl Addguest Html ... Mineral water in cosmetology. Mineral water is an excellent natural remedy for... Cheap Substitute Clarinex Sildenafil Inurl Apeboard Plus cgi Teaching English, studying abroad... For the little ones; Individual... Cheap Substitute Clarinex Sildenafil Inurl Gbook Php A Cheap substitute clarinex ... Clarinex Sildenafil Inurl Guest cgi Pageid Cheap cialis cbbs cgi mode Cheap... Buy Viagra 100mg Birmingham Inurl bbs cgi Buy Viagra 100mg Birmingham bbs cgi: One of the newest... Enter the forum. Main forum. India Cheap Cialis Inurl Sign Php Cheap Substitute Clarinex...Inurl bbs cgi Buy... Sildenafil Aska cgi Cheap ... Cheap Substitute Clarinex Sildenafil Inurl Fsguest Html Cheap substitute clarinex ... Cheap substitute clarinex sildenafil inurl joyful cgi" Operating principle... Cheap Substitute Clarinex Sildenafil Addurl Aspx cheap substitute clarinex sildenafil ... cgi Cheap substitute ... cheap substitute clarinex... Cheap Pfizer Viagra C Board cgi cmd Cheap substitute clarinex sildenafil inurl guestbook php Cheap substitute clarinex...C Board cgi Cmd ... Cheap Pfizer Viagra Inurl Guestbook Html ... Substitute Clarinex Sildenafil Inurl Addguest Html Cheap Substitute Clarinex Sildenafil Inurl C Board cgi cmd...

cgi

Cheap Pfizer Viagra Inurl Yybbs cgi. ... Cialis Cialis buy Levitra in the city of Tula Cheap cialis bbs CGI... Tadalafil In Khmelnitsky Tadalafil in Khmelnitsky. Compare prices, buy... Tadalafil in Khmelnitsky. You want to buy... Cheap Substitute Clarinex Sildenafil Aska cgi Cheap substitute clarinex sildenafil aska cgi" Cheap... Cheap substitute clarinex sildenafil add ... Cheap Pfizer Viagra Add cgi- rsk-legion.ru Cheap pfizer viagra inurl guestbook html Where Can I Order Viagra Inurl Add cgi... sildenafil, ... bbs cgi... Buy Kamagra Without Prescripton UK Inurl Light cgi Kamagra Liquid bbs cgi mode ... Cheap Substitute Clarinex Sildenafil Add cgi Cheap substitute clarinex... Buy Viagra 100 Mg Birmingham Add Html ... addurl aspx Cheap substitute clarinex sildenafil... Kamagra Liquid bbs cgi mode... Pan sildenafil ... Cheap Cialis Board cgi Id - style-ultramarine.ru Beauty salon "Style Ultramarine" ... Cheap cialis addguest cgi: Forum! | Impotence treated at home... Where Can I Order Viagra Inurl Sign Asp | Moscow - Country... inurl joyful cgi ... Cheap substitute clarinex sildenafil inurl addentry php ... Kamagra Liquid bbs cgi mode... "Autopartner" - Does Cialis Work If Erection Is Absent... Everything for car washes Dry cleaning machines Polishing machines Vacuum cleaners Vacuum cleaners Inurl Showthread Buy Viagra - vgazele.ru Levitra in pharmacies of Belarus Inurl showthread buy viagra: Buy Cialis, Viagra, Levitra.

"Designed by: PHPLD Your Site" "Submit Article" "Powered by ArticleMS" "Submit Article" "Main Menu" "Latest Articles" "Designer: Astralinks Directory" "Submit Article" "Submit Articles" "Member Login" "Most Popular Articles" "Article RSS Feeds" "Fields marked with an asterisk are required" joomla "Designer: Free PHPLD Templates" "Submit Article" "RSS Articles" "RSS comments" "Recent Articles" "Authorization" "Username:" "Password: " "Remember Me" "Register" "Lost your password?" "Startseite ? Weblogs ? Weblog von" "RSS Feeds" "Add us to favorites" "Make us your home page" "Submit Articles" "Regular links with reciprocal" Article inurl:"/access/unauthenticated" Forums "Template by DevHunters. com" "Add Article" "Proudly powered by WordPress and BuddyPress" "Designer: Free PHPLD Templates" "Add Article" "This question is for testing whether you are a human visitor and to prevent automated spam submissions" "To validate the reciprocal link please include the following HTML code in the page at the URL" "Add Article" "Random Press Releases" "Press Release Script" inurl:"/blogs/load/recent" "Article Of The Week" "Article Directory All Rights reserved. " "Designed by: PHPLD Your Site" "Submit Article" "Alexa Information" "Listing Details" "LISTING URL" "Site Statistics" "Add Article" "Designed by One Way Links" "Add Article" "We invite you to check out our catalog of articles from the categories to your left, and be sure to add this site to your favorites!" "Designer: PHPLD Templates" "Add Article" "More information about text formats" "Rate Author: Current:" "Powered by: php Link Directory" "Add Article" "Unacceptable Sites, Content & few reasons why submissions are not approved: " "Add Article" "Template By Yazzoo" "Add Article" "Theme by: Romow Web Directory" "Submit Article" "Powered by WordPress + Article Directory plugin" "Theme By: Web Directory" "Submit Article" "RSS Articles" "RSS comments" "Recent Articles" "Powered by: php Link Directory" "Add Article" "%E8%AB%8B%E6%BA%96%E7%A2%BA%E5%A1%AB%E5%85% A5%E6%82%A8%E7%9A%84%E9%83%B5%E7%AE%B1%EF%BC%8C%E5%9C%A8%E5%BF%98%E8%A8%98% E5%AF%86%E7%A2%BC%EF%BC%8C%E6%88%96%E8%80%85%E6%82%A8%E4%BD%BF%E7%94%A8%E9% 83%B5%E4%BB%B6%E9%80%9A%E7%9F%A5%E5%8A%9F%E8%83%BD%E6%99%82%EF%BC%8C%E6%9C% 83%E7%99%BC%E9%80%81%E9%83%B5%E4%BB%B6%E5%88%B0%E8%A9%B2%E9%83%B5%E7%AE%B1% E3%80%82" "Using Article Directory plugin" "This link directory uses sessions to store information" "Add Article" "Blog Menu" "Create Blog" " My Blogs" "PHPmotion" "PHPLD CLUB - FREE THEMES FOR YOU" "Add Article" "Skinned by: Web Design Directory" "Add Article" "Template By Yazzoo" "Add Article" "Template by DevHunters.com" "Add Article " "You do not have permission to comment. If you log in, you may be able to comment" "Template By Free PHPLD Templates" "Add Article" "Sponsored By: Webmaster Tips & Tricks / Download FREE phpLD Themes" "Submit Article" "Theme By: Web Directory" "Add Article" "Use the articles in our directory on your website to provide your visitors" "Powered by: php Link Directory" "Submit Article" "Supported by Bid for Position" "Add Article" "Theme by: Romow Web Directory" "Submit Article" "Supported by Bid for Position" "Submit Article" "Supported by Bid for Position" "Add Article" "Sponsored By: Webmaster Tips & Tricks / Download FREE phpLD Themes" "Submit Article" "Designed by Miter Design and SWOOP" "Submit Article" "Theme By: Web Directory" "Add Article" "Home Videos Audios" Blogs phpmotion "Template by DevHunters.com" "Submit Article" "Designed By: Invitation Web Directory" "Add Article" "registered authors in our article directory" "PHP Link Directory" "Add Article" "Sponsored By: Webmaster Tips & Tricks / Download FREE phpLD Themes " "Add Article" "Powered by Article Dashboard" "Anmelden oder Registrieren um Kommentare zu schreiben" "Startseite ? Weblogs" "Developed by Hutbazar" "Add Article" Home Members RSS "created the group" "Please create an account to get started." "Powered By: Article Friendly Ultimate" inurl:"/wp-login.php?action=register " "Designer: PHPLD Templates" "Submit Article" "powered by joomla" "add new post" "Designed by One Way Links" "Add Article" "To validate the reciprocal link please include the following HTML code in the page at the URL " "Submit Article" "Sponsored by Directhoo" "Add Article" "Template by: Emillie Premium Directory" "Submit Article" "There are * published articles and * registered authors" inurl:"/node/1" "You are here" "Publish your article in RSS format for other websites to syndicate" "Template By Yazzoo" "Submit Article" "Powered by PHPLD" "Submit Article" "Articles with any spelling or grammar errors will be deleted" "DIRECTORY SCRIPT BY PHP LINK DIRECTORY " "Add Article" inurl:submitguide.php "submit articles" "Editors Picks" "Press Release Script" "Add Article" "PHP Link Directory" Home "Free Signup" "Submit Article" "About Us" "Contact Us" "Search Site" "Author Login" "Alexa Information" "Listing Details" "LISTING URL" "Site Statistics" "Add Article" "This link directory uses sessions to store information" "Add Article" "Designed by: PHPLD Your Site" "Add Article" "Submit Articles" "If you do not have an account yet, you may register here. " "designed by AskGraphics.com" "Submit Article" inurl:"/user/profile.php?id=" moodle "Most Rated Press Releases" "Press Release Script" "Do not submit articles filled with spelling errors and bad grammar" "Theme by: Romow Web Directory" "Add Article" "Use the Articles search box to locate articles on a range of topics" "Sponsored by Directhoo" "Add Article" "PHP Link Directory" inurl:"submit_article.php" "This author has published * articles so far. More info about the author is coming soon." "Powered by PHPLD" "Submit Article" "Powered by PHPmotion" - Free Video Script "Powered by: php Link Directory" "Submit Article" "Would You like us to send you a daily digest about new articles every day" "Expert Authors" "Article Directory All Rights reserved." "PHP Link Directory" "Add Article" "Skinned by: Web Design Directory" "Submit Article" Subject Homepage "Allow Comments" "Allow Trackbacks" "Maximum Attachments" "Home Blogs" "Login or register to post comments" "PHPLD CLUB - FREE THEMES FOR YOU" "Submit Article" "Submit Link" Pricing "Enter the code shown" "This helps prevent automated registrations." " Submit Article" "Designed By: Invitation Web Directory" "Submit Article" "Template by: Emillie Premium Directory" "Add Article" "This link directory uses sessions to store information" "Submit Article" "To prevent automated spam submissions leave this field empty" Country "City/town" "Last access" "You are not logged in" "Wordpress A rticle Directory Script" "PHP Link Dircetory" "Add Article" "Live Articles" "Article Directory All Rights reserved." "Article Details" "You must be logged in to leave a rating" "You must be logged in to leave a Comment " "Designed by One Way Links" "Submit Article" "Designed By: Invitation Web Directory" "Add Article" "Template by: Emillie Premium Directory" "Submit Article" "The content of this field is kept private and will not be shown publicly" "Designed by: Futuristic Artists" "Add Article" "Designer: Astralinks Directory" "Submit Article" "Unacceptable Sites, Content & few reasons why submissions are not approved:" "Add Article" "Hot Press Releases" "Press Release Script" "Notify me of new posts by email" inurl:"populararticles.php" "Your virtual face or picture" "Submit Article" "PHP Link Directory" "Submitted by" "Login or register to post comments" "Search this site :" "Article Details" "You must be logged in to leave a rating" "You must be logged in to leave a Comment" "Wordpre ss Article Directory Script" "PHP Link Dircetory" "Submit Article" "powered by vbulletin" "Recent Blogs Posts" "Submit Articles" inurl:"submitart.php" "Designed By: Invitation Web Directory" "Submit Article" "Submit Articles " "Total Articles" "Total Authors" "Total Downloads" "Designed by Miter Design and SWOOP" "Add Article" "Designed by: Futuristic Artists" "Submit Article" "You may set detail component configures by double-clicking background, text , images, or quotations" "Press Release Categories" "Press Release Script" "Designed by: PHPLD Your Site" "Add Article" "Sponsored by Directhoo" "Submit Article" "Author Terms of Service" "Publisher Terms of Service" " Disclaimer" "We reserve the right to include advertising on pages with your articles" "powered by phpmotion" Blogs inurl:"login.php" "Signup now to submit your own articles" Home "Add Article" "Latest Links" "Top Hits " "Powered by ArticleMS from ArticleTrader.com" "Submitted by Anonymous" "Login or register to post comments" "Most Popular Articles" "Article Directory All rights reserved. " "Skinned by Addictive Games" "Submit Article" "Terms of Use" "This is a demo page only." "themes/default/templates/generic_terms.htm" "Submit Link" Pricing "Enter the code shown" "This helps prevent automated registrations." "Add Article" "Skinned by Addictive Games" "Submit Article" inurl:"login2submitart.php" "There are * published articles and * registered authors in our article directory." "Rate this Article: Current:" Subject inurl:"act=dispBoardWrite" inurl:"login.php" "Login to access your author control panel" "Submit Link" Pricing "Enter the code shown" "This helps prevent automated registrations." "Submit Article" moodle "public profile" "Provide a password for the new account in both fields Password must be at least" "To validate the reciprocal link please include the following HTML code in the page at the URL" "Add Article" "Skinned by Addictive Games" "Add Article" "More information about formatting options" "Designed by One Way Links" "Submit Article" "Alexa Information " "Listing Details" "LISTING URL" "Site Statistics" "Submit Article" "designed by AskGraphics.com" "Add Article" "By publishing information packed articles, youll soon enjoy" inurl:"submitarticles.php" "Powered by Press Release Script" "Sign-Up" "Please fill out this form, and we"ll send you a welcome email to verify your email address and log you in." Forums "Designer: Free PHPLD Templates" "Add Article" inurl:"/blog/index.php?postid=" moodle "Developed by Hutbazar" "Submit Article" "Designer: Astralinks Directory" "Add Article" "Publish your article in RSS format for other websites to syndicate" Home "Submit Article" "Latest Links" "Top Hits" "Template by DevHunters.com" "Submit Article" link:"www.articledashboard.com" "Login to Your Account" "Login to access your author control panel" "Don"t have an account?" "Your one-stop source for free articles. Do you need contents to add to your web site?" "Powered by PHPLD" "Add Article" "Lines and paragraphs break automatically" "Recently Approved Articles" "Article Directory All Rights reserved." "Template by: PHPmotionTemplates.com" " Smart Blog" "Add new post" "PHP Link Directory" inurl:"submit_article.php" "DIRECTORY SCRIPT BY PHP LINK DIRECTORY" "Add Article" "Supported by Bid for Position" "Submit Article" "PHP Link Directory" "Submit Article" "DIRECTORY SCRIPT BY PHP LINK DIRECTORY" "Submit Article" "Developed by Hutbazar" "Submit Article" "Sponsored By: Webmaster Tips & Tricks / Download FREE phpLD Themes" "Add Article" "Hot Articles" "Article Directory All Rights reserved. " "Powered Free by PHPmotion" Blogs "Notify me when new comments are posted" "To validate the reciprocal link please include the following HTML code in the page at the URL" "Submit Article" "There are now * Excellent Articles in our Database from * Authors" "This link directory uses sessions to store information" "Submit Article" "upload your articles and keep updated about new articles." Home "Add Article" "Latest Links" "Top Hits" "Unacceptable Sites, Content & few reasons why submissions are not approved:" "Submit Article" "Copyright * vBulletin Solutions" "Create Blog" "Template By Free PHPLD Templates" "Add Article" "Press Release Of The Week" "Press Release Script" "Template By Free PHPLD Templates" "Submit Article" "upload your articles and keep updated about new articles." "PHPLD CLUB - FREE THEMES FOR YOU" "Add Article" "Post Article Comments" "Article Directory All Rights reserved." "Create new account Log in Request new password" "Use the articles in our directory on your we bsite to provide your visitors" "DIRECTORY SCRIPT BY PHP LINK DIRECTORY" "Submit Article" "Powered by WordPress ž Using Article Directory plugin" "Skinned by Addictive Games" "Add Article" "Recently Approved" "Press Release Script" "Editors Picks " "Article Directory All Rights reserved." "Alexa Information" "Listing Details" "LISTING URL" "Site Statistics" "Submit Article" "Template by: Emillie Premium Directory" "Add Article" "Support Software by Zendesk" Forums "Designed by: Futuristic Artists" "Add Article" "You are not logged in. (Login)" Country "City/Town" "Web page" "Random Articles" "Article Directory All Rights reserved." "Designed by Miter Design and SWOOP" "Add Article" "Developed by Hutbazar" "Add Article" "Contact Us " "This is a demo page only." "themes/default/templates/generic_contactus.htm" "Unacceptable Sites, Content & few reasons why submissions are not approved:" "Submit Article" "Public Group" "Popular Search Terms" " Recent Search Terms" "Powered by UCenter Home" "Designer: PHPLD Templates" "Submit Article" "Welcome!" "Article Submission" "Our New Articles" "Powered By: Article Friendly" "total articles" "Designer: PHPLD Templates" "Add Article" "Template By Free PHPLD Templates" "Submit Article" "Theme By: Web Directory" "Submit Article" "If you have hired a ghost writer, you agree that you have" "designed by AskGraphics.com" "Submit Article" "Designer: Astralinks Directory" "Add Article" "Designed by: Futuristic Artists" "Submit Article" "Expert Authors" "Press Release Script" "About the Auth or" "Recent posts" "Add new comment" "Website Design and Developed by ArticleBeach" "Skinned by: Web Design Directory" "Submit Article" "Provide a password for the new account in both fields" "Designed by Miter Design and SWOOP " "Submit Article" "Here are the most popular 100 articles on" "Article Script - Powered By Article Marketing" "Submit Articles" "Please login to write comment" "add new post" "Login to post new content in the forum. " "Powered by Drupal" "support software" inurl:"/entries/" "Wordpress Article Directory Script" "PHP Link Dircetory" "Submit Article" "Add Article" "PHP Link Directory" "Submit Link" Pricing "Enter the code shown" "This helps prevent automated registrations." "Add Article" "PHP Link Directory" "Submit Article" "Create your own personal address so your friends and family can find you!" "Most Rated Articles" "Article Directory All Rights reserved ." "Skinned by: Web Design Directory" "Add Article" "Regular links with reciprocal" Article "Template By Yazzoo" "Submit Article" "Submit Article" "PHP Link Directory" "Theme by: Romow Web Directory" "Add Article " "PHPLD CLUB - FREE THEMES FOR YOU" "Submit Article" Home "Submit Article" "Latest Links" "Top Hits" "Welcome to article directory *. Here you can find interesting and useful information on most popular themes." "About Us" "This is a demo page only." "themes/default/templates/generic_aboutus.htm" "Newest Authors" "Welcome to our new authors!" "As a member you will be able to" "So what are you waiting for?" "Register now to begin, it"s fun and it"s FREE!" Blogs "Designer: Free PHPLD Templates" "Submit Article" "Wordpress Article Directory Script" "PHP Link Dircetory" "Add Article" "Additional Articles From" "Posted by Anonymous (not verified)" "designed by AskGraphics.com" "Add Article" "Login to access your author control panel" "Signup now to submit your own articles" "This question is for testing whether or not you are a human visitor and to prevent automated spam submissions" inurl:"/node/2" "You are here" "Advertise With Us" "This is a demo page only." "themes/default/templates/generic_advertise.htm" "Sponsored by Directhoo" "Submit Article" link:www.articletrader.com "Powered by vBulletin" "Create Blog" "Powered by PHPLD" "Add Article" inurl:"/node/3" "You are here" "Design and Developed by ArticleBeach" "Powered by Article Dashboard" inurl:submitarticles.php inurlopulararticles.php "Powered By: Article Friendly" inurl: submitguide.php "submit articles" "Powered by ArticleMS" "Using Article Directory plugin" "Join now to promote your business, find partners, build relationships and reconnect with community. Sync with Facebook Twitter Email SMS and more" "is a micro-blogging service based on the Free Software Laconica tool." "External Profiles" "Last online" "About Me" "Public notes" FAQ Contact "Mobile interface" "what are you doing" "groups" "Most popular" "All Groups" "Forgot your password? " "Powered By" "revou" "Join now to promote your business, find partners, build relationships and reconnect with community. Sync with Facebook Twitter Email SMS and more" "Having trouble while logging in?" "Public notes" "all time" "last month" "show picture updates" "show text updates" inurl:"/recentupdates.php?m=" "It runs the StatusNet microblogging software" "is a micro-blogging service based on the Free Software StatusNet tool." "join the conversation" "image code" "register below." "users can communicate using quick status updates of 160 characters or less." "This free flowing dialogue lets you send messages, pictures and video to anyone" "Sign up with your email address. There are already * registered members." "My text and files are available under Creative Commons Attribution 3.0 except this private data: password, email address, IM address, and phone number." groups "Most popular" "All Groups" "Forgot your password?" "Powered By" "ReVou Software" "Let my messages are visible to all users, not just to my friends" "Powered by Sharetronix" "Powered by Jisko" "With this form you can create a new account. You can then post notices and link up to friends and colleagues." "With this form you can create a new account. You can then post notices and link up to friends and colleagues." "My text and files are available under Creative Commons Attribution 3.0 except this private data: password, email address, IM address, and phone number." "Your Name (without space between letters and words)" "Powered by Blogtronix" "powered by twitter script" "Copyright * Twitter Script" "It runs the Laconica microblogging software" "Powered by * Script" inurl:"/recentupdates.php" "Powered by Scritter Script " "Attached Image: " "Powered by Blogtronix" "Public notes" "Terms of Service" "Normal version" "It`s also easy to find and connect with other people for private threads and to keep track of their updates." " Public notes" "Normal version" "Login" "Powered By ReVou Software" inurl:"Special:UserLogin" wiki inurl:":UserLogin" "Theme: Feb12" "first" "prev" "1-20 of" "next" inurl:groups inurl:"http://wiki." "Recently commented pages" "CategoryWiki" inurl:"title=Lietot%C4%81ja_diskusija:" "MoinMoin Powered" "Valid HTML 4.01 " inurl:"Utilizador:" wiki inurl:"title=User:" wiki "Deze pagina is het laatst bewerkt op" "Deze pagina is" "Aanmelden / registreren" "MoinMoin Powered" "GPL licensed" inurl:"title=% D0%9E%D0%B1%D0%B3%D0%BE%D0%B2%D0%BE%D1%80%D0%B5%D0%BD%D0%BD%D1%8F_%D0%BA%D0% BE%D1%80%D0%B8%D1%81%D1%82%D1%83%D0%B2%D0%B0%D1%87%D0%B0:" "DokuWiki supports some simple markup language" "What s Hot" "Recent Changes" "Upcoming Events" "Tags" inurl:"title=Diskuse_s_u%C5%BEivatelem:" "Mac OS X Server - Wikis" inurl:"title=%E0%A6%AC%E0%A7% 8D%E0%A6%AF%E0%A6%AC%E0%A6%B9%E0%A6%BE%E0%A6%B0%E0%A6%95%E0%A6%BE%E0%A6%B0% E0%A7%80_%E0%A6%86%E0%A6%B2%E0%A6%BE%E0%A6%AA:" inurl:"tiki-forums.php" inurl:"User_talk:" wiki "You will find more useful pages in the Wiki category or in the PageIndex" inurl:"title=Kasutaja_arutelu:" inurl:"title=%E5%88%A9%E7%94%A8%E8%80%85%E2%80%90 %E4%BC%9A%E8%A9%B1:" inurl:"Spezial:Anmelden" wiki "Thčme: Strasa - Mono" inurl:"title=Diskuse_s_wikistou:" "Collaborate with online document creation, editi ng, and comments. " "Log in to my page" "wikis" inurl:/wiki/dokuwiki inurl:"wiki/RecentlyCommented" inurl:"http://mediawiki." inurl:"title=%E5%88%A9%E7%94% A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:" inurl:"%ED%8A%B9%EC%88%98%EA %B8%B0%EB%8A%A5:%EB%A1%9C%EA%B7%B8%EC%9D%B8" wiki inurl:"title=%D7%A9%D7%99%D7%97%D7 %AA_%D7%9E%D7%A9%D7%AA%D7%9E%D7%A9:" "Theme: Eatlon" "There are no comments on this page." "Your hostname is" "Valid XHTML" "Valid CSS" inurl:"title=%D8%A8%D8%AD%D8%AB_%DA%A9%D8%A7%D8%B1%D8%A8%D8%B1:" inurl:"title=Usuario:" inurl :"/wikka.php?wakka=UserSettings" "what links here" "related changes" "special pages" inurl:"title=%E0%B8%84%E0%B8%B8%E0%B8%A2%E0% B8%81%E0%B8%B1%E0%B8%9A%E0%B8%9C%E0%B8%B9%E0%B9%89%E0%B9%83%E0%B8%8A%E0%B9% 89:" intitle:"Mac OS X Server" "Powered by TikiWiki CMS/Groupware v2" "This page was last modified" "This page has been accessed" "Log in / create account" "Immutable Page" Info Attachments "There is currently no text in this page, you can search for this page title i n other pages or edit this page." "Driven by DokuWiki" "Thank you for installing TikiWiki!" inurl:"title=Special:UserLogin" "Diese Seite wurde zuletzt am" "Diese Seite wurde bisher" "Anmelden / Benutzerkonto erstellen" inurl:"Utilisateur:" wiki inurl:groups "log in to my page" "updates" "wikis" "blogs" "calendar" "mail" "Theme: Ohia" "Powered by TikiWiki" FrontPage RecentChanges FindPage Help Contents inurl:" title=Th%E1%BA%A3o_lu%E1%BA%ADn_Th%C3%A0nh_vi%C3%AAn:" inurl:"title=Szerkeszt%C5%91vita:" inurl:"/wikka/UserSettings" "Whats Hot " "Recent Changes" "Upcoming Events" inurl:"%C4%90%E1%BA%B7c_bi%E1%BB%87t:%C4%90%C4%83ng_nh%E1%BA%ADp" wiki inurl:"%D0 %A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:" wiki inurl:"title=Pembicaraan_Pengguna:" inurl:"wiki/index.php? title="(!LANG: wiki inurl:"title=%E0%A4%B8%E0%A4%A6%E0%A4%B8%E0%A5%8D%E0%A4%AF_%E0%A4%B5%E0%A4%BE%E0%A4%B0%E0%A5%8D%E0%A4%A4%E0%A4%BE:" inurl:"title=Benutzer_Diskussion:" "Theme: Fivealive" inurl:"title=Diskusia_s_redaktorom:" "What’s Hot" "Recent Changes" "Upcoming Events" "Tags" "Edited" inurl:"tiki-index.php" inurl:"title=%D0%A0%D0%B0%D0%B7%D0%B3%D0%BE%D0%B2%D0%BE%D1%80_%D1%81%D0%B0_%D0%BA%D0%BE%D1%80%D0%B8%D1%81%D0%BD%D0%B8%D0%BA%D0%BE%D0%BC:" inurl:"title=Bruger_diskussion:" inurl:"Especial:Registre_i_entrada" wiki inurl:"title=Usuari_Discussi%C3%B3:" inurl:"title=Overleg_gebruiker:" inurl:"title=%CE%A3%CF%85%CE%B6%CE%AE%CF%84%CE%B7%CF%83%CE%B7_%CF%87%CF%81%CE%AE%CF%83%CF%84%CE%B7:" "Make sure to whitelist this domain to prevent registration emails being canned by your spam filter!" inurl:"Especial:Userlogin" wiki inurl:"%E4%BD%BF%E7%94%A8%E8%80%85:" wiki inurl:"title=Usuario_discusi%C3%B3n:" inurl:"title=Brugerdiskussion:" "Theme: Jqui" inurl:"title=Brukerdiskusjon:" "wiki is licensed under" "What’s Hot" "Recent Changes" inurl:"tiki-login.php" inurl:"Special:Inloggning" wiki "MoinMoin Powered" inurl:"Speci%C3%A1ln%C3%AD:P%C5%99ihl%C3%A1sit" wiki inurl:"Speci%C3%A1lis:Bel%C3%A9p%C3%A9s" wiki inurl:"title=Anv%C3%A4ndardiskussion:" inurl:"Special:Whatlinkshere" "pageindex" "recentchanges" "recentlycommented" inurl:"/RecentlyCommented" site:.edu "forums register" site:.edu "register iam over 13 years of age forum" site:.edu "discussion board register" site:.edu "bulletin board register" site:.edu "message board register" site:.edu "phpbb register forum" site:.edu "punbb register forum" site:.edu "forum signup" site:.edu "vbulletin forum signup" site:.edu "SMF register forum" site:.edu "register forum Please Enter Your Date of Birth" site:.edu "forums - Registration Agreement" site:.edu "forum Whilst we attempt to edit or remove any messages containing inappropriate, sexually orientated, abusive, hateful, slanderous" site:.edu "forum By continuing with the sign up process you agree to the above rules and any others that the Administrator specifies." site:.edu "forum In order to proceed, you must agree with the following rules:" site:.edu "forum register I have read, and agree to abide by the" site:.edu "forum To continue with the registration procedure please tell us when you were born." site:.edu "forum I am at least 13 years old." site:.edu "Forum Posted: Tue May 05, 2009 8:24 am Memberlist Profile" site:.edu "View previous topic:: View next topic forums" site:.edu "You cannot post new topics in this forum" site:.edu "proudly powered by bbPress" site:.edu "bb-login.php" site:.edu "bbpress topic.php" site:.edu "Powered by PunBB viewforum.php" site:.edu "Powered by PunBB register.php" site:.edu "The Following User Says Thank You to for this post" site:.edu "BB code is On" site:.edu "Similar Threads All times are GMT +1? site:.edu "If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post" site:.edu "Hot thread with no new posts" site:.edu "Thread is closed" site:.edu "There are 135 users currently browsing forums." site:.edu "forums post thread" site:.edu "forums new topic" site:.edu "forums view thread" site:.edu "forums new replies" site:.edu "forum post thread" site:.edu "forum new topic" site:.edu "forum view thread" site:.edu "forum new replies" site:.edu "add topic" site:.edu "new topic" site:.edu "phpbb" site:.edu "view topic forum" site:.edu "add message" site:.edu "send message" site:.edu "post new topic" site:.edu "new thread forum" site:.edu "send thread forum" site:.edu "VBulletin forum" site:.edu "Quick Reply Quote message in reply?" site:.edu "Currently Active Users: 232 (0 members and 232 guests)" site:.edu "Currently Active Users: members and guests" site:.edu "Forums Posting Statistics Newest Member" site:.edu "Users active in past 30 minutes: SMF" site:.edu "Users active in past 30 minutes: Most Online Today Most Online Ever" site:.edu "Most Online Today Most Online Ever Forums" site:.edu "Currently Active Users: 18 (0 members and 18 guests)" site:.edu "Users active today: 15478 (158 members and 15320 guests)" site:.edu "Threads: 673, Posts: 7,321, Total Members: 376? site:.edu "Add this forum to your Favorites List! Threads in Forum:" site:.edu "Threads in Forum Hot thread with no new posts" site:.edu "powered by vbulletin" site:.edu "powered by yabb" site:.edu "powered by ip.board" site:.edu "powered by phpbb" site:.edu "powered by phpbb3? site:.edu "powered by invision power board" site:.edu "powered by e-blah forum software" site:.edu "powered by xmb" site:.edu "powered by: fudforum" site:.edu "powered by fluxbb" site:.edu "powered by forum software minibb" site:.edu "this forum is powered by phorum" site:.edu "powered by punbb" site:.edu "powered by quicksilver forums" site:.edu "powered by seo-board" site:.edu "powered by smf" site:.edu "powered by ubb.threads" site:.edu "powered by the unclassified newsboard" site:.edu "powered by usebb forum software" site:.edu "powered by xennobb" site:.edu "powered by yaf" site:.edu "Powered By MyBB" site:.edu "Powered by IP.Board" site:.edu "powered by phpbb" site:.edu "forums post thread" site:.edu "forums new topic" site:.edu "forums view thread" site:.edu "forums new replies" site:.edu "forum post thread" site:.edu "forum new topic" site:.edu "forum view thread" site:.edu "forum new replies" site:.edu "forum" site:.edu "phorum" site:.edu "add topic" site:.edu "new topic" site:.edu "phpbb" site:.edu "yabb" site:.edu "ipb" site:.edu "posting" site:.edu "add message" site:.edu "send message" site:.edu "post new topic" site:.edu "new thread" site:.edu "send thread" site:.edu "vbulletin" site:.edu "bbs" site:.edu "intext:powered by vbulletin" site:.edu "intext:powered by yabb" site:.edu "intext:powered by ip.board" site:.edu "intext:powered by phpbb" site:.edu "inanchor:vbulletin" site:.edu "inanchor:yabb" site:.edu "inanchor:ip.board" site:.edu "inanchor:phpbb" site:.edu "/board" site:.edu "/board/" site:.edu "/foren/" site:.edu "/forum/" site:.edu "/forum/?fnr=" site:.edu "/forums/" site:.edu "/sutra" site:.edu "act=reg" site:.edu "act=sf" site:.edu "act=st" site:.edu "bbs/ezboard.cgi" site:.edu "bbs1/ezboard.cgi" site:.edu "board" site:.edu "board-4you.de" site:.edu "board/ezboard.cgi" site:.edu "boardbook.de" site:.edu "bulletin" site:.edu "cgi-bin/ezboard.cgi" site:.edu "invision" site:.edu "kostenlose-foren.org" site:.edu "kostenloses-forum.com" site:.edu "list.php" site:.edu "lofiversion" site:.edu "modules.php" site:.edu "newbb" site:.edu "newbbs/ezboard.cgi" site:.edu "onlyfree.de/cgi-bin/forum/" site:.edu "phpbbx.de" site:.edu "plusboard.de" site:.edu "post.php" site:.edu "profile.php" site:.edu "showthread.php" site:.edu "siteboard.de" site:.edu "thread" site:.edu "topic" site:.edu "ubb" site:.edu "ultimatebb" site:.edu "unboard.de" site:.edu "webmart.de/f.cfm?id=" site:.edu "xtremeservers.at/board/" site:.edu "yooco.de" site:.edu "forum" site:.edu "phorum" site:.edu "add topic" site:.edu "new topic" site:.edu "phpbb" site:.edu "yabb" site:.edu "ipb" site:.edu "posting" site:.edu "add message" site:.edu "send message" site:.edu "post new topic" site:.edu "new thread" site:.edu "send thread" site:.edu "vbulletin" site:.edu "bbs" site:.edu "cgi-bin/forum/" site:.edu "/cgi-bin/forum/blah.pl" site:.edu "powered by e-blah forum software" site:.edu "powered by xmb" site:.edu "/forumdisplay.php?" site:.edu "/misc.php?action=" site:.edu "member.php?action=" site:.edu "powered by: fudforum" site:.edu "index.php?t=usrinfo" site:.edu "/index.php?t=thread" site:.edu "/index.php?t=" site:.edu "index.php?t=post&frm_id=" site:.edu "powered by fluxbb" site:.edu "/profile.php?id=" site:.edu "viewforum.php?id" site:.edu "login.php" site:.edu "register.php" site:.edu "profile.forum?" site:.edu "posting.forum&mode=newtopic" site:.edu "post.forum?mode=reply" site:.edu "powered by icebb" site:.edu "index.php?s=" site:.edu "act=login&func=register" site:.edu "act=post&forum=19? site:.edu "forums/show/" site:.edu "module=posts&action=insert&forum_id" site:.edu "posts/list" site:.edu "/user/profile/" site:.edu "/posts/reply/" site:.edu "new_topic.jbb?" site:.edu "powered by javabb 0.99? site:.edu "login.jbb" site:.edu "new_member.jbb" site:.edu "reply.jbb" site:.edu "/cgi-bin/forum/" site:.edu "cgi-bin/forum.cgi" site:.edu "/registermember" site:.edu "listforums?" site:.edu "forum mesdiscussions.net" site:.edu "version" site:.edu "index.php?action=vtopic" site:.edu "powered by forum software minibb" site:.edu "index.php?action=registernew" site:.edu "member.php?action=register" site:.edu "forumdisplay.php" site:.edu "newthread.php?" site:.edu "newreply.php?" site:.edu "/phorum/" site:.edu "phorum/list.php" site:.edu "this forum is powered by phorum" site:.edu "phorum/posting.php" site:.edu "phorum/register.php" site:.edu "phpbb/viewforum.php?" site:.edu "/phpbb/" site:.edu "phpbb/profile.php?mode=register" site:.edu "phpbb/posting.php?mode=newtopic" site:.edu "phpbb/posting.php?mode=reply" site:.edu "/phpbb3/" site:.edu "phpbb3/ucp.php?mode=register" site:.edu "phpbb3/posting.php?mode=post" site:.edu "phpbb3/posting.php?mode=reply" site:.edu "/punbb/" site:.edu "punbb/register.php" site:.edu "powered by phpbb" site:.edu "powered by punbb" site:.edu "/quicksilver/" site:.edu "powered by quicksilver forums" site:.edu "index.php?a=forum" site:.edu "index.php?a=register" site:.edu "index.php?a=post&s=topic" site:.edu "/seoboard/" site:.edu "powered by seo-board" site:.edu "seoboard/index.php?a=vforum" site:.edu "index.php?a=vtopic" site:.edu "/index.php?a=register" site:.edu "powered by smf 1.1.5? site:.edu "index.php?action=register" site:.edu "/index.php?board" site:.edu "powered by ubb.threads" site:.edu "ubb=postlist" site:.edu "ubb=newpost&board=1? site:.edu "ultrabb" site:.edu "view_forum.php?id" site:.edu "new_topic.php?" site:.edu "login.php?register=1? site:.edu "powered by vbulletin" site:.edu "vbulletin/register.php" site:.edu "/forumdisplay.php?f=" site:.edu "newreply.php?do=newreply" site:.edu "newthread.php?do=newthread" site:.edu "powered by bbpress" site:.edu "bbpress/topic.php?id" site:.edu "bbpress/register.php" site:.edu "powered by the unclassified newsboard" site:.edu "forum.php?req" site:.edu "forum.php?req=register" site:.edu "/unb/" site:.edu "powered by usebb forum software" site:.edu "/usebb/" site:.edu "topic.php?id" site:.edu "panel.php?act=register" site:.edu "a product of lussumo" site:.edu "comments.php?discussionid=" site:.edu "/viscacha/" site:.edu "forum.php?s=" site:.edu "powered by viscacha" site:.edu "/viscacha/register.php" site:.edu "/post?id=" site:.edu "post/printadd?forum" site:.edu "community/index.php" site:.edu "community/forum.php?" site:.edu "community/register.php" site:.edu "powered by xennobb" site:.edu "hosted for free by zetaboards" site:.edu "powered by yaf" site:.edu "yaf_rules.aspx" site:.edu "yaf_topics" site:.edu "postmessage.aspx" site:.edu "register.aspx" site:.edu "post/?type" site:.edu "action=display&thread" site:.edu "index.php" site:.edu "index.php?fid" site:.edu inurl:guestbook inurl: edu guestbook inurl:edu Link:http://worldwidemart.com/scripts/ inurl:"guestBook.aspx" site:edu inurl:guest inurl:guest site:edu inurl:guestbook.html inurl:guestbook.php inurl:kg.php inurl:guestbook.html site:.edu inurl:guestbook.php site:.edu inurl:?agbook=addentry inurl:?show=guestbook&do=add inurl:?t=add inurl:GuestBook/addentry.php inurl:Myguestbook/index.asp inurl:addentry.html inurl:addentry.php inurl:addguest.cgi inurl:addguest.htm inurl:addguest.html inurl:addguest.php inurl:addguest.shtml inurl:apeboard.cgi inurl:apeboard_plus.cgi inurl:apeboard_plus.cgi?command= inurl:ardguest.php?do= inurl:aska.cgi inurl:aspboardpost.asp?id= inurl:bbs.cgi inurl:bbs.cgibbs.cgi? inurl:bbs.cgibbs.cgi?id= inurl:bbs.cgibbs.cgi?mode= inurl:bbs.cgibbs.cgi?page= inurl:bbs.cgibbs.cgi?room= inurl:bbs.cgibbs.php inurl:bbs.cgibbs/mm.php inurl:bbs.cgibbs_inaka.jsp inurl:board.cgi?id= inurl:board.cgi?mode= inurl:book.php inurl:c-board.cgi?cmd= inurl:cbbs.cgi inurl:cbbs.cgi?mode= inurl:cbbs.cgi?mode=new inurl:cf.cgi?mode= inurl:cgi-bin/config.pl inurl:cgi-bin/gbook.cgi inurl:cgi/gbook.cgi inurl:clever.cgi inurl:clever.cgi?mode= inurl:clever.cgi?page= inurl:clip.cgi inurl:combbs.cgi?mode= inurl:comment.htm inurl:comment.php inurl:comment.php?id= inurl:comment_reply.php?com_itemid= inurl:commentaire.php?id= inurl:comments.asp inurl:comments.htm inurl:comments.html inurl:comments.php inurl:comments.php?id= inurl:crazyguestbook.cgi?db= inurl:custombbs.cgi inurl:custreg.asp?action= inurl:cutebbs.cgi inurl:dcguest.cgi?action=add_form inurl:default.asp inurl:default.asp?action= inurl:diary.cgi?mode= inurl:e-guest_sign.pl inurl:e_sign.asp inurl:easyguestbookentry inurl:eguestbook.cgi?Sign inurl:eintrag.htm inurl:eintrag.html inurl:eintrag.php inurl:eintrag.php?id= inurl:eintrag1.php inurl:eintrag_neu.php inurl:eintragen.asp inurl:eintragen.htm inurl:eintragen.html inurl:eintragen.php inurl:eintragen.php?menuid= inurl:eintragen.pl inurl:emfsend.cgi?sc= inurl:entry.php inurl:entry.php?id= inurl:epad.cgi inurl:fantasy.cgi inurl:firebook.cgi inurl:form.php inurl:forum_posts.asp inurl:forum_topics.asp inurl:fpg.cgi inurl:fsguest.html inurl:fsguestbook.html inurl:g_book.cgi inurl:gaeste.php? inurl:gaestebuch.cgi inurl:gaestebuch.htm inurl:gaestebuch.html inurl:gaestebuch.php inurl:gaestebuch.php?action= inurl:gaestebuch.php?action=entry inurl:gaestebuch/ inurl:gaestebuch_lesen.php inurl:gastbok.php inurl:gastbuch.php inurl:gastenboek.html inurl:gastenboek.php inurl:gb.asp inurl:gb.cfm?bookID= inurl:gb.cgi?id= inurl:gb.php inurl:gb.php?action= inurl:gb.php?id= inurl:gb.php?tmpl= inurl:gb.php?user= inurl:gb/ inurl:gb/addrec.php inurl:gb_list.asp inurl:gb_sign.asp inurl:gbadd.php inurl:gbadd.php?action=new&interval=1 inurl:gbaddentry.php inurl:gbook.asp inurl:gbook.html inurl:gbook.php inurl:gbook.php?a= inurl:gbook.php?action= inurl:gbook.php?id= inurl:gbook.php?page=1 inurl:gbook.php?show= inurl:gbook/?page=1 inurl:gbook/gbook.php inurl:gbook2.php inurl:gbook?sign= inurl:gbooksign.asp inurl:gbserver inurl:gbuch.php inurl:gjestebok.php inurl:gjestebok/index.asp inurl:gjestebok/index.pl inurl:gjestebok3.asp inurl:gjesteboken.asp inurl:glight.cgi inurl:goto.php?msgadd inurl:gst_sign.dbm inurl:gstbk_add.php?sid= inurl:guest.asp inurl:guest.cfm inurl:guest.cgi inurl:guest.cgi?action=add_form inurl:guest.cgi?handle= inurl:guest.cgi?pageid= inurl:guest.cgi?site= inurl:guest.htm inurl:guest.html inurl:guest.php inurl:guest.pl inurl:guest/gbook.php inurl:guest_book.htm inurl:guest_book.html inurl:guestadd.html inurl:guestbook inurl:guestbook-add.html inurl:guestbook.asp inurl:guestbook.asp?action= inurl:guestbook.asp?mode= inurl:guestbook.asp?sent= inurl:guestbook.aspx inurl:guestbook.cfm inurl:guestbook.cgi inurl:guestbook.cgi?action= inurl:guestbook.cgi?action=add&aspm1= inurl:guestbook.cgi?id= inurl:guestbook.cgi?start= inurl:guestbook.htm inurl:guestbook.html inurl:guestbook.html?page= inurl:guestbook.mv?parm_func= inurl:guestbook.php inurl:guestbook.php.cgi?gbook= inurl:guestbook.php? inurl:guestbook.php?act= inurl:guestbook.php?action= inurl:guestbook.php?action=add inurl:guestbook.php?cmd= inurl:guestbook.php?do= inurl:guestbook.php?form= inurl:guestbook.php?id= inurl:guestbook.php?inputmask= inurl:guestbook.php?lang= inurl:guestbook.php?mode= inurl:guestbook.php?new_message= inurl:guestbook.php?new_message=1 inurl:guestbook.php?page= inurl:guestbook.php?pg= inurl:guestbook.php?sn= inurl:guestbook.pl inurl:guestbook.pl?action= inurl:guestbook.pl?action=add inurl:guestbook.pl?action=form inurl:guestbook/add.html inurl:guestbook/comment.php?gb_id= inurl:guestbook/index.asp inurl:guestbook/php/entry.php inurl:guestbook/post/ inurl:guestbook2.asp?l= inurl:guestbook_add.php inurl:guestbook_new.php inurl:guestbook_sign.php inurl:guestbook_sign.php?oscsid= inurl:guestbookadd.asp inurl:guestbookvip.php inurl:guestbookvip.php?memid= inurl:guestbox.php?anfangsposition= inurl:guestform.php inurl:guestform.php?gbid=cdg inurl:guestsaisie.php inurl:honey.cgi inurl:honey.cgi?mode= inurl:ibbs.cgi inurl:ibbs.cgi?H=tp&no=0 inurl:ibbs.cgi?page= inurl:imgboard.cgi inurl:index.php3?add=1 inurl:index.php?gbname= inurl:index.php?id=...&item_id= inurl:index.php?p=guestbook!}<=NL&action=add inurl:index.php?page=guestbook_read inurl:joyful. inurl:joyful.cgi inurl:joyfulyy.cgi inurl:jsguest.cgi?action=new inurl:kakikomitai.cgi? inurl:kb_pc.cgi inurl:kboard.cgi inurl:kbpost.htm inurl:kerobbs.cgi inurl:kerobbs.cgi?page= inurl:kiboujoken.htm inurl:kniha.php inurl:krbbs.cgi inurl:ksgosci.php inurl:ksiega.php inurl:ktaiufo.cgi inurl:light.cgi inurl:light.cgi?page= inurl:mboard.php inurl:messageboard.html inurl:messages.php?1=1&agbook=addentry inurl:mezase.cgi inurl:minibbs.cgi inurl:minibbs.cgi?log= inurl:mkakikomitai.cgi inurl:msboard.cgi?id= inurl:msgboard.mv?parm_func= inurl:msgbook.cgi?id= inurl:new.php?forum_id= inurl:new_message.asp inurl:newdefault.asp inurl:newdefault.asp?DeptID= inurl:news.php?subaction= inurl:patio.cgi inurl:petit.cgi inurl:phello.cgi inurl:post.asp inurl:post.htm inurl:post.html inurl:post_comment.php?u= inurl:post_comment.php?w= inurl:postcards.php?image_id= inurl:print_sec_img.php inurl:purybbs.cgi inurl:purybbs.cgi?page= inurl:rabook.php inurl:rbook.cgi inurl:rbook.cgi?page= inurl:read.cgi/gboy/ inurl:read.cgi?board= inurl:reg.php?pid= inurl:resbbs.cgi inurl:schedule.cgi?form= inurl:sendmessage.asp inurl:showguestbook.php?linkid= inurl:sicharou.cgi inurl:sign.asp inurl:sign.asp?PagePosition= inurl:sign.html inurl:sign.php inurl:sign_guestbook.asp inurl:sign_guestbook_form.asp inurl:signbook.cfm inurl:signerbok.asp inurl:signgb.php inurl:signguestbook.asp inurl:signguestbook.html inurl:signguestbook.php inurl:signup.php inurl:simbbs.cgi inurl:skriv.html inurl:skriv_i_gaestebogen.html inurl:spguest.cgi?id= inurl:stlfbbs.cgi inurl:submit.asp inurl:submit.html inurl:submit.php inurl:submit.pl inurl:suggest.php?action= inurl:sunbbs.cgi?mode= inurl:tnote.cgi inurl:treebbs.cgi inurl:ttboard.cgi?act= inurl:upb.cgi inurl:upbbs.cgi inurl:user.php inurl:view.php?id=9&action=new inurl:write.asp inurl:write.php?uid= inurl:wwwboard.cgi inurl:yapgb.php?action= inurl:yuu-fantasy.cgi inurl:yybbs.cgi inurl:zboard.php?id= inurl:0815guestbooks.de inurl:100pro-gaestebuch.de/gbserver/ inurl:12book.de/gaestebuch inurl:Gb/Sign_Guestbook.asp inurl:Gbook/Sign_Guestbook.asp inurl:GuestBook/gst_sign.dbm inurl:Guestbook/Sign_Guestbook.asp inurl:Guestbook_eintrag.htm inurl:Sign_Guestbook.asp inurl:addbook.cgi inurl:addentry inurl:addguest inurl:addguest.html inurl:addguest.php inurl:addguestGB2.cgi inurl:addmessage inurl:apeboard inurl:bbs inurl:burning inurl:epad inurl:feedbook.de inurl:flash_gb9.php?id= inurl:flf-book.de inurl:free-guestbooks.de/gbserver/ inurl:freeguestbook.de/addbook.cgi? inurl:freeguestbook.de/readbook.cgi? inurl:freeguestbook4you.de gaestebuch-umsonst.ws inurl:gaestebuch. inurl:gaestebuch.007box.de inurl:gaestebuch.php inurl:gaestebuch.php? inurl:gaestebuch/neu.php inurl:gaestebuch4u.de inurl:gaestebuchking.de inurl:gastbuch.php inurl:gastbuch.php3 inurl:gastbuch.php?id= inurl:gb.cgi inurl:gb.php?user= inurl:gb.webmart.de inurl:gb.webmart.de/gb.cfm?id= inurl:gb/addguest.html inurl:gb/guest.pl inurl:gb/sign.html inurl:gb2003.de inurl:gb_eintrag.php? inurl:gbook.cgi inurl:gbook.tv inurl:gbook/addguest.html inurl:gbook/guest.pl inurl:gbook/sign.html inurl:gbserver.de inurl:gratis-gaestebuch.de inurl:gratis-gaestebuch.eu/firebook.cgi? inurl:gst_sign.dbm inurl:guessbook/sign.html inurl:guest. inurl:guest.pl inurl:guest_book/guest.pl inurl:guestb inurl:guestbook inurl:guestbook-free.com/books inurl:guestbook-free.com/books2 inurl:guestbook.cgi inurl:guestbook.onetwomax.de inurl:guestbook/a=sign inurl:guestbook/addguest.html inurl:guestbook/guest.pl inurl:guestbook/sign.html inurl:guestbook24.com/gastbuch.php inurl:guestbook24.eu inurl:guestbook4you.de/gb.php? inurl:iboox.com inurl:multiguestbook.com inurl:my-gaestebuch.de inurl:netguestbook.com inurl:new.html#sign inurl:power-guestbook.de inurl:regsign.cgi inurl:sign.fcgi inurl:sign.html inurl:sign_book.cgi inurl:wgbsign.html site:com “powered by BlogEngine.NET” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” "post a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” "post a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” "post a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” "post a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” "Leave a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” "Leave a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” "Leave a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” "Leave a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” "add a comment" -"comments closed" -"you must be logged in" site:org “powered by BlogEngine.NET” "add a comment" -"comments closed" -"you must be logged in" site:edu “powered by BlogEngine.NET” "add a comment" -"comments closed" -"you must be logged in" site:gov “powered by BlogEngine.NET” "add a comment" -"comments closed" -"you must be logged in" site:com “powered by BlogEngine.NET” "post a comment" site:edu “powered by BlogEngine.NET” "post a comment" site:org “powered by BlogEngine.NET” "post a comment" site:gov “powered by BlogEngine.NET” "post a comment" site:com “powered by BlogEngine.NET” "Leave a comment" site:org “powered by BlogEngine.NET” "Leave a comment" site:edu “powered by BlogEngine.NET” "Leave a comment" site:gov “powered by BlogEngine.NET” "Leave a comment" site:com “powered by BlogEngine.NET” "add a comment" site:org “powered by BlogEngine.NET” "add a comment" site:edu “powered by BlogEngine.NET” "add a comment" site:gov “powered by BlogEngine.NET” "add a comment" site:com “powered by BlogEngine.NET” inurl:blog "post a comment" site:edu “powered by BlogEngine.NET” inurl:blog "post a comment" site:org “powered by BlogEngine.NET” inurl:blog "post a comment" site:gov “powered by BlogEngine.NET” inurl:blog "post a comment" site:com “powered by BlogEngine.NET” inurl:blog "Leave a comment" site:org “powered by BlogEngine.NET” inurl:blog "Leave a comment" site:edu “powered by BlogEngine.NET” inurl:blog "Leave a comment" site:gov “powered by BlogEngine.NET” inurl:blog "Leave a comment" site:com “powered by BlogEngine.NET” inurl:blog "add a comment" site:org “powered by BlogEngine.NET” inurl:blog "add a comment" site:edu “powered by BlogEngine.NET” inurl:blog "add a comment" site:gov “powered by BlogEngine.NET” inurl:blog "add a comment" site:edu "powered by BlogEngine.NET" site:com "powered by BlogEngine.NET" site:gov "powered by BlogEngine.NET" site:org "powered by BlogEngine.NET" “powered by BlogEngine.NET” site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” "post a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” "post a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” "post a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” "post a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” "add a comment" -"comments closed" -"you must be logged in" site:org “Powered by BlogEngine.NET 1.4.5.0” "add a comment" -"comments closed" -"you must be logged in" site:edu “Powered by BlogEngine.NET 1.4.5.0” "add a comment" -"comments closed" -"you must be logged in" site:gov “Powered by BlogEngine.NET 1.4.5.0” "add a comment" -"comments closed" -"you must be logged in" site:com “Powered by BlogEngine.NET 1.4.5.0” "post a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” "post a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” "post a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” "post a comment" site:com “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” "Leave a comment" site:com “Powered by BlogEngine.NET 1.4.5.0” "add a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” "add a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” "add a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” "add a comment" site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "post a comment" site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "Leave a comment" site:com “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" site:org “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" site:edu “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" site:gov “Powered by BlogEngine.NET 1.4.5.0” inurl:blog "add a comment" site:edu "Powered by BlogEngine.NET 1.4.5.0" site:com "Powered by BlogEngine.NET 1.4.5.0" site:gov "Powered by BlogEngine.NET 1.4.5.0" site:org "Powered by BlogEngine.NET 1.4.5.0" “Powered by BlogEngine.NET 1.4.5.0” site:com “powered by expressionengine” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” inurl:blog "post a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” inurl:blog "Leave a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” inurl:blog "add a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” "post a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” "post a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” "post a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” "post a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” "Leave a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” "Leave a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” "Leave a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” "Leave a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” "add a comment" -"comments closed" -"you must be logged in" site:org “powered by expressionengine” "add a comment" -"comments closed" -"you must be logged in" site:edu “powered by expressionengine” "add a comment" -"comments closed" -"you must be logged in" site:gov “powered by expressionengine” "add a comment" -"comments closed" -"you must be logged in" site:com “powered by expressionengine” "post a comment" site:edu “powered by expressionengine” "post a comment" site:org “powered by expressionengine” "post a comment" site:gov “powered by expressionengine” "post a comment" site:com “powered by expressionengine” "Leave a comment" site:org “powered by expressionengine” "Leave a comment" site:edu “powered by expressionengine” "Leave a comment" site:gov “powered by expressionengine” "Leave a comment" site:com “powered by expressionengine” "add a comment" site:org “powered by expressionengine” "add a comment" site:edu “powered by expressionengine” "add a comment" site:gov “powered by expressionengine” "add a comment" site:com “powered by expressionengine” inurl:blog "post a comment" site:edu “powered by expressionengine” inurl:blog "post a comment" site:org “powered by expressionengine” inurl:blog "post a comment" site:gov “powered by expressionengine” inurl:blog "post a comment" site:com “powered by expressionengine” inurl:blog "Leave a comment" site:org “powered by expressionengine” inurl:blog "Leave a comment" site:edu “powered by expressionengine” inurl:blog "Leave a comment" site:gov “powered by expressionengine” inurl:blog "Leave a comment" site:com “powered by expressionengine” inurl:blog "add a comment" site:org “powered by expressionengine” inurl:blog "add a comment" site:edu “powered by expressionengine” inurl:blog "add a comment" site:gov “powered by expressionengine” inurl:blog "add a comment" site:edu "powered by expressionengine" site:com "powered by expressionengine" site:gov "powered by expressionengine" site:org "powered by expressionengine" “powered by expressionengine” inurl:"title=Dyskusja_u%C5%BCytkownika:" inurl:"/wiki/index.php" "Theme: Strasa - Mono" wiki "you only need to fill in when" categorywiki "This is an alphabetical list of pages you can read on this server." "Login/Register" inurl:"title=%EC%82%AC%EC%9A%A9%EC%9E%90%ED%86%A0%EB%A1%A0:" inurl:"title=U%C5%BEivatel_diskuse:" "Theme: Fluid Index by Your Index" inurl:"title=Discussion_utilisateur:" "Welcome to MoinMoin. You will find here the help pages for the wiki system itself." "Wiki:About" inurl:"Speciaal:Aanmelden" wiki inurl:"title=%D0%9E%D0%B1%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5_%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B0:" inurl:"CategoryWiki" inurl:"Especial:Entrar" wiki inurl:"title=Discussioni_utente:" inurl:"/mediawiki/index.php" "The wiki, blog, calendar, and mailing list" inurl:"Istimewa:Masuk_log" wiki inurl:"title=%E4%BD%BF%E7%94%A8%E8%80%85%E8%A8%8E%E8%AB%96:" inurl:"title=%E0%B8%84%E0%B8%B8%E0%B8%A2%E0%B9%80%E0%B8%81%E0%B8%B5%E0%B9%88%E0%B8%A2%E0%B8%A7%E0%B8%81%E0%B8%B1%E0%B8%9A%E0%B8%9C%E0%B8%B9%E0%B9%89%E0%B9%83%E0%B8%8A%E0%B9%89:" inurl:"title=Usu%C3%A1rio_Discuss%C3%A3o:" inurl:"Speciale:Entra" wiki "Powered by WikkaWiki" inurl:"tiki-register.php" "dokuwiki.txt" "Tema: Fivealive - Lemon" inurl:"%E7%89%B9%E5%88%A5:%E3%83%AD%E3%82%B0%E3%82%A4%E3%83%B3" wiki Categories PageIndex Recent Changes Recently Commented "Login/Register" "" "" "Powered by Tikiwiki CMS/Groupware" inurl:"title=Utilizador_Discuss%C3%A3o:" "Tema: Fivealive" "This page was last modified on" "wiki" inurl:"Specjalna:Zaloguj" wiki "Thanks for installing Wikka! This wiki runs on version" inurl:"http://wikka." "Theme: Coelesce" "Powered By MediaWiki" inurl:wiki "Theme: Fivealive - Kiwi" inurl:"Utente:" wiki "recentchanges" "findpage" "helpcontents" inurl:"Sp%C3%A9cial:Connexion" wiki inurl:"Pengguna:" wiki "MoinMoin Powered" "Python Powered" inurl:"title=%E0%B4%89%E0%B4%AA%E0%B4%AF%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%A4%E0%B4%BE%E0%B4%B5%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%B8%E0%B4%82%E0%B4%B5%E0%B4%BE%E0%B4%A6%E0%B4%82:" inurl:"U%C5%BCytkownik:" wiki inurl:"Speciel:Log_p%C3%A5" wiki "Powered By MediaWiki" "Powered By MediaWiki" inurl:wiki "what links here" "related changes" "special pages" inurl:Special:Whatlinkshere "There is currently no text in this page, you can search..." "Powered by wikkawiki" inurl:wiki/RecentlyCommented "pageindex" "recentchanges" "recentlycommented" "you only need to fill in when" categorywiki "MoinMoin Powered" "MoinMoin Powered" "Python Powered" "recentchanges" "findpage" "helpcontents" "powered by tikiwiki" "powered by tikiwiki" inurl:tiki-index.php Powered by TikiWiki CMS/Groupware v2 inurl:tiki-register.php

Hacking with Google

Alexander Antipov

The Google search engine (www.google.com) provides many search options. All of these features are an invaluable search tool for a first-time Internet user and at the same time an even more powerful weapon of invasion and destruction in the hands of people with evil intentions, including not only hackers, but also non-computer criminals and even terrorists.
(9475 views in 1 week)


Denis Batrankov
denisNOSPAMixi.ru

Attention:This article is not a guide to action. This article is written for you, WEB server administrators, so that you will lose the false feeling that you are safe, and you will finally understand the insidiousness of this method of obtaining information and set about protecting your site.

Introduction

For example, I found 1670 pages in 0.14 seconds!

2. Let's enter another line, for example:

inurl:"auth_user_file.txt"

a little less, but this is already enough for free download and for guessing passwords (using the same John The Ripper). Below I will give some more examples.

So, you need to realize that the Google search engine has visited most of the Internet sites and cached the information contained on them. This cached information allows you to get information about the site and the content of the site without a direct connection to the site, just digging into the information that is stored internally by Google. Moreover, if the information on the site is no longer available, then the information in the cache may still be preserved. All it takes for this method is to know some Google keywords. This technique is called Google Hacking.

For the first time, information about Google Hacking appeared on the Bugtruck mailing list 3 years ago. In 2001, this topic was raised by a French student. Here is a link to this letter http://www.cotse.com/mailing-lists/bugtraq/2001/Nov/0129.html . It gives the first examples of such requests:

1) Index of /admin
2) Index of /password
3) Index of /mail
4) Index of / +banques +filetype:xls (for france...)
5) Index of / +passwd
6) Index of/password.txt

This topic made a lot of noise in the English-reading part of the Internet quite recently: after an article by Johnny Long published on May 7, 2004. For a more complete study of Google Hacking, I advise you to go to the site of this author http://johnny.ihackstuff.com. In this article, I just want to bring you up to date.

Who can use it:
- Journalists, spies and all those people who like to stick their nose in other people's business can use this to search for compromising evidence.
- Hackers looking for suitable targets for hacking.

How Google works.

To continue the conversation, let me remind you of some of the keywords used in Google queries.

Search using the + sign

Google excludes unimportant, in its opinion, words from the search. For example, interrogative words, prepositions and articles in English: for example are, of, where. In Russian, Google seems to consider all words important. If the word is excluded from the search, then Google writes about it. In order for Google to start searching for pages with these words, you need to add a + sign before them without a space before the word. For example:

ace + of base

Search by sign -

If Google finds a large number of pages from which you want to exclude pages with certain topics, then you can force Google to look only for pages that do not contain certain words. To do this, you need to indicate these words by putting a sign in front of each - without a space before the word. For example:

fishing - vodka

Search with the ~ sign

You may want to look up not only the specified word, but also its synonyms. To do this, precede the word with the symbol ~.

Finding an exact phrase using double quotes

Google searches on each page for all occurrences of the words that you wrote in the query string, and it does not care about the relative position of the words, the main thing is that all the specified words are on the page at the same time (this is the default action). To find the exact phrase, you need to put it in quotation marks. For example:

"bookend"

To have at least one of the specified words, you must specify the logical operation explicitly: OR. For example:

book safety OR protection

In addition, you can use the * sign in the search string to denote any word and. to represent any character.

Finding words with additional operators

There are search operators that are specified in the search string in the format:

operator:search_term

The spaces next to the colon are not needed. If you insert a space after a colon, you will see an error message, and before it, Google will use them as a normal search string.
There are groups of additional search operators: languages ​​- indicate in which language you want to see the result, date - limit the results for the past three, six or 12 months, occurrences - indicate where in the document you need to look for the string: everywhere, in the title, in the URL, domains - search the specified site or vice versa exclude it from the search, safe search - block sites containing the specified type of information and remove them from the search results pages.
However, some operators do not need an additional parameter, for example, the query " cache:www.google.com" can be called as a full search string, and some keywords, on the contrary, require a search word, for example " site:www.google.com help". In the light of our topic, let's look at the following operators:

Operator

Description

Requires an additional parameter?

search only for the site specified in search_term

search only in documents with type search_term

find pages containing search_term in title

find pages containing all the words search_term in the title

find pages containing the word search_term in their address

find pages containing all the words search_term in their address

Operator site: limits the search only on the specified site, and you can specify not only the domain name, but also the IP address. For example, enter:

Operator filetype: restricts searches to files of a certain type. For example:

As of the date of this article, Google can search within 13 different file formats:

  • Adobe Portable Document Format (pdf)
  • Adobe PostScript (ps)
  • Lotus 1-2-3 (wk1, wk2, wk3, wk4, wk5, wki, wks, wku)
  • Lotus Word Pro (lwp)
  • MacWrite(mw)
  • Microsoft Excel (xls)
  • Microsoft PowerPoint (ppt)
  • Microsoft Word (doc)
  • Microsoft Works (wks, wps, wdb)
  • Microsoft Write (wri)
  • Rich Text Format (rtf)
  • Shockwave Flash (swf)
  • Text (ans, txt)

Operator link: shows all pages that point to the specified page.
It must always be interesting to see how many places on the Internet know about you. We try:

Operator cache: shows the Google cached version of the site as it looked when Google last visited the page. We take any frequently changing site and look:

Operator title: searches for the specified word in the page title. Operator allintitle: is an extension - it looks for all the specified few words in the page title. Compare:

intitle:flight to mars
intitle:flight intitle:on intitle:mars
allintitle:flight to mars

Operator inurl: causes Google to show all pages containing the specified string in the URL. allinurl: searches for all words in a URL. For example:

allinurl:acid_stat_alerts.php

This command is especially useful for those who don't have SNORT - at least they can see how it works on a real system.

Google Hacking Methods

So, we found out that, using a combination of the above operators and keywords, anyone can collect the necessary information and search for vulnerabilities. These techniques are often referred to as Google Hacking.

site `s map

You can use the site: statement to see all the links that Google has found on the site. Usually, pages that are dynamically created by scripts are not indexed using parameters, so some sites use ISAPI filters so that links are not in the form /article.asp?num=10&dst=5, but with slashes /article/abc/num/10/dst/5. This is done to ensure that the site is generally indexed by search engines.

Let's try:

site:www.whitehouse.gov whitehouse

Google thinks that every page on a site contains the word whitehouse. This is what we use to get all the pages.
There is also a simplified version:

site:whitehouse.gov

And the best part is that the comrades from whitehouse.gov didn't even know that we looked at the structure of their site and even looked into the cached pages that Google downloaded for itself. This can be used to study the structure of sites and view content without being noticed for the time being.

Listing files in directories

WEB servers can display server directory listings instead of regular HTML pages. This is usually done to force users to select and download specific files. However, in many cases administrators have no intention of showing the contents of a directory. This is due to a misconfiguration of the server or the absence of a master page in the directory. As a result, the hacker has a chance to find something interesting in the directory and use it for his own purposes. To find all such pages, it is enough to notice that they all contain the words: index of in their title. But since the index of words contain not only such pages, we need to refine the query and take into account the keywords on the page itself, so queries like:

intitle:index.of parent directory
intitle:index.of name size

Since most directory listings are intentional, you may have a hard time finding misplaced listings the first time. But at least you will be able to use the listings to determine the WEB server version, as described below.

Getting the WEB server version.

Knowing the WEB server version is always helpful before starting any hacker attack. Again thanks to Google it is possible to get this information without connecting to a server. If you carefully look at the directory listing, you can see that the name of the WEB server and its version are displayed there.

Apache1.3.29 - ProXad Server at trf296.free.fr Port 80

An experienced administrator can change this information, but, as a rule, it is true. Thus, to get this information, it is enough to send a request:

intitle:index.of server.at

To get information for a specific server, we refine the request:

intitle:index.of server.at site:ibm.com

Or vice versa, we are looking for servers running on a specific version of the server:

intitle:index.of Apache/2.0.40 Server at

This technique can be used by a hacker to find a victim. If, for example, he has an exploit for a certain version of the WEB server, then he can find it and try the existing exploit.

You can also get the server version by looking at the pages that are installed by default when installing a fresh version of the WEB server. For example, to see the Apache 1.2.6 test page, just type

intitle:Test.Page.for.Apache it.worked!

Moreover, some operating systems immediately install and launch the WEB server during installation. However, some users are not even aware of this. Naturally, if you see that someone has not deleted the default page, then it is logical to assume that the computer has not been subjected to any configuration at all and is probably vulnerable to attacks.

Try looking for IIS 5.0 pages

allintitle:Welcome to Windows 2000 Internet Services

In the case of IIS, you can determine not only the version of the server, but also the version of Windows and the Service Pack.

Another way to determine the version of the WEB server is to look for manuals (help pages) and examples that can be installed on the site by default. Hackers have found quite a few ways to use these components to gain privileged access to the site. That is why you need to remove these components on the production site. Not to mention the fact that by the presence of these components you can get information about the type of server and its version. For example, let's find the apache manual:

inurl:manual apache directives modules

Using Google as a CGI scanner.

CGI scanner or WEB scanner is a utility for searching for vulnerable scripts and programs on the victim's server. These utilities need to know what to look for, for this they have a whole list of vulnerable files, for example:

/cgi-bin/cgiemail/uargg.txt
/random_banner/index.cgi
/random_banner/index.cgi
/cgi-bin/mailview.cgi
/cgi-bin/maillist.cgi
/cgi-bin/userreg.cgi

/iissamples/ISSamples/SQLQHit.asp
/SiteServer/admin/findvserver.asp
/scripts/cphost.dll
/cgi-bin/finger.cgi

We can find each of these files using Google, additionally using the words index of or inurl with the file name in the search bar: we can find sites with vulnerable scripts, for example:

allinurl:/random_banner/index.cgi

With additional knowledge, a hacker could exploit a script vulnerability and use the vulnerability to force the script to serve any file stored on the server. For example a password file.

How to protect yourself from being hacked through Google.

1. Do not upload important data to the WEB server.

Even if you posted the data temporarily, you can forget about it or someone will have time to find and take this data before you erase it. Don't do it. There are many other ways to transfer data that protect it from theft.

2. Check your site.

Use the described methods to research your site. Check your site periodically for new methods that appear on the site http://johnny.ihackstuff.com. Remember that if you want to automate your actions, you need to get special permission from Google. If you carefully read http://www.google.com/terms_of_service.html, then you will see the phrase: You may not send automated queries of any sort to Google's system without express permission in advance from Google.

3. You may not need Google to index your site or part of it.

Google allows you to remove a link to your site or part of it from its database, as well as remove pages from the cache. In addition, you can prohibit the search for images on your site, prohibit the display of short fragments of pages in search results All the possibilities for deleting a site are described on the page http://www.google.com/remove.html. To do this, you must confirm that you are really the owner of this site or insert tags on the page or

4. Use robots.txt

It is known that search engines look into the robots.txt file at the root of the site and do not index those parts that are marked with the word Disallow. You can use this to prevent part of the site from being indexed. For example, to avoid indexing the entire site, create a robots.txt file containing two lines:

User-agent: *
disallow: /

What else happens

So that life does not seem like honey to you, I will say in the end that there are sites that follow those people who, using the above methods, look for holes in scripts and WEB servers. An example of such a page is

Application.

A little sweet. Try one of the following for yourself:

1. #mysql dump filetype:sql - search for mySQL database dumps
2. Host Vulnerability Summary Report - will show you what vulnerabilities other people have found
3. phpMyAdmin running on inurl:main.php - this will force close the control via phpmyadmin panel
4. Not for distribution confidential
5. Request Details Control Tree Server Variables
6. Running in child mode
7. This report was generated by WebLog
8. intitle:index.of cgiirc.config
9. filetype:conf inurl:firewall -intitle:cvs - maybe someone needs firewall configuration files? :)
10. intitle:index.of finances.xls - hmm....
11. intitle:Index of dbconvert.exe chats - icq chat logs
12. intext:Tobias Oetiker traffic analysis
13. intitle:Usage Statistics for Generated by Webalizer
14. intitle:statistics of advanced web statistics
15. intitle:index.of ws_ftp.ini - ws ftp config
16. inurl:ipsec.secrets holds shared secrets - secret key - good find
17. inurl:main.php Welcome to phpMyAdmin
18. inurl:server-info Apache Server Information
19. site:edu admin grades
20. ORA-00921: unexpected end of SQL command - get paths
21. intitle:index.of trillian.ini
22. intitle:Index of pwd.db
23. intitle:index.of people.lst
24. intitle:index.of master.passwd
25.inurl:passlist.txt
26. intitle:Index of .mysql_history
27. intitle:index of intext:globals.inc
28. intitle:index.of administrators.pwd
29. intitle:Index.of etc shadow
30. intitle:index.of secring.pgp
31. inurl:config.php dbuname dbpass
32. inurl:perform filetype:ini

  • "Hacking mit Google"
  • Training center "Informzashchita" http://www.itsecurity.ru - a leading specialized center in the field of information security training (License of the Moscow Committee of Education No. 015470, State accreditation No. 004251). The only authorized training center of Internet Security Systems and Clearswift in Russia and CIS countries. Microsoft authorized training center (Security specialization). Training programs are coordinated with the State Technical Commission of Russia, FSB (FAPSI). Certificates of training and state documents on advanced training.

    SoftKey is a unique service for buyers, developers, dealers and affiliate partners. In addition, this is one of the best online software stores in Russia, Ukraine, Kazakhstan, which offers customers a wide range, many payment methods, prompt (often instant) order processing, tracking the order fulfillment process in the personal section, various discounts from the store and manufacturers ON.

    To obtain a reliable result, the analysis should be carried out at least 2 weeks after the last dose of antibiotics and (or) antibacterial drugs.

    • scraping from urethra recommended to take 2 hours after the last urination, from pharynx and nasopharynx - on an empty stomach (4-5 hours after the last meal, while it is necessary to exclude brushing your teeth and rinsing your mouth), no special preparation is required for other loci.
    • Urine. The study is subject to the average portion of freely released urine, in the amount of 3-5 ml in a sterile plastic disposable container (the container can be obtained at the reception) after a thorough toilet of the external genitalia without the use of antiseptics. Delivery time to the laboratory at room temperature - 1-2 hours, at a temperature of 2-8 ° C - 5-6 hours.
    • Sperm for bacteriological examination is collected in a sterile plastic disposable container with a wide mouth by masturbation (the container can be obtained from the reception). Delivery time of the material to the laboratory at room temperature within 1-2 hours.
    • Phlegm it is recommended to collect in the morning, on an empty stomach after the sanitation of the oral cavity, in a sterile plastic dish. Delivery time of the material to the laboratory at room temperature within 1-2 hours, at a temperature of 2-8°C - 5-6 hours.
    • Fence secretion of the prostate carried out by a urologist, after a preliminary prostate massage (this manipulation is performed only at the Central Office). Before taking the secretion of the prostate gland, sexual abstinence for at least 2 days is recommended.
    • Bacteriological research breast milk . Breast milk sampling is carried out only before feeding the child or two hours after breastfeeding. The examined patient washes the left and right mammary gland with warm water and soap and wipes dry with a clean towel. The surface of the nipples and fingertips are treated with a cotton swab moderately moistened with 70% ethyl alcohol. The first portion of breast milk, approximately 0.5 ml, is discarded. Then, without touching the nipple with her hands, the woman expresses 0.5 - 1 ml of milk from each gland into a separate sterile container (containers can be obtained at the reception). Delivery time to the laboratory at room temperature - 1-2 hours, at a temperature of 2-8°C - 5-6 hours.
    • Fence with novial fluid for bacteriological examination, it is carried out by a doctor in sterile plastic dishes (the container can be obtained at the reception). In the laboratory, this procedure is not performed. Delivery time of the material to the laboratory at room temperature within 1-2 hours, at a temperature of 2-8°C - 5-6 hours.
    • Fence wound discharge for bacteriological examination is carried out by a doctor, in a disposable container with Ames medium (the container can be obtained at the reception). Delivery time of the material to the laboratory at room temperature within 6 hours, at a temperature of 2-8°C - up to 2 days.
    • Bile for bacteriological examination, it is collected during probing, separately, in portions A, B and C into three sterile tubes, or during the operation with a syringe into one tube, observing the rules of asepsis (this procedure is not performed in the laboratory). Delivery time of the material to the laboratory at room temperature within 1-2 hours, at a temperature of 2-8°C - 5-6 hours.
    Similar articles

    2022 my-cross.ru. Cats and dogs. Little animals. Health. Medicine.