Gemzup.com French Business Intelligence Breach
by jcanter - Saturday April 27, 2024 at 06:08 PM
#1
Database extracted from French company that provides product and business intelligence, giving users insight into best-selling products in France and abroad.

Database contains usernames, names, hashed passwords, financial information, site information

Sites:

https://www.gemzup.com/
https://app.gemzup.com/

Database sample:

CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'users/default.png',
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `stripe_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `card_brand` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `card_last_four` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trial_ends_at` timestamp NULL DEFAULT NULL,
  `bestseller_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `bestbrand_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  KEY `users_stripe_id_index` (`stripe_id`),
  KEY `users_role_id_foreign` (`role_id`),
  CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,1,'Guillaume Dievart','dievartg@gmail.com','users/default.png','2021-01-30 11:03:57','$2y$10$EWRfuE3fGqVyHNmfo0nheeyeqMAxLLrGA7zO.c1yQfEy3zGVBUIUW','Nh2q7o2DPiCB4YpweVE5ndq2bwdZSM2Me82PCEO1rEia1funH2DMjhNAY5NI','{\"locale\":\"fr\"}','2021-01-28 13:38:00','2021-01-30 11:07:12','cus_IqzGJyvyHo4pT1','visa','4242',NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(2,1,'geric','dgemily@gmail.com','users/default.png','2021-01-30 11:11:33','$2y$10$wjUGHmW0tRQ1XBM.rXAZK.n7kdvAHQgivvwjLxZX1BkHHH1fpW.8W',NULL,'{\"locale\":\"fr\"}','2021-01-28 13:46:20','2021-01-30 11:12:41','cus_IqzMqC3ufbOu5e','visa','4242',NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(6,2,'OHAYON','mickael.ohayon@gmail.com','users/default.png','2021-01-30 18:17:29','$2y$10$L3zg5y6cVjdkUxlIUo1doucguGGq.DJO81j2k.MEuUz/A0UFEcHy.',NULL,NULL,'2021-01-29 23:21:32','2021-01-30 18:17:29',NULL,NULL,NULL,NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(18,2,'Dievart','dievartg+coupon20@gmail.com','users/default.png','2021-02-01 13:12:05','$2y$10$HcXM/4eda9mJ6RIjGlDv9eC5fM3UNes6HkWZJTeMfL6twKLew8Ura',NULL,NUL

https://gofile.io/d/v0cCGg gemzup.tar.gz 61M
#2
dead link please reupload
#3
(Apr 27, 2024, 06:08 PM)jcanter Wrote: Database extracted from French company that provides product and business intelligence, giving users insight into best-selling products in France and abroad.

Database contains usernames, names, hashed passwords, financial information, site information

Sites:

https://www.gemzup.com/
https://app.gemzup.com/

Database sample:

CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` bigint(20) unsigned DEFAULT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'users/default.png',
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `stripe_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `card_brand` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `card_last_four` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trial_ends_at` timestamp NULL DEFAULT NULL,
  `bestseller_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `bestbrand_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  KEY `users_stripe_id_index` (`stripe_id`),
  KEY `users_role_id_foreign` (`role_id`),
  CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,1,'Guillaume Dievart','dievartg@gmail.com','users/default.png','2021-01-30 11:03:57','$2y$10$EWRfuE3fGqVyHNmfo0nheeyeqMAxLLrGA7zO.c1yQfEy3zGVBUIUW','Nh2q7o2DPiCB4YpweVE5ndq2bwdZSM2Me82PCEO1rEia1funH2DMjhNAY5NI','{\"locale\":\"fr\"}','2021-01-28 13:38:00','2021-01-30 11:07:12','cus_IqzGJyvyHo4pT1','visa','4242',NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(2,1,'geric','dgemily@gmail.com','users/default.png','2021-01-30 11:11:33','$2y$10$wjUGHmW0tRQ1XBM.rXAZK.n7kdvAHQgivvwjLxZX1BkHHH1fpW.8W',NULL,'{\"locale\":\"fr\"}','2021-01-28 13:46:20','2021-01-30 11:12:41','cus_IqzMqC3ufbOu5e','visa','4242',NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(6,2,'OHAYON','mickael.ohayon@gmail.com','users/default.png','2021-01-30 18:17:29','$2y$10$L3zg5y6cVjdkUxlIUo1doucguGGq.DJO81j2k.MEuUz/A0UFEcHy.',NULL,NULL,'2021-01-29 23:21:32','2021-01-30 18:17:29',NULL,NULL,NULL,NULL,'https://datastudio.google.com/embed/reporting/eff56397-345d-4ef1-8769-dc96a9cb74fe/page/gnFoB','https://datastudio.google.com/embed/reporting/a5b6bb0d-773b-44b3-a3ef-8c72f61fc7ce/page/gnFoB'),(18,2,'Dievart','dievartg+coupon20@gmail.com','users/default.png','2021-02-01 13:12:05','$2y$10$HcXM/4eda9mJ6RIjGlDv9eC5fM3UNes6HkWZJTeMfL6twKLew8Ura',NULL,NUL

https://gofile.io/d/v0cCGg gemzup.tar.gz 61M

dead link, please update it
#4
The link in this thread is dead. Please reply to the PM you were sent to get your thread moved back to the Databases section.
See dead links, reposts, or threads without samples in Databases/Other Leaks/Stealer logs? Report it or tag me @Addka72424
New on this forum? Check this thread | TOR
Want to get credits by reposting leaks? Check Earn credits by reposting leaks! | TOR
Want to add your thread to the official section? Check Add to official requests | TOR
Don't know how to use forum Escrow? Check How to use BreachForums escrow | TOR
Looking for verified leaks that haven't been added to the official index yet? Check Unofficial Database Index | TOR

:420line:


Possibly Related Threads…
Thread Author Replies Views Last Post
  French ID Card Generator 0xM0ze 16 3,743 Feb 10, 2026, 04:43 PM
Last Post: pine
  EDITABLE TEMPLATE OF INDONESIAN ID CARD adelardsyah 47 7,208 Feb 10, 2026, 10:32 AM
Last Post: 888
  [REPOST] RainbowEx.life 5300+ KYC Pictures LATAM adelardsyah 28 6,070 Feb 10, 2026, 10:17 AM
Last Post: 888
  Renesas Electronics Corporation (11,000+ Files) Confidential Data & Source Code Rey 10 4,006 Feb 09, 2026, 03:55 PM
Last Post: pine
  125 k MARIOBET Turkish online casino database paisano 13 4,209 Feb 09, 2026, 12:41 PM
Last Post: Tanaka

Forum Jump:


 Users browsing this forum: 1 Guest(s)