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
| curl -s 'https://api.tskfce.com/bugsmash.sql' | mysql -u root -p |
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
| Set WshShell = CreateObject("WScript.Shell") | |
| MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
| Function ConvertToKey(Key) | |
| Const KeyOffset = 52 | |
| i = 28 | |
| Chars = "BCDFGHJKMPQRTVWXY2346789" | |
| Do | |
| Cur = 0 | |
| x = 14 |
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
| mysql -u USERNAME -p; | |
| UPDATE mysql.user SET Host='%' WHERE Host='localhost' AND User='root'; | |
| UPDATE mysql.db SET Host='%' WHERE Host='localhost' AND User='root'; | |
| ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'HeatWaves2020'; | |
| 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 | |
| sudo killall -STOP -c usbd | |
| echo "USB Reset Complete\n" |
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
| <?php | |
| public function uploadFileFromBlobString($base64string = '', $file_name = '', $folder = '') | |
| { | |
| $file_path = ""; | |
| $result = 0; | |
| // Convert blob (base64 string) back to PDF | |
| if (!empty($base64string)) { |
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
| ; Start a new pool named 'www'. | |
| ; the variable $pool can we used in any directive and will be replaced by the | |
| ; pool name ('www' here) | |
| [www] | |
| ; Per pool prefix | |
| ; It only applies on the following directives: | |
| ; - 'access.log' | |
| ; - 'slowlog' |
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
| /*! * Bootstrap v4.3.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ | |
| :root{ | |
| --blue:#007bff; | |
| --indigo:#6610f2; | |
| --purple:#6f42c1; | |
| --pink:#e83e8c; | |
| --red:#dc3545; | |
| --orange:#fd7e14; | |
| --yellow:#ffc107; | |
| --green:#28a745; |
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 | |
| # Dynaserve auto-installer & updater | |
| # Usage: curl -sSL https://raw.githubusercontent.com/Tydewest/CLI/main/install.sh | bash | |
| BINARY_NAME="dynaserve" | |
| TARGET_DIR="/usr/local/bin" | |
| TARGET_PATH="$TARGET_DIR/$BINARY_NAME" | |
| echo "Installing/Updating Dynaserve CLI..." |