Search results

  1. slowaways

    PHP Backdoor - My WordPress websites was hacked

    Yes. It was deleted by PasteBin
  2. slowaways

    PHP Backdoor - My WordPress websites was hacked

    I didn't think this was possible, but hackers had enough access to upload a backdoor .php file to various websites hosted via OpenLiteSpeed. They exploited some WordPress vulnerability and uploaded a .php file somewhere containing a backdoor. This file was a backdoor that allowed you to...
  3. slowaways

    Help sub-URIs in Context of type Proxy

    I created the configuration for External App in my Virtual Host: Name * : NodeJS Address * : localhost:3000 And the configuration for Context with type "Proxy" URI *: / Web Server *: [VHost Level]: NodeJS Ok... When acessing the sub-URI "/foo/bar" The proxy point to localhost:3000/foo/bar and...
  4. slowaways

    Access-Control-Allow-Origin Multiple Origin Domains

    How this kb can help me? I already read this. I need the variable Header, a variable in Set/Add declaration of Access-Control-Allow-Origin header. . OLS support Env If?
  5. slowaways

    Access-Control-Allow-Origin Multiple Origin Domains

    Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header in OpenLiteSpeed? I try this code in Rewrite but without success: SetEnvIf Origin "http(s)?://(www\.)?(domain1.example|domain2.example)$" AccessControlAllowOrigin=$0$1 Header add...
  6. slowaways

    Wordpress Wordfence .user.ini / auto_append_file

    I'm not using WordFence, but a WAF by HackerSec: https://waf.hackersec.com/. This link did not help me. I tested these configurations. This is my htaccess configuration: ### Rewrite Rules Added by CyberPanel Rewrite Rule Generator RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule...
  7. slowaways

    Wordpress Wordfence .user.ini / auto_append_file

    I'm using CyberPanel, I don't have access to LiteSpeed WebAdmin through it because it is blocked by default by the Firewall (7080 port). In CyberPanel WebAdmin I can edit the PHP settings (in PHP->Edit PHP Configs) and after that restart LiteSpeed (in Server Status -> Service Status). Using...
  8. slowaways

    Wordpress Wordfence .user.ini / auto_append_file

    I am using cyberpanel with ols too to active a WAF. It's don't works!
  9. slowaways

    Limiting SSL/TLS Cipher Suite doesn't work?

    Hello, I disabled HTTP/2 and defined this cipher suite to my SSL Protocol configuration: Listener HTTPS->SSL->SSL Protocol "TLS_CHACHA20_POLY1305_SHA256:ECDHE-RSA-AES256-GCM-SHA384:TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256:TLS_DHE_RSA_WITH_AES_256_GCM_SHA384" TLS 1.3...
  10. slowaways

    Error in compiling (Debian 9)

    Where do I find the settings to change the user and group?
  11. slowaways

    Error in compiling (Debian 9)

    No! Oh, sorry!!! I missing some of dependencies. [ERROR] It is not allowed to run LiteSpeed web server on behalf of a privileged user/group, user id must not be less than 50 and group id must not be less than 10.UID of user 'root' is 0, GID of group 'root' is 0. Please fix above problem first...
  12. slowaways

    Error in compiling (Debian 9)

    make[2]: *** No rule to make target '../ssl/libssl.a', needed by 'openlitespeed'. Stop. I have the following libs installed: My current script intallation: https://gist.github.com/slowaways/3d6bd53ccdc08e1ef2655498229bfba1
  13. slowaways

    [Help] Simple Rewrite

    Kevin, thank you so much! It is works! These changes will be officially added to the repository OpenLiteSpeed?
  14. slowaways

    [Help] Simple Rewrite

    I have a project that if i have a file .htaccess in root directory with the following rules: RewriteEngine On RewriteBase / RewriteRule ^ 0.php [L] ... in the Apache or LiteSpeed Standard Version (with HT Access actived) works fine. The variable $_SERVER['REDIRECT_URL'] is set in PHP, but with...
  15. slowaways

    [Help] Simple Rewrite

    Did not work! error.log 2016-08-18 13:15:39.899 [INFO] [127.0.0.1:34420] [REWRITE] Rule: Match '/' with pattern '^/nospider/', result: -1 2016-08-18 13:15:39.899 [INFO] [127.0.0.1:34420] [REWRITE] Rule: Match '/' with pattern '^', result: 1 2016-08-18 13:15:39.899 [INFO] [127.0.0.1:34420]...
  16. slowaways

    [Help] Simple Rewrite

    RewriteEngine On RewriteBase / RewriteRule ^ 0.php [L] How to make this in Open LiteSpeed?
Top