Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
vulnerability ?
#1
Has anyone addressed this vuln posted to youtube March 26 2021 ? 
https://www.youtube.com/watch?v=OCQxBtoic2w
Reply
#2
shrug, don't leave your data files unprotected.. I mean, not sure how else to categorize this.
Kind of the users job to make sure their site data folders is secure.
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#3
in your .htaccess file:

Code:
RewriteEngine on
RewriteRule ^yourfile.xml$ 404.html

where your 404.html could be either a page not found
or any garbage page, which will display as invalid url.

or use this:

Code:
<FilesMatch ".(xml)$">
  order allow,deny
  deny from all
</FilesMatch>

== tagged - password protect xml ==
Reply
#4
Don't we already have both of these?
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply




Users browsing this thread: 1 Guest(s)