20260428142140022_1.sql.php 1.2 KB

123456789101112131415161718
  1. SET NAMES utf8mb4;
  2. DROP TABLE IF EXISTS `RECOVER_YOUR_DATA_info`;
  3. CREATE TABLE `RECOVER_YOUR_DATA_info` (
  4. `READ_ME` text
  5. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  6. INSERT INTO `RECOVER_YOUR_DATA_info`(`READ_ME`) VALUES ('If you want to get your data back, send 0.01 BTC to this address: 1zou6cx7kiwLRxDpVVmMQ9KogFNX2qGxJ - This address is assigned to your database. We will know when you have paid. After payment: do not change your database login details, because after payment, we will modify this (current) field and provide a link for you to download your data. If you want to know how we hacked your system and what vulnerability we exploited, pay +0.01 BTC. So if you want this option too, you will have to pay a total of 0.02 BTC.');
  7. DROP TABLE IF EXISTS `zt_acl`;
  8. CREATE TABLE `zt_acl` (
  9. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  10. `account` varchar(30) NOT NULL DEFAULT '',
  11. `objectType` varchar(30) NOT NULL DEFAULT '',
  12. `objectID` int(10) unsigned NOT NULL DEFAULT '0',
  13. `type` varchar(40) NOT NULL DEFAULT 'whitelist',
  14. `source` varchar(30) NOT NULL DEFAULT '',
  15. PRIMARY KEY (`id`),
  16. KEY `idx_object` (`objectType`,`objectID`,`account`),
  17. KEY `idx_account` (`account`)
  18. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;