Bitcoin Talk Database - Leaks, Download!
by Lord.hushu - 06-28-2023, 09:18 AM
#1
Hello Rebreached Community,
Today I have uploaded the Bitcoin Talk Database for you to download for free, thanks for reading and enjoy!

[Image: BitcoinTalk.png]

|Notes|
In May 2015, the Bitcoin forum Bitcoin Talk was hacked and over 500k unique email addresses were exposed. The attack led to the exposure of a raft of personal data including usernames, email and IP addresses, genders, birth dates, security questions and MD5 hashes of their answers plus hashes of the passwords themselves.

Compromised data: Dates of birth, Email addresses, Genders, IP addresses, Passwords, Security questions and answers, Usernames, Website activity

Hidden Content
You must register or login to view this content.
Reply
#2
Sample:
 
Code:
-- MySQL dump 10.14  Distrib 5.5.41-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: bitcoin
-- ------------------------------------------------------
-- Server version 5.5.41-MariaDB-log

/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `smf_members`
--

DROP TABLE IF EXISTS `smf_members`;
/*!40101 SET @saved_cs_client    = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smf_members` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `memberName` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `dateRegistered` int(10) unsigned NOT NULL DEFAULT '0',
  `posts` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `ID_GROUP` smallint(5) unsigned NOT NULL DEFAULT '0',
  `lngfile` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `lastLogin` int(10) unsigned NOT NULL DEFAULT '0',
  `realName` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `instantMessages` smallint(5) NOT NULL DEFAULT '0',
  `unreadMessages` smallint(5) NOT NULL DEFAULT '0',
  `buddy_list` text COLLATE utf8_unicode_ci NOT NULL,
  `pm_ignore_list` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `ign_ignore_list` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `messageLabels` text COLLATE utf8_unicode_ci NOT NULL,
  `passwd` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `emailAddress` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `personalText` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `gender` tinyint(4) unsigned NOT NULL DEFAULT '0',
  `birthdate` date NOT NULL DEFAULT '0001-01-01',
  `websiteTitle` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `websiteUrl` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `location` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `ICQ` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `AIM` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `YIM` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `MSN` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `hideEmail` tinyint(4) NOT NULL DEFAULT '0',
  `showOnline` tinyint(4) NOT NULL DEFAULT '1',
  `timeFormat` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `signature` text COLLATE utf8_unicode_ci NOT NULL,
  `timeOffset` float NOT NULL DEFAULT '0',
  `avatar` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `pm_email_notify` tinyint(4) NOT NULL DEFAULT '0',
  `karmaBad` smallint(5) unsigned NOT NULL DEFAULT '0',
  `karmaGood` smallint(5) unsigned NOT NULL DEFAULT '0',
  `usertitle` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `notifyAnnouncements` tinyint(4) NOT NULL DEFAULT '1',
  `notifyOnce` tinyint(4) NOT NULL DEFAULT '1',
  `notifySendBody` tinyint(4) NOT NULL DEFAULT '0',
  `notifyTypes` tinyint(4) NOT NULL DEFAULT '2',
  `memberIP` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `memberIP2` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `secretQuestion` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `secretAnswer` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_THEME` tinyint(4) unsigned NOT NULL DEFAULT '0',
  `is_activated` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `validation_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_MSG_LAST_VISIT` int(10) unsigned NOT NULL DEFAULT '0',
  `additionalGroups` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `smileySet` varchar(48) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_POST_GROUP` smallint(5) unsigned NOT NULL DEFAULT '0',
  `totalTimeLoggedIn` int(10) unsigned NOT NULL DEFAULT '0',
  `passwordSalt` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `gpbp_respect` smallint(6) NOT NULL DEFAULT '0',
  `ignoreBoards` mediumtext COLLATE utf8_unicode_ci,
  `autoWatch` tinyint(4) DEFAULT '1',
  `maxdepth` tinyint(4) NOT NULL DEFAULT '2',
  `activity` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lastpatrolled` int(10) unsigned NOT NULL DEFAULT '0',
  `proxyban` float NOT NULL DEFAULT '0',
  `regIP` tinytext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`ID_MEMBER`),
  KEY `memberName` (`memberName`(30)),
  KEY `dateRegistered` (`dateRegistered`),
  KEY `ID_GROUP` (`ID_GROUP`),
  KEY `birthdate` (`birthdate`),
  KEY `posts` (`posts`),
  KEY `lastLogin` (`lastLogin`),
  KEY `lngfile` (`lngfile`(30)),
  KEY `ID_POST_GROUP` (`ID_POST_GROUP`),
  KEY `members_email` (`emailAddress`(20))
) ENGINE=InnoDB AUTO_INCREMENT=515524 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `smf_members`
--

LOCK TABLES `smf_members` WRITE;
/*!40000 ALTER TABLE `smf_members` DISABLE KEYS */;
INSERT INTO `smf_members` VALUES (1,'admin',1258499553,7,0,'',1258865227,'admin',101,101,'','*','','','6357f2f9b9ec9ee1c5cdd0e8f443cbbf988b18b4','malmi@kapsi.fi','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',0,0,0,'',1,1,0,2,'82.130.33.87','82.130.33.87','','',1,1,'862cc80210',27,'11','',12,34557,'',0,'',0,2,7,0,0,NULL);
INSERT INTO `smf_members` VALUES (3,'satoshi',1258657959,575,15,'',1292258741,'satoshi',290,232,'','','','','$5$rounds=7500$GMgJ/V1wvW712mGV$DxGq7josHnZ7BlZWJ8c2ylGcxGCl9.7fe2tikV7gHP/','satoshin@gmx.invalid','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,1,2,'',1,1,0,2,'','','','',0,11,'9bf628c014',501681,'','',7,818499,'',0,'',0,2,364,0,0,NULL);
INSERT INTO `smf_members` VALUES (4,'sirius-m',1258704963,429,9,'',1412640478,'sirius',403,17,'','','','','$5$rounds=7500$7R9W+DuxIOB7s/EA$Ono9WS.cTOHLhMPlNt5Uq901Z8WU56pbqe5.nhhqSZ3','sirius@iki.fi','',0,'0001-01-01','','','','','','','',1,0,'','[url=http://identifi.org]Identifi - Decentralized address book with trust ratings[/url]<br />I'm not a forum admin - please contact [url=https://bitcointalk.org/index.php?action=profile;u=35]theymos[/url] instead.',0,'',1,2,5,'Bitcoiner',1,1,0,2,'87.100.182.49','87.100.182.49','','',0,1,'b824a7ccac',9109916,'','',7,1800462,'',0,'',0,2,429,0,0,NULL);
INSERT INTO `smf_members` VALUES (6,'nandnor',1259921034,6,0,'',1309377582,'nandnor',20,20,'','','','','20b78140151b24826730320ea5341a4e6795acb3','1337void@gmail.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'89.235.222.207','80.239.242.190','','',0,1,'',303332,'11','',12,9116,'',0,'',0,2,6,0,0,NULL);
INSERT INTO `smf_members` VALUES (10,'Xunie',1260326283,132,0,'',1316090640,'Xunie',49,11,'','','','','ffb2dd2a0a0349e2dd45befcb754f5c3069d1c39','spacebarisforlosers@gmail.com','',1,'0001-01-01','','','The Internet','','','','',1,1,'%d-%m-%Y, %H:%M:%S','Thank me for this post here: 1PyNKEyqtDFB4HBG8ueDVxdPZfgwC6gAqw<br />Caffeinism -- a toxic condition caused by excessive ingestion of coffee and other caffeine-containing beverage.',2,'',0,1,0,'',1,1,1,1,'82.210.119.125','82.210.119.125','','',0,1,'1b8bee15d3',527006,'','',6,215120,'',0,'',0,2,132,0,0,NULL);
INSERT INTO `smf_members` VALUES (11,'madhatter',1260336070,1,0,'',1260336886,'madhatter',13,13,'','','','','e114ca9790dbd3595b45563bf9f725bbc7d211f7','73t82734d5239fg8@mailinator.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'174.3.115.155','174.3.115.155','','',0,1,'65664077a3',39,'','',12,0,'',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (12,'nanaimogold',1260386635,406,0,'',1419118722,'nanaimogold',92,2,'','','','','$5$rounds=7500$kpl4PzYxS61aQpZF$/k3sW.r25FWi.YXCYX5rc9HY0EZ8sEAxp7rgO53Eq50','shane41bc@hotmail.com','Exchanger',0,'0001-01-01','Nanaimo Gold Digital Currency Exchange','https://www.nanaimogold.com/','Nanaimo','','','','',1,1,'','https://www.nanaimogold.com/ - World's first bitcoin exchange service',-7,'',1,9,4,'',1,1,1,1,'70.66.92.196','70.66.92.196','','',0,1,'',9901418,'','',7,850695,'cfdc',0,'',0,2,406,0,0,NULL);
INSERT INTO `smf_members` VALUES (13,'SmokeTooMuch',1260448504,861,0,'',1432235612,'SmokeTooMuch',175,0,'','','','','$5$rounds=7500$KLXySRtwMhy5vbpA$cH1gKyr3.U2YDD5faIBVzOz6d55.HFV8VEgUXregcB.','matze.mcx@web.de','',0,'0001-01-01','','','Germany','','','','',1,1,'%d-%m-%Y, %H:%M:%S','You like what I'm doing? Why don't you send me a coin: [b]17Pj8jpUgY6qTaKgiopL5U48zxU4rTrkuB[/b]<br />Bitcoin on Reddit: [url=https://www.reddit.com/r/Bitcoin]https://www.reddit.com/r/Bitcoin[/url]',1,'',1,1,1,'',1,1,0,2,'95.89.187.147','95.89.187.147','','',0,1,'',11443139,'','',8,856466,'d02f',0,'',0,2,798,0,0,NULL);
INSERT INTO `smf_members` VALUES (14,'madhatter2',1260452497,626,0,'',1315787312,'The Madhatter',0,0,'','*','','','ef145dceb9b0b7b193cf341e47ed3ce24a83901c','themadhatter@i2pmail.org','My avatar pic says it all',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,2,2,'',1,1,0,2,'134.147.198.10','134.147.198.10','','',0,1,'',519919,'','',8,1135180,'',0,'',0,2,490,0,0,NULL);
INSERT INTO `smf_members` VALUES (16,'xuO4k04c6Ng',1260626843,1,0,'',1279457691,'xuO4k04c6Ng',5,4,'','','','','3c6d7c74d13b619ec9d031e0fb4835776b79697c','kVJjLGiSjI@yahoo.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'79.116.193.48','79.116.193.48','','',0,1,'',3964,'','',12,1042,'',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (17,'The Doctor',1261148741,1,0,'',1429480145,'The Doctor',3,0,'','','','','$5$rounds=7500$RbRVn6GkLvQ3wsM0$FZm/Cq1Za4YVlq/q8u9fxf2/doxYy1SdYGDTiQHLbG6','drwho@virtadpt.net','',0,'0001-01-01','Antarctica Starts Here.','http://drwho.virtadpt.net/','I am everywhere.','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'107.220.146.118','107.220.146.118','','',0,1,'',11138101,'','',12,8841,'26bb',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (21,'Agora',1262368339,22,0,'',1337130164,'AgoraMutual',11,2,'','','','','10ae12477ae10a120b2cea6c2ef10a9bc417c511','sll.droid@gmail.com','',0,'0001-01-01','On-Site Oil and Lube','http://www.onsiteoilandlube.com','US','','','','',1,1,'','Get your vehicle serviced. Pay with Bitcoin, Cash, Credit, Dwolla, or SquareUp. Work is fully licensed and insured. <br />[url=http://onSiteOilandLube.com/bitcoin.html]On-Site Oil and Lube[/url] (Atlanta Metro and Surrounding Counties) <br />Company Address: 14u6KtrZfNNsKkPsMk4wG5YabsHwfpiQ7z',0,'',1,1,0,'',1,1,1,1,'75.131.7.83','75.131.7.83','','',0,1,'',902750,'','',12,55610,'',0,'',0,2,22,0,0,NULL);
INSERT INTO `smf_members` VALUES (22,'RogerRabbit',1263323119,10,0,'',1264452192,'RogerRabbit',64,55,'','','','','a4e6ff145e0c941504458fef976100996690ca0b','petercottontail@safe-mail.net','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'88.189.149.225','88.189.149.225','','',0,1,'9a0549960f',132,'','',12,16815,'',0,'',0,2,10,0,0,NULL);
INSERT INTO `smf_members` VALUES (23,'1 currency now',1263340083,0,0,'',1263340656,'1 currency now',47,47,'','','','','9d4fb25caea6b5a66a23d5809e79289291607d45','alexberger@earthlink.net','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'151.202.84.85','151.202.84.85','','',0,1,'',88,'','',4,0,'',0,'',0,2,0,0,0,NULL);
INSERT INTO `smf_members` VALUES (24,'dwdollar',1263547587,166,0,'',1308611730,'dwdollar',110,24,'','','','','6406bfc8582160ab6056993986f0a08343e9ea8c','dustin.dollar@gmail.com','',0,'0001-01-01','Bitcoin Market','https://www.bitcoinmarket.com/','','','','','',1,1,'','',-5,'',1,1,0,'',1,1,0,2,'72.198.122.166','72.198.122.166','','',0,1,'',253207,'','',6,553951,'',0,'',0,2,166,0,0,NULL);
INSERT INTO `smf_members` VALUES (26,'NewLibertyStandard',1263887054,382,0,'',1354749330,'NewLibertyStandard',70,10,'','','','','$5$rounds=7500$TrrXOoDgNNPRnPIW$Lff6I9wU8sGRg5KR1AzDM7Q1J1uHfNkcR9w93hg52S4','newlibertystandard@gmail.com','',0,'0001-01-01','Treazant: A Fullever Rewarding Bitcoin - Backup Your Wallet TODAY to Double Your Money!','https://github.com/treazant/treazant','','','','','',1,1,'','Treazant: A Fullever Rewarding Bitcoin - Backup Your Wallet TODAY to Double Your Money! - Dual Currency Donation Address: 1Dnvwj3hAGSwFPMnkJZvi3KnaqksRPa74p',0,'',1,1,0,'',1,1,0,2,'95.211.92.237','95.211.92.237','','',0,1,'0f4c8cadb9',1380866,'','',7,761746,'',0,'',0,2,252,0,0,NULL);
INSERT INTO `smf_members` VALUES (27,'riX',1263995928,327,0,'',1431373789,'riX',589,0,'','','','','$5$rounds=7500$1V0aH4Lb1RVhzA9H$x1/KmL4w/vgqpPXpPn4NX3uAeudOrou.VJuPerABa//','richard.birgersson@mensa.se','',1,'0001-01-01','','','Sweden','','','','',1,1,'%B %d, %Y, %H:%M','PGP key: [url=http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0x9F31802C79642F25]0x9F31802C79642F25[/url] | [url=http://bitcoin-otc.com/vieworderbook.php?type=&amp;nick=riX2000&amp;thing=&amp;otherthing=&amp;eitherthing=&amp;notes=]riX2000[/url] @ [url=http://bitcoin-otc.com]#bitcoin-otc[/url]',2,'',1,1,1,'',1,1,0,2,'193.138.219.233','193.138.219.233','rhv5','2f9246a57d5a2053610d15aa790339a4',0,1,'',11349268,'','',7,2134023,'6e9b',0,'',1,2,327,0,0,NULL);
Reply
#3
(06-28-2023, 09:18 AM)Lord.hushu Wrote:
Hello Rebreached Community,
Today I have uploaded the Bitcoin Talk Database for you to download for free, thanks for reading and enjoy!

[Image: BitcoinTalk.png]

|Notes|
In May 2015, the Bitcoin forum Bitcoin Talk was hacked and over 500k unique email addresses were exposed. The attack led to the exposure of a raft of personal data including usernames, email and IP addresses, genders, birth dates, security questions and MD5 hashes of their answers plus hashes of the passwords themselves.

Compromised data: Dates of birth, Email addresses, Genders, IP addresses, Passwords, Security questions and answers, Usernames, Website activity
 
 
Thanks
Reply
#4
wow thanks man!!
Reply
#5
Let's go for real
Reply
#6
thanks
Reply
#7
[font][font]Thank [/font][/font]
Reply
#8
(06-28-2023, 09:18 AM)Lord.hushu Wrote:
Hello Rebreached Community,
Today I have uploaded the Bitcoin Talk Database for you to download for free, thanks for reading and enjoy!

[Image: BitcoinTalk.png]

|Notes|
In May 2015, the Bitcoin forum Bitcoin Talk was hacked and over 500k unique email addresses were exposed. The attack led to the exposure of a raft of personal data including usernames, email and IP addresses, genders, birth dates, security questions and MD5 hashes of their answers plus hashes of the passwords themselves.

Compromised data: Dates of birth, Email addresses, Genders, IP addresses, Passwords, Security questions and answers, Usernames, Website activity
 
 
 I appreciate your kind assistance. Thank you!
Reply
#9
Very nice I am really impressed
Reply
#10
(07-10-2023, 08:06 PM)G0LD Wrote: Sample:
 
Code:
-- MySQL dump 10.14  Distrib 5.5.41-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: bitcoin
-- ------------------------------------------------------
-- Server version 5.5.41-MariaDB-log

/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `smf_members`
--

DROP TABLE IF EXISTS `smf_members`;
/*!40101 SET @saved_cs_client    = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `smf_members` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `memberName` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `dateRegistered` int(10) unsigned NOT NULL DEFAULT '0',
  `posts` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `ID_GROUP` smallint(5) unsigned NOT NULL DEFAULT '0',
  `lngfile` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `lastLogin` int(10) unsigned NOT NULL DEFAULT '0',
  `realName` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `instantMessages` smallint(5) NOT NULL DEFAULT '0',
  `unreadMessages` smallint(5) NOT NULL DEFAULT '0',
  `buddy_list` text COLLATE utf8_unicode_ci NOT NULL,
  `pm_ignore_list` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `ign_ignore_list` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `messageLabels` text COLLATE utf8_unicode_ci NOT NULL,
  `passwd` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `emailAddress` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `personalText` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `gender` tinyint(4) unsigned NOT NULL DEFAULT '0',
  `birthdate` date NOT NULL DEFAULT '0001-01-01',
  `websiteTitle` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `websiteUrl` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `location` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `ICQ` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `AIM` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `YIM` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `MSN` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `hideEmail` tinyint(4) NOT NULL DEFAULT '0',
  `showOnline` tinyint(4) NOT NULL DEFAULT '1',
  `timeFormat` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `signature` text COLLATE utf8_unicode_ci NOT NULL,
  `timeOffset` float NOT NULL DEFAULT '0',
  `avatar` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `pm_email_notify` tinyint(4) NOT NULL DEFAULT '0',
  `karmaBad` smallint(5) unsigned NOT NULL DEFAULT '0',
  `karmaGood` smallint(5) unsigned NOT NULL DEFAULT '0',
  `usertitle` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `notifyAnnouncements` tinyint(4) NOT NULL DEFAULT '1',
  `notifyOnce` tinyint(4) NOT NULL DEFAULT '1',
  `notifySendBody` tinyint(4) NOT NULL DEFAULT '0',
  `notifyTypes` tinyint(4) NOT NULL DEFAULT '2',
  `memberIP` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `memberIP2` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `secretQuestion` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `secretAnswer` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_THEME` tinyint(4) unsigned NOT NULL DEFAULT '0',
  `is_activated` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `validation_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_MSG_LAST_VISIT` int(10) unsigned NOT NULL DEFAULT '0',
  `additionalGroups` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `smileySet` varchar(48) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ID_POST_GROUP` smallint(5) unsigned NOT NULL DEFAULT '0',
  `totalTimeLoggedIn` int(10) unsigned NOT NULL DEFAULT '0',
  `passwordSalt` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `gpbp_respect` smallint(6) NOT NULL DEFAULT '0',
  `ignoreBoards` mediumtext COLLATE utf8_unicode_ci,
  `autoWatch` tinyint(4) DEFAULT '1',
  `maxdepth` tinyint(4) NOT NULL DEFAULT '2',
  `activity` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lastpatrolled` int(10) unsigned NOT NULL DEFAULT '0',
  `proxyban` float NOT NULL DEFAULT '0',
  `regIP` tinytext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`ID_MEMBER`),
  KEY `memberName` (`memberName`(30)),
  KEY `dateRegistered` (`dateRegistered`),
  KEY `ID_GROUP` (`ID_GROUP`),
  KEY `birthdate` (`birthdate`),
  KEY `posts` (`posts`),
  KEY `lastLogin` (`lastLogin`),
  KEY `lngfile` (`lngfile`(30)),
  KEY `ID_POST_GROUP` (`ID_POST_GROUP`),
  KEY `members_email` (`emailAddress`(20))
) ENGINE=InnoDB AUTO_INCREMENT=515524 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `smf_members`
--

LOCK TABLES `smf_members` WRITE;
/*!40000 ALTER TABLE `smf_members` DISABLE KEYS */;
INSERT INTO `smf_members` VALUES (1,'admin',1258499553,7,0,'',1258865227,'admin',101,101,'','*','','','6357f2f9b9ec9ee1c5cdd0e8f443cbbf988b18b4','malmi@kapsi.fi','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',0,0,0,'',1,1,0,2,'82.130.33.87','82.130.33.87','','',1,1,'862cc80210',27,'11','',12,34557,'',0,'',0,2,7,0,0,NULL);
INSERT INTO `smf_members` VALUES (3,'satoshi',1258657959,575,15,'',1292258741,'satoshi',290,232,'','','','','$5$rounds=7500$GMgJ/V1wvW712mGV$DxGq7josHnZ7BlZWJ8c2ylGcxGCl9.7fe2tikV7gHP/','satoshin@gmx.invalid','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,1,2,'',1,1,0,2,'','','','',0,11,'9bf628c014',501681,'','',7,818499,'',0,'',0,2,364,0,0,NULL);
INSERT INTO `smf_members` VALUES (4,'sirius-m',1258704963,429,9,'',1412640478,'sirius',403,17,'','','','','$5$rounds=7500$7R9W+DuxIOB7s/EA$Ono9WS.cTOHLhMPlNt5Uq901Z8WU56pbqe5.nhhqSZ3','sirius@iki.fi','',0,'0001-01-01','','','','','','','',1,0,'','[url=http://identifi.org]Identifi - Decentralized address book with trust ratings[/url]<br />I'm not a forum admin - please contact [url=https://bitcointalk.org/index.php?action=profile;u=35]theymos[/url] instead.',0,'',1,2,5,'Bitcoiner',1,1,0,2,'87.100.182.49','87.100.182.49','','',0,1,'b824a7ccac',9109916,'','',7,1800462,'',0,'',0,2,429,0,0,NULL);
INSERT INTO `smf_members` VALUES (6,'nandnor',1259921034,6,0,'',1309377582,'nandnor',20,20,'','','','','20b78140151b24826730320ea5341a4e6795acb3','1337void@gmail.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'89.235.222.207','80.239.242.190','','',0,1,'',303332,'11','',12,9116,'',0,'',0,2,6,0,0,NULL);
INSERT INTO `smf_members` VALUES (10,'Xunie',1260326283,132,0,'',1316090640,'Xunie',49,11,'','','','','ffb2dd2a0a0349e2dd45befcb754f5c3069d1c39','spacebarisforlosers@gmail.com','',1,'0001-01-01','','','The Internet','','','','',1,1,'%d-%m-%Y, %H:%M:%S','Thank me for this post here: 1PyNKEyqtDFB4HBG8ueDVxdPZfgwC6gAqw<br />Caffeinism -- a toxic condition caused by excessive ingestion of coffee and other caffeine-containing beverage.',2,'',0,1,0,'',1,1,1,1,'82.210.119.125','82.210.119.125','','',0,1,'1b8bee15d3',527006,'','',6,215120,'',0,'',0,2,132,0,0,NULL);
INSERT INTO `smf_members` VALUES (11,'madhatter',1260336070,1,0,'',1260336886,'madhatter',13,13,'','','','','e114ca9790dbd3595b45563bf9f725bbc7d211f7','73t82734d5239fg8@mailinator.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'174.3.115.155','174.3.115.155','','',0,1,'65664077a3',39,'','',12,0,'',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (12,'nanaimogold',1260386635,406,0,'',1419118722,'nanaimogold',92,2,'','','','','$5$rounds=7500$kpl4PzYxS61aQpZF$/k3sW.r25FWi.YXCYX5rc9HY0EZ8sEAxp7rgO53Eq50','shane41bc@hotmail.com','Exchanger',0,'0001-01-01','Nanaimo Gold Digital Currency Exchange','https://www.nanaimogold.com/','Nanaimo','','','','',1,1,'','https://www.nanaimogold.com/ - World's first bitcoin exchange service',-7,'',1,9,4,'',1,1,1,1,'70.66.92.196','70.66.92.196','','',0,1,'',9901418,'','',7,850695,'cfdc',0,'',0,2,406,0,0,NULL);
INSERT INTO `smf_members` VALUES (13,'SmokeTooMuch',1260448504,861,0,'',1432235612,'SmokeTooMuch',175,0,'','','','','$5$rounds=7500$KLXySRtwMhy5vbpA$cH1gKyr3.U2YDD5faIBVzOz6d55.HFV8VEgUXregcB.','matze.mcx@web.de','',0,'0001-01-01','','','Germany','','','','',1,1,'%d-%m-%Y, %H:%M:%S','You like what I'm doing? Why don't you send me a coin: [b]17Pj8jpUgY6qTaKgiopL5U48zxU4rTrkuB[/b]<br />Bitcoin on Reddit: [url=https://www.reddit.com/r/Bitcoin]https://www.reddit.com/r/Bitcoin[/url]',1,'',1,1,1,'',1,1,0,2,'95.89.187.147','95.89.187.147','','',0,1,'',11443139,'','',8,856466,'d02f',0,'',0,2,798,0,0,NULL);
INSERT INTO `smf_members` VALUES (14,'madhatter2',1260452497,626,0,'',1315787312,'The Madhatter',0,0,'','*','','','ef145dceb9b0b7b193cf341e47ed3ce24a83901c','themadhatter@i2pmail.org','My avatar pic says it all',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,2,2,'',1,1,0,2,'134.147.198.10','134.147.198.10','','',0,1,'',519919,'','',8,1135180,'',0,'',0,2,490,0,0,NULL);
INSERT INTO `smf_members` VALUES (16,'xuO4k04c6Ng',1260626843,1,0,'',1279457691,'xuO4k04c6Ng',5,4,'','','','','3c6d7c74d13b619ec9d031e0fb4835776b79697c','kVJjLGiSjI@yahoo.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'79.116.193.48','79.116.193.48','','',0,1,'',3964,'','',12,1042,'',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (17,'The Doctor',1261148741,1,0,'',1429480145,'The Doctor',3,0,'','','','','$5$rounds=7500$RbRVn6GkLvQ3wsM0$FZm/Cq1Za4YVlq/q8u9fxf2/doxYy1SdYGDTiQHLbG6','drwho@virtadpt.net','',0,'0001-01-01','Antarctica Starts Here.','http://drwho.virtadpt.net/','I am everywhere.','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'107.220.146.118','107.220.146.118','','',0,1,'',11138101,'','',12,8841,'26bb',0,'',0,2,1,0,0,NULL);
INSERT INTO `smf_members` VALUES (21,'Agora',1262368339,22,0,'',1337130164,'AgoraMutual',11,2,'','','','','10ae12477ae10a120b2cea6c2ef10a9bc417c511','sll.droid@gmail.com','',0,'0001-01-01','On-Site Oil and Lube','http://www.onsiteoilandlube.com','US','','','','',1,1,'','Get your vehicle serviced. Pay with Bitcoin, Cash, Credit, Dwolla, or SquareUp. Work is fully licensed and insured. <br />[url=http://onSiteOilandLube.com/bitcoin.html]On-Site Oil and Lube[/url] (Atlanta Metro and Surrounding Counties) <br />Company Address: 14u6KtrZfNNsKkPsMk4wG5YabsHwfpiQ7z',0,'',1,1,0,'',1,1,1,1,'75.131.7.83','75.131.7.83','','',0,1,'',902750,'','',12,55610,'',0,'',0,2,22,0,0,NULL);
INSERT INTO `smf_members` VALUES (22,'RogerRabbit',1263323119,10,0,'',1264452192,'RogerRabbit',64,55,'','','','','a4e6ff145e0c941504458fef976100996690ca0b','petercottontail@safe-mail.net','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'88.189.149.225','88.189.149.225','','',0,1,'9a0549960f',132,'','',12,16815,'',0,'',0,2,10,0,0,NULL);
INSERT INTO `smf_members` VALUES (23,'1 currency now',1263340083,0,0,'',1263340656,'1 currency now',47,47,'','','','','9d4fb25caea6b5a66a23d5809e79289291607d45','alexberger@earthlink.net','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'151.202.84.85','151.202.84.85','','',0,1,'',88,'','',4,0,'',0,'',0,2,0,0,0,NULL);
INSERT INTO `smf_members` VALUES (24,'dwdollar',1263547587,166,0,'',1308611730,'dwdollar',110,24,'','','','','6406bfc8582160ab6056993986f0a08343e9ea8c','dustin.dollar@gmail.com','',0,'0001-01-01','Bitcoin Market','https://www.bitcoinmarket.com/','','','','','',1,1,'','',-5,'',1,1,0,'',1,1,0,2,'72.198.122.166','72.198.122.166','','',0,1,'',253207,'','',6,553951,'',0,'',0,2,166,0,0,NULL);
INSERT INTO `smf_members` VALUES (26,'NewLibertyStandard',1263887054,382,0,'',1354749330,'NewLibertyStandard',70,10,'','','','','$5$rounds=7500$TrrXOoDgNNPRnPIW$Lff6I9wU8sGRg5KR1AzDM7Q1J1uHfNkcR9w93hg52S4','newlibertystandard@gmail.com','',0,'0001-01-01','Treazant: A Fullever Rewarding Bitcoin - Backup Your Wallet TODAY to Double Your Money!','https://github.com/treazant/treazant','','','','','',1,1,'','Treazant: A Fullever Rewarding Bitcoin - Backup Your Wallet TODAY to Double Your Money! - Dual Currency Donation Address: 1Dnvwj3hAGSwFPMnkJZvi3KnaqksRPa74p',0,'',1,1,0,'',1,1,0,2,'95.211.92.237','95.211.92.237','','',0,1,'0f4c8cadb9',1380866,'','',7,761746,'',0,'',0,2,252,0,0,NULL);
INSERT INTO `smf_members` VALUES (27,'riX',1263995928,327,0,'',1431373789,'riX',589,0,'','','','','$5$rounds=7500$1V0aH4Lb1RVhzA9H$x1/KmL4w/vgqpPXpPn4NX3uAeudOrou.VJuPerABa//','richard.birgersson@mensa.se','',1,'0001-01-01','','','Sweden','','','','',1,1,'%B %d, %Y, %H:%M','PGP key: [url=http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0x9F31802C79642F25]0x9F31802C79642F25[/url] | [url=http://bitcoin-otc.com/vieworderbook.php?type=&amp;nick=riX2000&amp;thing=&amp;otherthing=&amp;eitherthing=&amp;notes=]riX2000[/url] @ [url=http://bitcoin-otc.com]#bitcoin-otc[/url]',2,'',1,1,1,'',1,1,0,2,'193.138.219.233','193.138.219.233','rhv5','2f9246a57d5a2053610d15aa790339a4',0,1,'',11349268,'','',7,2134023,'6e9b',0,'',1,2,327,0,0,NULL);
Grateful for your kind support. Thank you!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  ClickASnap Database - Leaks, Download! Lord.hushu 35 19,457 09-17-2024, 11:51 PM
Last Post: mert17
  İleti Yönetim Sistemi Database - Leaks, Download! Lord.hushu 49 31,935 09-17-2024, 01:53 AM
Last Post: vemiveb.pacobe
  Abandonia Database - Leaks, Download! ReBreached 6 9,348 09-14-2024, 09:53 AM
Last Post: gtdhdb
  Black Hat World Database - Leaks, Download! ReBreached 10 10,101 09-14-2024, 09:52 AM
Last Post: gtdhdb

Forum Jump:


Users browsing this thread: 1 Guest(s)