PSD-Tutorials.de
Forum für Design, Fotografie & Bildbearbeitung
Tutkit
Agentur
Hilfe
Kontakt
Start
Forum
Aktuelles
Besonderer Inhalt
Foren durchsuchen
Tutorials
News
Anmelden
Kostenlos registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Menü
Anmelden
Kostenlos registrieren
App installieren
Installieren
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Antworten auf deine Fragen:
Neues Thema erstellen
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
CMS, Shopsoftware & Forensysteme
Joomla!
Original Ordner einer Flash Gallerie schützen?
Beitrag
<blockquote data-quote="bonn" data-source="post: 1744270" data-attributes="member: 113464"><p><strong>AW: Original Ordner einer Flash Gallerie schützen?</strong></p><p></p><p><span style="font-family: 'Arial'"><span style="font-size: 12px">Danke für den Tipp, aber irgendwie funktioniert es nicht, da immer dann mit neuer .htaccess ein 500 Internal Server Error kommt.</span></span></p><p><span style="font-family: 'Arial'"><span style="font-size: 12px">Vlt. habe ich </span></span></p><p></p><p>Options All -Indexes</p><p><span style="font-family: 'Arial'"><span style="font-size: 12px"></span></span></p><p><span style="font-family: 'Arial'"><span style="font-size: 12px">auch nur an der falschen Stelle der datei eingefügt?</span></span></p><p><span style="font-family: 'Arial'"><span style="font-size: 12px">Hier mal die .htaccess, ohne diesen Parameter (wo müsste ich ihn einfügen, damit es klappen sollte?) </span></span>:</p><p>[CODE]DirectoryIndex index.php</p><p>RewriteEngine On</p><p>RewriteBase /</p><p></p><p>########## Begin - Rewrite rules to block out some common exploits</p><p>## If you experience problems on your site block out the operations listed below</p><p>## This attempts to block the most common type of exploit `attempts` to Joomla!</p><p>#</p><p>## Deny access to extension xml files (uncomment out to activate)</p><p>#<Files ~ "\.xml$"></p><p>#Order allow,deny</p><p>#Deny from all</p><p>#Satisfy all</p><p>#</Files></p><p>## End of deny access to extension xml files</p><p># Block out any script trying to set a mosConfig value through the URL</p><p>RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]</p><p># Block out any script trying to base64_encode crap to send via URL</p><p>RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]</p><p># Block out any script that includes a <script> tag in URL</p><p>RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]</p><p># Block out any script trying to set a PHP GLOBALS variable via URL</p><p>RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]</p><p># Block out any script trying to modify a _REQUEST variable via URL</p><p>RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})</p><p># Send all blocked request to homepage with 403 Forbidden error!</p><p>RewriteRule ^(.*)$ index.php [F,L]</p><p>#</p><p>########## End - Rewrite rules to block out some common exploits</p><p></p><p>RewriteCond %{REQUEST_FILENAME} !-f</p><p>RewriteCond %{REQUEST_FILENAME} !-d</p><p>RewriteCond %{REQUEST_URI} !^/index.php</p><p>RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]</p><p>RewriteRule (.*) index.php</p><p>RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L][/CODE]Ich habe das aktuellste Joomla und nutze Joom SFE Free um die Urls zu verkürzen, als Gallerie habe ich die JSN Imageshow in Benutzung.</p><p>Danke für die Hilfe</p></blockquote><p></p>
[QUOTE="bonn, post: 1744270, member: 113464"] [b]AW: Original Ordner einer Flash Gallerie schützen?[/b] [FONT=Arial][SIZE=3]Danke für den Tipp, aber irgendwie funktioniert es nicht, da immer dann mit neuer .htaccess ein 500 Internal Server Error kommt. Vlt. habe ich [/SIZE][/FONT] Options All -Indexes [FONT=Arial][SIZE=3] auch nur an der falschen Stelle der datei eingefügt?[/SIZE][/FONT] [FONT=Arial][SIZE=3]Hier mal die .htaccess, ohne diesen Parameter (wo müsste ich ihn einfügen, damit es klappen sollte?) [/SIZE][/FONT]: [CODE]DirectoryIndex index.php RewriteEngine On RewriteBase / ########## Begin - Rewrite rules to block out some common exploits ## If you experience problems on your site block out the operations listed below ## This attempts to block the most common type of exploit `attempts` to Joomla! # ## Deny access to extension xml files (uncomment out to activate) #<Files ~ "\.xml$"> #Order allow,deny #Deny from all #Satisfy all #</Files> ## End of deny access to extension xml files # Block out any script trying to set a mosConfig value through the URL RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR] # Block out any script trying to base64_encode crap to send via URL RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR] # Block out any script that includes a <script> tag in URL RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] # Block out any script trying to set a PHP GLOBALS variable via URL RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] # Block out any script trying to modify a _REQUEST variable via URL RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) # Send all blocked request to homepage with 403 Forbidden error! RewriteRule ^(.*)$ index.php [F,L] # ########## End - Rewrite rules to block out some common exploits RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/index.php RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC] RewriteRule (.*) index.php RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L][/CODE]Ich habe das aktuellste Joomla und nutze Joom SFE Free um die Urls zu verkürzen, als Gallerie habe ich die JSN Imageshow in Benutzung. Danke für die Hilfe [/QUOTE]
Bilder bitte
hier hochladen
und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Zitate einfügen…
Authentifizierung
Wenn ★ = 12, ◇ = 4 und die Hälfte von ★ zu ◇ addiert wird, was ist das Ergebnis?
Antworten
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
CMS, Shopsoftware & Forensysteme
Joomla!
Original Ordner einer Flash Gallerie schützen?
Oben