· 7 years ago · Sep 12, 2018, 01:48 AM
1-------------------------------------------------------------------------------------------------------------
2
3____ __. .__ .__ _________ .__ __
4| |/ _|____ | |___ _|__| ____ / _____/ ____ ____ __ _________|__|/ |_ ___.__.
5| <_/ __ | | / / |/ _____ _/ __ _/ ___| | _ __ __< | |
6| | ___/| |_ /| | | / ___/ ___| | /| | / || | ___ |
7|____|__ ___ >____/_/ |__|___| /_______ /___ >___ >____/ |__| |__||__| / ____|
8 / / / / / / /
9--- contact:https://www.facebook.com/pages/KelvinSecurity/1470285456587684
10
11
12----- больш ---------------------------------------------------------------------------------------------------------------
13Што Kelvinsecurity? -- -KelvinSecurity- //1995//1996//2019
14
15
16Kelvinsecurity з'ÑўлÑецца хакер твар шукае збору інфармацыі вÑлікіх людзей па ÑžÑім Ñвеце, падлучаных да Ñеткі, Ñ– ÑžÑ€Ð°Ð·Ð»Ñ–Ð²Ñ‹Ñ Ð´Ð° гÑтых платформах.
17
18----------------------------------------------------------------------------------------------------------------
19
20-- Table structure for table `users`
21--
22
23DROP TABLE IF EXISTS `users`;
24/*!40101 SET @saved_cs_client = @@character_set_client */;
25/*!40101 SET character_set_client = utf8 */;
26CREATE TABLE `users` (
27 `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique user ID.',
28 `name` varchar(60) NOT NULL DEFAULT '' COMMENT 'Unique user name.',
29 `pass` varchar(128) NOT NULL DEFAULT '' COMMENT 'User’s password (hashed).',
30 `mail` varchar(254) DEFAULT '' COMMENT 'User’s e-mail address.',
31 `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s default theme.',
32 `signature` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s signature.',
33 `signature_format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the signature.',
34 `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for when user was created.',
35 `access` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for previous time user accessed the site.',
36 `login` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for user’s last login.',
37 `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether the user is active(1) or blocked(0).',
38 `timezone` varchar(32) DEFAULT NULL COMMENT 'User’s time zone.',
39 `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'User’s default language.',
40 `picture` int(11) NOT NULL DEFAULT '0' COMMENT 'Foreign key: file_managed.fid of user’s picture.',
41 `init` varchar(254) DEFAULT '' COMMENT 'E-mail address used for initial account creation.',
42 `data` longblob COMMENT 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future...',
43 PRIMARY KEY (`uid`),
44 UNIQUE KEY `name` (`name`),
45 KEY `access` (`access`),
46 KEY `created` (`created`),
47 KEY `mail` (`mail`),
48 KEY `picture` (`picture`)
49) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.';
50/*!40101 SET character_set_client = @saved_cs_client */;
51
52--
53-- Dumping data for table `users`
54--
55
56LOCK TABLES `users` WRITE;
57/*!40000 ALTER TABLE `users` DISABLE KEYS */;
58set autocommit=0;
59INSERT INTO `users` VALUES (0,'','','','','',NULL,0,0,0,0,NULL,'',0,'',NULL),(1,'admin','$S$Dv9bl2c0Rhl.5IOWR4z7B0feVF37iSgLDolpZUyZz2SeIHDQ3MMB','simon+6@3pikas.com','','<p>Pender Pika</p>','full_html',1351360796,1435011092,1435011092,1,'America/Whitehorse','',541,'3pikas@3pikas.com','a:7:{s:7:\"contact\";i:1;s:7:\"overlay\";i:1;s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(13,'Simon Lapointe','$S$DUbaYRFbNMv9Mpan5XOp/wMJ7gvakuv5UUqi1T10K1AfsEfcAEcL','simon@3pikas.com','','<p>Simon is a planner & map maker with a passion for using maps to design inclusive and meaningful engagement processes. Follow me on Twitter <a href=\"href="https://twitter.com/Simolapointe">\">@simolapointe</a></p>','full_html',1363380370,1492559320,1491409048,1,'America/Whitehorse','en',0,'simon@3pikas.com','a:7:{s:7:\"contact\";i:1;s:7:\"overlay\";i:1;s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(24,'guest','$S$DiJB/QXcXM/Dmxkm.U8Sd4.tBuJvwnzvzOpu94eHGnmIx/3R9kXh','smnlapointe+1@gmail.com','','','full_html',1365481399,0,0,0,'America/Whitehorse','',0,'smnlapointe+1@gmail.com','a:1:{s:7:\"contact\";i:1;}'),(27,'kblattmann','$S$Da8qh6VMmy/x.zMeXomiHM8Fg.ae5nld33Kl2Or.pU6vkYFWryyq','karl@3pikas.com','','<p>Karl is the lead developer for 3Pikas Development Studio, and enjoys being away from his laptop as much as building effective and powerful information systems.</p>','full_html',1368029492,1413437819,1413384085,0,'America/Whitehorse','',164,'karl@3pikas.com','a:2:{s:7:\"contact\";i:1;s:7:\"overlay\";i:1;}');
60/*!40000 ALTER TABLE `users` ENABLE KEYS */;
61UNLOCK TABLES;
62commit;