· 8 years ago · Jul 05, 2018, 12:38 PM
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 Follow In twitter > @nationgoverment
19 EMAIL_CONTACT: > KelvinseZurity@3g2upl4pq6kufc4m.onion
20----------------------------------------------------------------------------------------------------------------
21
22DROP TABLE IF EXISTS `modx_users`;
23/*!40101 SET @saved_cs_client = @@character_set_client */;
24/*!40101 SET character_set_client = utf8 */;
25CREATE TABLE `modx_users` (
26 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
27 `username` varchar(100) NOT NULL DEFAULT '',
28 `password` varchar(100) NOT NULL DEFAULT '',
29 `cachepwd` varchar(100) NOT NULL DEFAULT '',
30 `class_key` varchar(100) NOT NULL DEFAULT 'modUser',
31 `active` tinyint(1) unsigned NOT NULL DEFAULT '1',
32 `remote_key` varchar(255) DEFAULT NULL,
33 `remote_data` text,
34 `hash_class` varchar(100) NOT NULL DEFAULT 'hashing.modPBKDF2',
35 `salt` varchar(100) NOT NULL DEFAULT '',
36 `primary_group` int(10) unsigned NOT NULL DEFAULT '0',
37 `session_stale` text,
38 `sudo` tinyint(1) unsigned NOT NULL DEFAULT '0',
39 `createdon` int(20) NOT NULL DEFAULT '0',
40 PRIMARY KEY (`id`),
41 UNIQUE KEY `username` (`username`),
42 KEY `class_key` (`class_key`),
43 KEY `remote_key` (`remote_key`),
44 KEY `primary_group` (`primary_group`)
45) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
46/*!40101 SET character_set_client = @saved_cs_client */;
47
48--
49-- Dumping data for table `modx_users`
50--
51
52LOCK TABLES `modx_users` WRITE;
53/*!40000 ALTER TABLE `modx_users` DISABLE KEYS */;
54INSERT INTO `modx_users` VALUES (1,'admin','yUzoCOjO5RE6gzA9sMGQ4O7u7msIoJwA8unbSSI2mIA=','','modUser',1,NULL,NULL,'hashing.modPBKDF2','b9d8477a996fce96507cc9c12311b1be',1,'a:2:{i:0;s:3:\"mgr\";i:1;s:3:\"web\";}',1,1479117319);
55/*!40000 ALTER TABLE `modx_users` ENABLE KEYS */;
56UNLOCK TABLES;