Search Results
List of Apache HTTPD Versions and Module API Versions.
Apache Directives for .htaccess and Loaded Modules for DreamHost Web Hosting Apache HTTPD and Module API Versions ·301 Redirect with mod_rewrite or
Apache HTTPD and Module API VersionsAdvanced .htaccess Tricks for Securing Sites » ·Htaccess SetEnvIf and SetEnvIfNoCase Examples
Nov 22, 2008 Chmod, Umask, Stat, Fileperms, and File PermissionsApache HTTPD and Module API Versions » .htaccess Plugin Blocks Spam, Hackers, www.askapache.com/;htaccess-plugin-blocks-spam-hackers-and-password-protects-blog.html
Apache Modules An independent part of the Apache HTTPD program Much of . Apache HTTPD and Module API Versions List of Apache HTTPD Versions and
HTTP Compression can be enabled in Apache using the mod_deflate module. . Apache HTTPD and Module API Versions ·Speed up your site with Caching and
PHP htaccess tips and tricks ·Manipulating HTTP Headers with htaccess ·Apache HTTPD and Module API Versions ·Commonly Used htaccess Code
Before we look at how to implement SSI, and dig into the Apache module that makes .. Apache HTTPD and Module API Versions ·PHP htaccess tips and tricks
forcing %s to get passed through to next API URI-to-filename handler This module was originally written in April 1996 and gifted exclusively to the
Apache HTTPD and Module API Versions ·Apache Environment Variables CGI Script ·Rewrite underscores to hyphens for SEO URL ·Speed Tips:Turn Off ETags
Debug apache log files from php ·Advanced WordPress 404.php ·Apache HTTPD and Module API Versions ·Control htaccess Basic Authentication with PHP and
Changing Any Password On XP ·Debug apache log files from php ·Delete extra wordpress files Post-Install ·Apache HTTPD and Module API Versions
Speed Tips:Remove Last-Modified Header ·Apache HTTPD and Module API Versions ·Speed Tips:Add Future Expires Headers ·PHP htaccess tips and tricks www.askapache.com/;sniff-http-to-debug-apache-htaccess-and-httpdconf.html
Apache HTTPD and Module API Versions ·PHP htaccess tips and tricks ·Htaccess SEO Trends by Google ·htaccess HTTPS / SSL Tips, Tricks, and Hacks
A better way to use PDF files online ·Apache HTTPD and Module API Versions ·PHP and AJAX shell console ·Abbr and Acronym examples ·SEO in WordPress
This code takes advantage of the incredible mod_headers apache module to actually ADD .. Variables, Custom Headers ·Apache HTTPD and Module API Versions
Capability to your Site with CSS ·Top Javascript Code Snippets for 2007 ·grilled cheese jam session now online ·Apache HTTPD and Module API Versions
2009-07-23T22:55:43+00:00 monthly 0.2 http://www.askapache.com/htaccess/apache-httpd-and-module-api-versions.html 2009-07-22T11:57:49+00:00 monthly 0.2
Apache HTTPD and Module API Versions ·Apache HTTPD Google CSE ·mod_rewrite Fix for Caching Updated Files ·Links to htaccess tutorials and articles
Fix for Caching Updated Files ·Speed Tips:Remove Last-Modified Header ·Apache HTTPD and Module API Versions ·Speed Tips:Add Future Expires Headers
In 2003, Nick Kew released a new module that complements Apache's .. mod_rewrite Fix for Caching Updated Files ·Apache HTTPD and Module API Versions
Current Version of Apache (Down to the API Version);List of ALL Modules currently enabled by Apache (Such as Mod_Rewrite);List of ALL Directives enabled
the module should assume that there is no message body to read. . Apache HTTPD Google CSE ·Apache HTTPD and Module API Versions
On systems that have file change notification, this module can be This is a deficiency in the Apache API that will hopefully be solved some day.
It can either be used as a loadable kernel module or incorporated into your loops, API calls, switches, s, constants and sings, an ability to attach to
Now I know at least one thing for sure:The module “1022 BAD Content Type Denies any I get server api:CGI. Anyway, This will not install, telling me my
This is used by lower modules to identify the user with a character string. .. So how we can read these variable from request with java api.
This documentation describes the DbgHelp API and the ImageHlp API and also debugging It can access any symbol or variable from a module that has PDB
This 3rd party module provides support for the FastCGI protocol. .. I also tried commenting out the if statement regarding the PHP API, so that only the
Modules that are compiled into the Apache httpd binary are called static modules function calls and other significant parts of API change in such a way
What radio station is playing? Realy nice!
Here is a list of the modules this plugin (version 4.7 unreleased) will For each and every module that is detected, this plugin can then detect ALL of
I am almost ready to publish the final tutorial on using ssh tunnels from a truecrypt partition on a Windows machine. Of course I choose to go way overboard in my research and the tutorial is full of some pretty awesome windows tricks.. I will come back to this post soon and post all the other advanced tools I use for debugging windows, for now though you MUST know how to debug the kernel and use these basic debugging tools.
Tags: Advanced, ASP, Boot, console, debugging, HowTo, Logs, Networking, Performance, Port, Windows XP
Posted in Hacking, Security, Windows | Published on |No Comments »
#### No https except to wp-admin -
# If the request is empty ( implies fopen or normal file access by a php script )
RewriteCond %{THE_REQUEST} ^$ [OR]
# OR if the request if for wp-admin or wp-login.php
RewriteCond %{REQUEST_URI} ^/(wp-admin|wp-login\.php).*$ [NC,OR]
# OR if the Referer is https
RewriteCond %{HTTP_REFERER} ^https://www.askapache.com/.*$ [NC]
# THEN skip the following rule, basically all this does is force https or badhost to be redirected
# BUT because of the above 3 rewritecond's, this won't break poorly written admin scripts
RewriteRule .* - [S=1]
RewriteCond %{HTTPS} =on [OR]
RewriteCond %{HTTP_HOST} !^www\.askapache\.com$ [NC]
RewriteRule .* http://www.askapache.com%{REQUEST_URI} [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(wp-admin/.*|wp-login\.php.*)\ HTTP/ [NC]
RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Tags: AddHandler, Apache, Backups, Block IP, Cache-Control, cheatsheets, developers, errordocument, etag, htaccess tricks, http cookie, indexes, Mod_Security, open source, password protection, real world, rewritecond, rewriterule, Source Code
Posted in Apache, Apache Modules, Cache, DreamHost, Featured, Hacking, Htaccess, Linux Unix BSD, Mod_Rewrite, SEO, Security, Server Administration, Web Hosting, Webmaster | Published on 04/17/2010 |4 Comments »
The story behind this plugin is sorta wack, but in a good way :). While doing tons of security research on permissions, authorization, access, etc.. for the Password Protection plugin (still being worked on), I needed to have unheard of debugging capabilities while working on the plugin on the various websites, webhosts, and test servers that I use to test in different environments. So I hacked together a bunch of php code that helped me debug, actually I pretty much went overkill and tried to get as much debugging info as programmatically possible, and it ended up being so much code that I took it out of my Password Protection code and made it its own plugin.
Tags: admin, Ajax, Apache, Apache Modules, askapache, authorization, Cache, chmod, Cookies, debugging, error log, fifo, File Permissions, GET, Htaccess, Login, Nice, password, password protection, PHP, php.ini, phpinfo, Port, post, ram, Rewrite Tricks, Security, server, servers, Socket, SSI, stat, umask, Username, WordPress, WordPress Development
Posted in WordPress, WordPress Plugins | Published on 04/05/2009 |1 Comment »
Skip this – still under edit
I discovered these tips and tricks mostly while working as a network security penetration specialist hired to find security holes in web hosting environments. Shared hosting is the most common and cheapest form of web-hosting where multiple customers are placed on a single machine and “share” the resources (CPU/RAM/SPACE). The machines are configured to basically ONLY do HTTP and FTP. No shells or any interactive logins, no ssh, just FTP access. That is when I started examining htaccess files in great detail and learned about the incredible untapped power of htaccess. For 99% of the worlds best Apache admins, they don’t use .htaccess much, if AT ALL. It’s much easier, safer, and faster to configure Apache using the httpd.conf file instead. However, this file is almost never readable on shared-hosts, and I’ve never seen it writable. So the only avenue left for those on shared-hosting was and is the .htaccess file, and holy freaking fiber-optics.. it’s almost as powerful as httpd.conf itself!
Most all .htaccess code works in the httpd.conf file, but not all httpd.conf code works in .htaccess files, around 50%. So all the best Apache admins and programmers never used .htaccess files. There was no incentive for those with access to httpd.conf to use htaccess, and the gap grew. It’s common to see “computer gurus” on forums and mailing lists rail against all uses and users of .htaccess files, smugly announcing the well known problems with .htaccess files compared with httpd.conf – I wonder if these “gurus” know the history of the htaccess file, like it’s use in the earliest versions of the HTTP Server- NCSA’s HTTPd, which BTW, became known as Apache HTTP. So you could easily say that htaccess files predates Apache itself.
Once I discovered what .htaccess files could do towards helping me enumerate and exploit security vulnerabilities even on big shared-hosts I focused all my research into .htaccess files, meaning I was reading the venerable Apache HTTP Source code 24/7! I compiled every released version of the Apache Web Server, ever, even NCSA’s, and focused on enumerating the most powerful htaccess directives. Good times! Because my focus was on protocol/file/network vulnerabilites instead of web dev I built up a nice toolbox of htaccess tricks to do unusual things. When I switched over to webdev in 2005 I started using htaccess for websites, not research. I documented most of my favorites and rewrote the htaccess guide for webdevelopers. After some great encouragement on various forums and nets I decided to start a blog to share my work with everyone, AskApache.com was registered, I published my guide, and it was quickly plagiarized and scraped all over the net. Information is freedom, and freedom is information, so this blog has the least restrictive copyright for you. Feel free to modify, copy, republish, sell, or use anything on this site ;)
Tags: .htaccess examples, 301 Redirect, 302 Redirect, 401, 403 Forbidden, 404 Not Found, 500, 503, admin, Advanced, Apache, Apache Htaccess, apache ssl, askapache, ASP, authorization, Backups, Bandwidth, bash, Blocking, Boot, Cache, Cache-Control, caching, cheatsheet, chmod, code snippets, compression, Cookies, CSS, debugging, DreamHost, Email, error log, errordocument, Etags, Examples, experiments, feed, FeedBurner, File System, FilesMatch, filesystem, Firefox, Flash, Forms, GET, Google, Hacking, hotlinking, HowTo, Htaccess, htaccess files, htaccess guide, htaccess rewrite, htaccess tricks, htaccess tutorial, Htpasswd, HTTP Error, HTTP Headers, HTTP-EQUIV, httpd, httpd.conf, HTTPS SSL, hyper text transfer protocol, If-Modified-Since, Javascript, Last-Modified, Linux, Login, Logs, mad skills, mod_include, mod_python, Mod_Rewrite, Mod_Rewrite examples, Mod_Security, Mod_Setenvif, mysql, Nice, nsa, password, password protection, PDF, Performance, Perl, PHP, php.ini, phpinfo, Port, post, Powweb, Prompt, Python, ram, Redirect, Redirection, Request Method, Rewrite Tricks, rewritecond, rewriterule, Robot, robots, Sample .htaccess, Scripts, Security, SEO, seo secrets, server, server config, servers, SetEnvIf, Shell, Socket, Source Code, SPEED, SSH, SSI, stat, SymLinks, trick, tutorial, ultimate htaccess, Username, Web Hosting, WordPress
Posted in Apache, Apache Modules, Cache, DreamHost, Featured, Google, Hacking, Htaccess, Linux Unix BSD, Mod_Rewrite, SEO, Security, Web Design, Web Hosting, Web Tools, Webmaster, WordPress | Published on 01/10/2009 |66 Comments »
A list of API Versions and the corresponding HTTPD Version, for use in determining the version of Apache currently running without having to rely on the often inaccurate SERVER_SOFTWARE Header.
Tags: 503, Advanced, Apache, Apache Modules, askapache, Htaccess, httpd, Module API, Mod_Rewrite, Rewrite Tricks, rewritecond, server, SSI, stat, trick, tutorial
Posted in Apache, Apache Modules, Htaccess, Mod_Rewrite | Published on 11/25/2008 |1 Comment »
List of mainly obscure security software geared more for the master pentester. These are mostly for unix, bsd, and mac and many are difficult to install and setup (require custom servers, inside access points, obscure libraries). Only programs that output data are included, so no actual exploits or anything. Most of these output extremely useful albeit extremely technical information.
Tags: admin, Advanced, Apache, askapache, ASP, Bandwidth, Boot, Cache, CommandLine, console, Cookies, debugging, Dig, DNS, Email, encryption, Ethernet, feed, File Permissions, filesystem, Forms, GET, Google, Hacking, HTTPS SSL, Linux, Login, Logs, Networking, Nice, nsa, password, PDF, Performance, Perl, PHP, Port, post, Prompt, Putty, ram, Redirect, Scanners, Scripts, Security, server, servers, Sessions, Shell, shell script, Sniffing, Socket, SOCKS, Source Code, SPEED, SSH, SSH Tunnels, SSI, stat, Vulnerability, Vulnerability Scanners, Windows XP, Wireshark
Posted in Security | Published on 09/26/2008 |3 Comments »
SSLOptions +StrictRequire
SSLRequireSSL
SSLRequire %{HTTP_HOST} eq "google.com"
ErrorDocument 403 https://google.com
Some of the Ins and Outs of using SSL Connections with Apache.
Tags: 301 Redirect, 302 Redirect, 403 Forbidden, admin, Apache, apache ssl, askapache, authorization, Cache, Cookies, Dig, Elite, Email, encryption, errordocument, Examples, GET, Google, Htaccess, htaccess files, htaccess rewrite, HTTP Status Codes, HTTPS SSL, Login, Logs, Mod_Rewrite, Nice, password, Performance, Perl, Port, Prompt, ram, Redirect, Rewrite Tricks, rewritecond, rewriterule, Scripts, Security, SEO, server, server config, SPEED, SSI, stat, SymLinks, Username
Posted in Htaccess, Security, Webmaster | Published on 03/29/2008 |11 Comments »
FeedBurner is so RAD! I love it. Here’s an alternative method to redirect scrapers and feed requests to your feedburner url, in my case, I use Branding by feedburner, which is so hot, taking advantage of CNAMEs in your DNS record.
Tags: 302 Redirect, admin, Apache, askapache, feed, FeedBurner, Google, Htaccess, HTTPS SSL, Logs, Mod_Rewrite, PHP, post, Redirect, Rewrite Tricks, rewritecond, rewriterule, Scripts, server, SSI, WordPress, WordPress Plugins
Posted in Htaccess, SEO, WordPress, WordPress Plugins | Published on 01/07/2008 |7 Comments »
Apache .htaccess Directives and Loaded Modules allowed on DreamHost Apache Server 2 Setups.
Tags: admin, Apache, askapache, authorization, Bandwidth, Cache, Cache-Control, Dig, DNS, DreamHost, Email, error log, errordocument, Etags, FilesMatch, filesystem, HowTo, Htaccess, HTTP Error, HTTP Headers, httpd, httpd.conf, HTTPS SSL, Linux, Logs, mod_include, Mod_Rewrite, Mod_Security, Mod_Setenvif, mysql, Performance, Port, ram, Redirect, Redirection, Request Method, Rewrite Tricks, Scripts, Security, server, server config, Server Side Includes, servers, SetEnvIf, Shell, Socket, SPEED, SSI, stat, Web Hosting
Posted in Apache, Apache Modules, DreamHost, Htaccess | Published on 11/23/2007 |No Comments »
Apache Documentation Google Custom Search Engine is a great place to go looking for mod_rewrite, .htaccess, and other Apache HTTPD related topics.
Tags: Apache, askapache, GET, Google, Htaccess, httpd, Mod_Rewrite, Rewrite Tricks, server
Posted in Apache, Google, Htaccess, Making Money, SEO, Webmaster | Published on 09/22/2007 |No Comments »
List of the directives available to Powweb users for use in htaccess files
Tags: Dig, Htaccess, htaccess files, HTTPS SSL, mod_include, Mod_Rewrite, Mod_Setenvif, password, Powweb, Redirect, Rewrite Tricks, rewritecond, rewriterule, server, SetEnvIf, SSI, stat, Username
Posted in DreamHost, Htaccess | Published on 02/07/2007 |1 Comment »
Describes in exhaustive detail how to change configuration settings and implement a custom php.ini file for use with the Apache Web Server. View latest official php.ini Sections: When php run as Apache Module (mod_php) When php run as CGI When cgi?d php is run with wrapper (for FastCGI) .htaccess code from Ultimate htaccess file RUN PHP AS APACHE MODULE AddHandler application/x-httpd-php .php .htm RUN PHP AS CGI AddHandler php-cgi .php .htm CGI PHP WRAPPER FOR CUSTOM PHP.INI AddHandler phpini-cgi .php .htm Action phpini-cgi /cgi-bin/php5-custom-ini.cgi FAST-CGI SETUP WITH PHP-CGI WRAPPER FOR CUSTOM PHP.INI AddHandler fastcgi-script .fcgi AddHandler php-cgi .php .htm Action…
Tags: admin, Apache, askapache, ASP, Cache, caching, chmod, CommandLine, compression, Cookies, curl, debugging, Dig, DreamHost, Email, error log, Examples, File Permissions, filesystem, GET, Htaccess, htaccess files, HTTP Headers, httpd, httpd.conf, HTTPS SSL, Javascript, Linux, Logs, Mod_Rewrite, mysql, Nice, nsa, password, Performance, PHP, php.ini, phpinfo, Port, post, Powweb, Prompt, ram, Redirect, Redirection, Rewrite Tricks, rewritecond, rewriterule, Scripts, Security, server, server config, servers, Sessions, SetEnvIf, Shell, shell script, Shell Scripting, Socket, SPEED, SSI, stat, trick, ultimate htaccess, umask, Username, Web Hosting, xargs
Posted in Apache, Htaccess, Linux Unix BSD, Mod_Rewrite, PHP, Security, Server Administration, Web Hosting, WiredTree | Published on 02/05/2007 |12 Comments »
Web Development / Webmaster Glossary A | B | C | D | E | F | G | H | I | L | M | N | O | P | R | S | T | U | V | W | X | Z | other glossaries This glossary defines some of the common terminology related to Apache in particular, and web serving in general. More information on each concept is provided in the links. Access Control The restriction of access to network realms. In an Apache context usually the restriction of access to certain URLs.See:…
Tags: Accessibility, admin, Analytics, Apache, askapache, ASP, authorization, Backups, Bandwidth, Cache, caching, CNAME, Dig, DNS, Email, encryption, Examples, Forms, GET, Google, HowTo, Htaccess, HTTP Headers, httpd, httpd.conf, HTTPS SSL, Last-Modified, Networking, nsa, password, Performance, Perl, Port, post, ram, Redirect, Redirection, Robot, robots, Security, server, Server Side Includes, servers, Shell, Socket, Source Code, SSH Tunnels, SSI, stat, Username, Web Development, Web Hosting
Posted in | Published on 11/19/2006 |No Comments »