This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| font-family: system-ui; | |
| } | |
| .expandable-content { | |
| overflow: hidden; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | * { outline: 1px solid rgba(255,0,0,.2); :hover { outline: 1px solid rgba(255,0,0,0.6); } } | |
| * * { outline: 1px solid rgba(0,255,0,.2); :hover { outline: 1px solid rgba(0,255,0,0.6); } } | |
| * * * { outline: 1px solid rgba(0,0,255,.2); :hover { outline: 1px solid rgba(0,0,255,0.6); } } | |
| * * * * { outline: 1px solid rgba(255,0,255,.2); :hover { outline: 1px solid rgba(255,0,0,0.6); } } | |
| * * * * * { outline: 1px solid rgba(0,255,255,.2); :hover { outline: 1px solid rgba(0,255,0,0.6); } } | |
| * * * * * * { outline: 1px solid rgba(255,255,0,.2); :hover { outline: 1px solid rgba(0,0,255,0.6); } } | |
| * * * * * * * { outline: 1px solid rgba(255,0,0,.2); :hover { outline: 1px solid rgba(255,0,0,0.6); } } | |
| * * * * * * * * { outline: 1px solid rgba(0,255,0,.2); :hover { outline: 1px solid rgba(0,255,0,0.6); } } | |
| * * * * * * * * * { outline: 1px solid rgba(0,0,255,.2); :hover { outline: 1px solid rgba(0,0,255,0.6); } } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> | |
| <title>Coming Soon</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| </head> | |
| <body> | |
| <div class="min-h-screen from-[#B51772] via-[#2457DE] to-[#0B326C] bg-gradient-to-br flex flex-col items-center justify-center text-center px-4"> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| curl -o fm.php "https://raw.githubusercontent.com/prasathmani/tinyfilemanager/master/tinyfilemanager.php" && chown www-data:www-data fm.php | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| SOURCE_DIR=./folder1 | |
| DEST_DIR=/folder2 | |
| for file in $SOURCE_DIR/*.js; | |
| do | |
| filename=$(basename -- "$file") | |
| extension="${filename##*.}" | |
| filename="${filename%.*}" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | CONTENT_SECURITY_POLICY_USE_DEFAULTS="false" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__DEFAULT_SRC="*,http:,https:,data:,blob:" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__BASE_URI="*" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__FONT_SRC="*,data:" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__FORM_ACTION="*" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__FRAME_ANCESTORS="*" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__IMG_SRC="*,https:,http:,data:" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__OBJECT_SRC="*" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__SCRIPT_SRC="*,'unsafe-eval','unsafe-inline'" | |
| CONTENT_SECURITY_POLICY_DIRECTIVES__STYLE_SRC="*,'unsafe-inline'" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | SELECT CONCAT('DROP TABLE IF EXISTS `', table_name, '`;') | |
| FROM information_schema.tables | |
| WHERE table_schema = 'db'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- Log in as root: mysql -u root --password | |
| CREATE USER 'MY_USERNAME'@'localhost' IDENTIFIED BY 'MY_PASSWORD'; | |
| GRANT ALL PRIVILEGES ON *.* TO 'MY_USERNAME'@'localhost' WITH GRANT OPTION; | |
| FLUSH PRIVILEGES; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| mysqldump -u SOURCE --password=SOURCE -h SOURCE -P 9000 SOURCE > dump.sql | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "rewrites": [ | |
| { | |
| "source": "/(.*)", | |
| "destination": "/" | |
| } | |
| ] | |
| } |