Temporary Advertisements:
Ad
Ad
Ad
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','[email protected]','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','[email protected]','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','[email protected]','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','[email protected]','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','[email protected]','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','[email protected]','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','[email protected]','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','[email protected]','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.


Possibly Related Threads…
Thread Author Replies Views Last Post
  DRDO leak by babuk locker 2.0 artemisappolo 9 2,005 Sep 07, 2026, 05:07 PM
Last Post: suicided
  Buy credits ombretto 1 954 Sep 05, 2026, 06:44 PM
Last Post: suicided
  Cisco Partial Breach IntelBroker 84 18,377 Sep 05, 2026, 06:29 PM
Last Post: suicided
  DDOS CLOUDFLARE BYPASS METHOD [L7] oboyzbi 1 492 Sep 05, 2026, 06:26 PM
Last Post: suicided
  AERR Booking Students Database stealer313131 1 373 Sep 02, 2026, 12:46 PM
Last Post: suicided

Forum Jump:


 Users browsing this forum: 1 Guest(s)