From 48cac9b9d4abef06048b72cb425500dac81f4728 Mon Sep 17 00:00:00 2001 From: rbozburun Date: Thu, 8 Feb 2024 20:56:29 +0300 Subject: [PATCH 01/10] Optional usage ability added for search.censys.io --- controller/phishing.go | 26 ++++++++++++++++++------ helpers/helpers.go | 45 ++++++++++++++++++++++++++++++++++++++--- helpers/helpers_test.go | 9 ++++++++- models/phishing.go | 12 +++++++++++ 4 files changed, 82 insertions(+), 10 deletions(-) diff --git a/controller/phishing.go b/controller/phishing.go index 71a0ce9..59aab69 100644 --- a/controller/phishing.go +++ b/controller/phishing.go @@ -127,14 +127,28 @@ func GetPhishingDomains(ctx *gin.Context) { var extracted_domains_from_ct []string // Check SSL CT and found websites if they don't redirect to original domain + var isVerified bool + if helpers.GoDotEnvVariable("CENSYS_API_ID") != "" && helpers.GoDotEnvVariable("CENSYS_API_SECRET") != "" { + helpers.SendMessageWS("CTLogs", "CenSys credentials recieved. Trying to search for CT Logs on search.censys.io", "info") + // Verify search.censys.io API credentials + isVerified, _ = helpers.VerifyCensysCredentials(helpers.GoDotEnvVariable("CENSYS_API_ID"), helpers.GoDotEnvVariable("CENSYS_API_SECRET")) + + } else { + isVerified = false + helpers.SendMessageWS("Phishing", "Since CenSys credentials didn't set, search.censys.io CT Logs process skipped.", "info") + } + for i := 0; i < len(punny_code_domains); i++ { - censys_hits, err := GetDomainsFromCensysCTLogs(punny_code_domains[i]) - if err != nil { - logger.Log.Warnf("GetDomainsFromCensysCTLogs error : %v", err) - helpers.SendMessageWS("CTLogs-Censys", fmt.Sprintf("GetDomainsFromCensysCTLogs error : %v", err), "warn") - } + if isVerified { + censys_hits, err := GetDomainsFromCensysCTLogs(punny_code_domains[i]) + if err != nil { + logger.Log.Warnf("GetDomainsFromCensysCTLogs error : %v", err) + helpers.SendMessageWS("CTLogs-Censys", fmt.Sprintf("GetDomainsFromCensysCTLogs error : %v", err), "warn") + } - extracted_domains_from_ct = append(extracted_domains_from_ct, censys_hits...) + extracted_domains_from_ct = append(extracted_domains_from_ct, censys_hits...) + + } crtsh_hits, err := GetDomainsFromCrtshCTLogs(punny_code_domains[i]) if err != nil { diff --git a/helpers/helpers.go b/helpers/helpers.go index 8711c72..ee7ce04 100644 --- a/helpers/helpers.go +++ b/helpers/helpers.go @@ -2,6 +2,7 @@ package helpers import ( "bytes" + "encoding/base64" "encoding/json" "fmt" "io" @@ -79,6 +80,44 @@ func InitiliazeWebSocketConnection() error { return nil } +// Verifies the given search.censys.io key and secret valid or not +func VerifyCensysCredentials(api_id string, secret string) (bool, error) { + logger.Log.Debugf("search.censys.io account verification started.") + SendMessageWS("CTLogs-Censys", "search.censys.io account verification started.", "debug") + url := "https://search.censys.io/api/v1/account" + auth_key := "Authorization" + auth_value := "Basic " + base64.StdEncoding.EncodeToString([]byte(api_id+":"+secret)) + + resp_bytes, err := ApiRequester(url, "GET", auth_key, auth_value, nil) + if err != nil { + logger.Log.Errorf("APIRequster error %v...", err) + SendMessageWS("CTLogs-Censys", fmt.Sprintf("APIRequster error %v...", err), "error") + return false, nil + } + + censys_response := models.CensysAccountEndpointResponseModel{} + + // Convert returned bytes to struct + err = json.Unmarshal(resp_bytes, &censys_response) + if err != nil { + logger.Log.Debugf("ERROR - While requesting to account endpoint. Response: %v", resp_bytes) + logger.Log.Errorf("Cannot convert API request to Censys Response struct: %v", err) + SendMessageWS("CTLogs-Censys", fmt.Sprintf("Cannot convert API request to Censys Response struct: %v", err), "error") + return false, nil + } + + // Recieved a valid response and user email captured + if censys_response.Email != "" { + SendMessageWS("CTLogs-Censys", fmt.Sprintf("search.censys.io account verified. Used email: %v", censys_response.Email), "info") + logger.Log.Infof("search.censys.io account verified. Used email: %v", censys_response.Email) + return true, nil + } else { + SendMessageWS("CTLogs-Censys", "search.censys.io account couldn't verified. Please check your API credentials!", "error") + logger.Log.Error("search.censys.io account couldn't verified. Please check your API credentials!") + return false, nil + } +} + func CloseWSConnection() error { if CONN != nil { err := CONN.Close() @@ -285,7 +324,7 @@ func ApiRequester(url string, method string, auth_key string, auth_value string, // Create a new request with the POST method and set the request body req, err := http.NewRequest("POST", url, bytes.NewBuffer(request_data)) if err != nil { - logger.Log.Errorf("Error creating request:", err) + logger.Log.Errorf("Error creating request: %v", err) SendMessageWS("", fmt.Sprintf("API Requester error: %v", err), "error") return nil, err } @@ -298,7 +337,7 @@ func ApiRequester(url string, method string, auth_key string, auth_value string, // Send the request resp, err := client.Do(req) if err != nil { - logger.Log.Errorf("Error creating request:", err) + logger.Log.Errorf("Error creating request: %v", err) SendMessageWS("", fmt.Sprintf("API Requester error: %v", err), "error") return nil, err } @@ -307,7 +346,7 @@ func ApiRequester(url string, method string, auth_key string, auth_value string, // Read the response body responseBody, err := ioutil.ReadAll(resp.Body) if err != nil { - logger.Log.Errorf("Error reading response body:", err) + logger.Log.Errorf("Error reading response body: %v", err) SendMessageWS("", fmt.Sprintf("API Requester error: %v", err), "error") return nil, err } diff --git a/helpers/helpers_test.go b/helpers/helpers_test.go index efe7d7a..74adb7c 100644 --- a/helpers/helpers_test.go +++ b/helpers/helpers_test.go @@ -8,11 +8,18 @@ import ( "github.com/stretchr/testify/assert" ) +func TestVerifyCensysCredentials(t *testing.T) { + api_id := "test" + secret := "test" + InitiliazeWebSocketConnection() + VerifyCensysCredentials(api_id, secret) +} + // Tests curl -X 'GET' 'https://search.censys.io/api/v2/certificates/search?q=xn--p-bga9c0ugb.com&per_page=100' -H 'accept: application/json' -H 'Authorization: Basic ' func TestApiRequester(t *testing.T) { a := assert.New(t) input := []string{ - "koksan.com", + "paypal.com", "sibersaldirilar.com", } var extracted_domains_from_ct []string diff --git a/models/phishing.go b/models/phishing.go index 99ff2c0..3444510 100644 --- a/models/phishing.go +++ b/models/phishing.go @@ -21,6 +21,18 @@ type CrtShResponseModel []struct { SerialNumber string `json:"serial_number"` } +type CensysAccountEndpointResponseModel struct { + Email string `json:"email"` + Login string `json:"login"` + FirstLogin string `json:"first_login"` + LastLogin string `json:"last_login"` + Quota struct { + Used int `json:"used"` + Allowance int `json:"allowance"` + ResetsAt string `json:"resets_at"` + } `json:"quota"` +} + type CensysCTSearchEndpointResponseModel struct { Code int `json:"code"` Status string `json:"status"` From b6a8af3f7910e3aa860be96b365de450a921dfaa Mon Sep 17 00:00:00 2001 From: rbozburun Date: Sun, 11 Feb 2024 19:35:14 +0300 Subject: [PATCH 02/10] CensysCredentialCheck functionallity moved to helpers --- controller/phishing.go | 14 +++----------- helpers/helpers.go | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/controller/phishing.go b/controller/phishing.go index 59aab69..ef59458 100644 --- a/controller/phishing.go +++ b/controller/phishing.go @@ -23,6 +23,7 @@ var ( LevenshteinDomains_Registered []models.ResponseDomain ORIGINAL_WORKING_DIR string VERBOSITY int + isVerified bool ) // TO DO @@ -126,17 +127,8 @@ func GetPhishingDomains(ctx *gin.Context) { punny_code_domains := GetPunnyCodeDomains(query_phishing_domain_model) var extracted_domains_from_ct []string - // Check SSL CT and found websites if they don't redirect to original domain - var isVerified bool - if helpers.GoDotEnvVariable("CENSYS_API_ID") != "" && helpers.GoDotEnvVariable("CENSYS_API_SECRET") != "" { - helpers.SendMessageWS("CTLogs", "CenSys credentials recieved. Trying to search for CT Logs on search.censys.io", "info") - // Verify search.censys.io API credentials - isVerified, _ = helpers.VerifyCensysCredentials(helpers.GoDotEnvVariable("CENSYS_API_ID"), helpers.GoDotEnvVariable("CENSYS_API_SECRET")) - - } else { - isVerified = false - helpers.SendMessageWS("Phishing", "Since CenSys credentials didn't set, search.censys.io CT Logs process skipped.", "info") - } + // Check Censys API credentials set correctly + isVerified = helpers.IsCensysCredsSet() for i := 0; i < len(punny_code_domains); i++ { if isVerified { diff --git a/helpers/helpers.go b/helpers/helpers.go index ee7ce04..406c1d4 100644 --- a/helpers/helpers.go +++ b/helpers/helpers.go @@ -60,6 +60,23 @@ func UniqueStrArray(input []string) []string { return uniqueArray } +// Returns true if search.censys.io API credentials set correctly else returns false +func IsCensysCredsSet() bool { + var isSet bool + if GoDotEnvVariable("CENSYS_API_ID") != "" && GoDotEnvVariable("CENSYS_API_SECRET") != "" { + SendMessageWS("CensysCredentialChecker", "CenSys credentials recieved. Trying to search for CT Logs on search.censys.io", "info") + // Verify search.censys.io API credentials + isSet, _ = VerifyCensysCredentials(GoDotEnvVariable("CENSYS_API_ID"), GoDotEnvVariable("CENSYS_API_SECRET")) + + } else { + isSet = false + SendMessageWS("CensysCredentialChecker", "Since CenSys credentials didn't set, search.censys.io CT Logs process skipped.", "info") + } + + return isSet + +} + func InitiliazeWebSocketConnection() error { API_ONLY = GoDotEnvVariable("API_ONLY") // Define the WebSocket endpoint URL. From c8ba8817f160183384ad2eee8432b62d6fb3bae2 Mon Sep 17 00:00:00 2001 From: grealyve <41903311+grealyve@users.noreply.github.com> Date: Mon, 12 Feb 2024 20:12:57 +0300 Subject: [PATCH 03/10] redundant printing fixed --- controller/source.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/controller/source.go b/controller/source.go index 59c6d3c..3e48207 100644 --- a/controller/source.go +++ b/controller/source.go @@ -83,8 +83,6 @@ func GetCTIData(urls string, ctx *gin.Context) { // Splits parameters, arguments and fills into splitedParams. for _, arg := range splitedQuery { paramValue := strings.Split(arg, "=") - fmt.Println(paramValue[0], "=", paramValue[1]) - fmt.Println(len(paramValue[1])) if len(paramValue) == 2 { splitedParams[paramValue[0]] = paramValue[1] } else { From 8a625dac7da8c44190a934ef30bfdbc7c78232b1 Mon Sep 17 00:00:00 2001 From: rbozburun Date: Tue, 20 Feb 2024 01:33:10 +0300 Subject: [PATCH 04/10] Duplicates removed from similar_domains in impersonate & caching mechanism added. --- .ENV | 2 +- controller/phishing.go | 14 +++++++++----- helpers/helpers.go | 5 ++++- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.ENV b/.ENV index 0e8be74..b1e018b 100644 --- a/.ENV +++ b/.ENV @@ -1,5 +1,5 @@ DUMP_MODE=true -API_ONLY=true +API_ONLY=false WHOIS_SERVER="whois.verisign-grs.com:43" PY_PATH="" OPENSQUAT_PY_PATH="./3rd_party/opensquat" diff --git a/controller/phishing.go b/controller/phishing.go index ef59458..9295425 100644 --- a/controller/phishing.go +++ b/controller/phishing.go @@ -21,6 +21,7 @@ import ( var ( LevenshteinDomains_Registered []models.ResponseDomain + QueriedDomain string // It holds previous request's queried domain ORIGINAL_WORKING_DIR string VERBOSITY int isVerified bool @@ -654,16 +655,18 @@ func GetImpersonatingDomains(ctx *gin.Context) { return } - // Apply leveinsthein algortihm to generate new domains, set the treshold %33 of the provided input - wanted_distance := len(query_phishing_domain_model.Hostname) / 3 - similar_domains := helpers.GenerateSimilarDomains(query_phishing_domain_model.Hostname, wanted_distance, query_phishing_domain_model.TLD) - // If LevenstheinDomains_Registered already calculated, simply return it - if len(LevenshteinDomains_Registered) > 0 { + // TO DO: The queried domain should be checked + if len(LevenshteinDomains_Registered) > 0 && QueriedDomain == query_phishing_domain_model.Domain { ctx.JSON(http.StatusOK, &LevenshteinDomains_Registered) return } + // Apply leveinsthein algortihm to generate new domains, set the treshold %33 of the provided input + wanted_distance := len(query_phishing_domain_model.Hostname) / 3 + similar_domains := helpers.GenerateSimilarDomains(query_phishing_domain_model.Hostname, wanted_distance, query_phishing_domain_model.TLD) + logger.Log.Debugf("Similar domains by levensthein: %v", similar_domains) + // [x] Check the whois records of generated domains logger.Log.Infoln("Whois checker started...") @@ -694,6 +697,7 @@ func GetImpersonatingDomains(ctx *gin.Context) { // Set LevenstheinDomains_Registered for PhishingController LevenshteinDomains_Registered = response_possible_ph_domains + QueriedDomain = query_phishing_domain_model.Domain helpers.SendMessageWS("", "--------------------------------------------------------", "") helpers.SendMessageWS("", "-------------- IMPERSONATE MODULE RESULTS --------------", "") diff --git a/helpers/helpers.go b/helpers/helpers.go index 406c1d4..099c06c 100644 --- a/helpers/helpers.go +++ b/helpers/helpers.go @@ -630,7 +630,10 @@ func GenerateSimilarDomains(input string, threshold int, tld string) []string { } } - return similarStrings + // Make elements unique, remove duplicates + unique_similarStrings := UniqueStrArray(similarStrings) + + return unique_similarStrings } // Helper function to manage functions running at specific intervals. From 5500b872b4fb4fcec7c642df2d2d288fd12cdb6c Mon Sep 17 00:00:00 2001 From: Resul Bozburun <59255765+rbozburun@users.noreply.github.com> Date: Tue, 20 Feb 2024 01:52:08 +0300 Subject: [PATCH 05/10] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fafd929..ade844e 100644 --- a/README.md +++ b/README.md @@ -67,9 +67,9 @@ In this document, you'll find `usage & installation` guide. You can check our [d - [https://go.dev/dl/](https://go.dev/dl/) - Python 3.6+ - It is needed for OpenSquat. -- OpenSquat +- OpenSquat **(Optional, increases Phishing & Impersonate module performance)** - https://github.com/atenreiro/opensquat -- search.censys.io API ID and API KEY +- search.censys.io API ID and API KEY **(Optional, increases Phishing & Impersonate module performance)** - It's used in Phishing module and controlled in .ENV file with `CENSYS_API_SECRET` key. We'll see .ENV file in the **Configuration** section. - `7777` and `7778` ports should be available - "**google-chrome**" executable file should present in $PATH From 30c69a0e283f34f3ed381cf3cd9177d5e010badd Mon Sep 17 00:00:00 2001 From: grealyve <41903311+grealyve@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:07:22 +0300 Subject: [PATCH 06/10] domain validation function coded and response timeout implemented --- controller/blacklist.go | 67 +- helpers/helpers.go | 86 +- models/blacklist.go | 7 + src/activitiesRansomData.json | 3022 ++++++++++++++++++++-- src/threatProfileRansomwareProfiles.json | 843 +++--- 5 files changed, 3470 insertions(+), 555 deletions(-) create mode 100644 models/blacklist.go diff --git a/controller/blacklist.go b/controller/blacklist.go index 23c0996..2b532bf 100644 --- a/controller/blacklist.go +++ b/controller/blacklist.go @@ -10,16 +10,11 @@ import ( "github.com/Chista-Framework/Chista/helpers" "github.com/Chista-Framework/Chista/logger" + "github.com/Chista-Framework/Chista/models" "github.com/chromedp/chromedp" "github.com/gin-gonic/gin" ) -type blacklst struct { - Status string `json:"status"` - Name string `json:"name"` - Link string `json:"link"` -} - const ( BLACKLISTURL = "https://mxtoolbox.com/blacklists.aspx" ) @@ -32,11 +27,18 @@ func CheckBlacklist(ctx *gin.Context) { ctx.JSON(http.StatusInternalServerError, gin.H{"msg": "Cannot initilaize WebSocket connection with Client. If you want to use just HTTP API set API_ONLY=true"}) return } - time.Sleep(3 * time.Second) + time.Sleep(1 * time.Second) defer helpers.CloseWSConnection() - // Query string created. - userInput := ctx.Query("asset") + // Query string checked for the domain and IP validation by ParseGivenDomain function. + userDomain, err := helpers.ParseGivenDomain(ctx.Query("asset")) + if err != nil { + logger.Log.Errorln("An error occurred during input parsing:", err) + helpers.SendMessageWS("Blacklist", strings.ToUpper(err.Error()), "error") + ctx.JSON(http.StatusBadRequest, gin.H{"error": err.Error()}) + helpers.SendMessageWS("Blacklist", "chista_EXIT_chista", "info") + return + } // Checking the verbosity condition. if ctx.Query("verbosity") != "" { @@ -56,44 +58,47 @@ func CheckBlacklist(ctx *gin.Context) { helpers.VERBOSITY = verbosity // Creattes context for http request. - c, cancel := chromedp.NewContext(context.Background()) - defer cancel() + timeoutContext, timeoutCancel := context.WithTimeout(context.Background(), 45*time.Second) + defer timeoutCancel() + + chromedpContext, chromedpCancel := chromedp.NewContext(timeoutContext) + defer chromedpCancel() // Table variable created for scraping data table. var tableHTML string - helpers.SendMessageWS("Blacklist", "Reaching the source to check ip/domain.", "debug") - logger.Log.Info("Reaching the source to check ip/domain.") + helpers.SendMessageWS("Blacklist", "Reaching the source to check ip/domain: "+userDomain, "debug") + logger.Log.Info("Reaching the source to check ip/domain: " + userDomain) - // Scrapes the url. - err = chromedp.Run(c, + // Scrapes the website. + err = chromedp.Run(chromedpContext, chromedp.Navigate(BLACKLISTURL), chromedp.Click(`#ctl00_ContentPlaceHolder1_ucToolhandler_txtToolInput`, chromedp.ByID), - chromedp.SendKeys(`#ctl00_ContentPlaceHolder1_ucToolhandler_txtToolInput`, userInput, chromedp.ByID), + chromedp.SendKeys(`#ctl00_ContentPlaceHolder1_ucToolhandler_txtToolInput`, userDomain, chromedp.ByID), chromedp.KeyEvent("\r"), chromedp.Sleep(5*time.Second), chromedp.OuterHTML(`tbody`, &tableHTML, chromedp.ByQuery), ) if err != nil { logger.Log.Errorln("An error occurred during reaching the source", err) - ctx.JSON(http.StatusNotFound, gin.H{"message": "An error occurred during reaching the source"}) - helpers.SendMessageWS("Blacklist", "An error occurred during reaching the source", "error") + helpers.SendMessageWS("Blacklist", "An error occurred during reaching the source "+err.Error(), "error") + helpers.SendMessageWS("Blacklist", "chista_EXIT_chista", "info") + ctx.JSON(http.StatusNotFound, gin.H{"message": err.Error()}) return } // Filters the table data from whole response body. - blist := extractTableRows(tableHTML) - time.Sleep(3 * time.Second) + backlistedList := extractTableRows(tableHTML) // Returns the filtered data. - if len(blist) == 0 { + if len(backlistedList) == 0 { ctx.JSON(http.StatusOK, gin.H{"message": "IP/Domain is not blacklisted."}) helpers.SendMessageWS("Blacklist", fmt.Sprintln("IP/DOMAIN IS NOT BLACKLISTED."), "info") helpers.SendMessageWS("Blacklist", "chista_EXIT_chista", "info") } else { - ctx.JSON(http.StatusOK, blist) - for _, blacklistedSources := range blist{ - helpers.SendMessageWS("", fmt.Sprintf("\n-------------------[%v]-------------------\nLink: %v\n%v\n", - blacklistedSources.Name, blacklistedSources.Link, blacklistedSources.Status), "") + ctx.JSON(http.StatusOK, backlistedList) + for _, blacklistedSources := range backlistedList { + helpers.SendMessageWS("", fmt.Sprintf("\n-------------------[%v]-------------------\nLink: %v\n%v\n", + blacklistedSources.Name, blacklistedSources.Status, blacklistedSources.Link), "") } helpers.SendMessageWS("Blacklist", "chista_EXIT_chista", "info") } @@ -101,11 +106,11 @@ func CheckBlacklist(ctx *gin.Context) { } // Filters the table data from whole response body. -func extractTableRows(tableHTML string) []blacklst { - helpers.SendMessageWS("Blacklist", "Filtering data...", "info") +func extractTableRows(tableHTML string) []models.Blacklst { + helpers.SendMessageWS("Blacklist", "Filtering data...", "debug") logger.Log.Debugln("Filtering the data") - lst := []blacklst{} + statusBlacklistedDNSList := []models.Blacklst{} rows := strings.Split(tableHTML, "") for _, row := range rows { @@ -118,10 +123,10 @@ func extractTableRows(tableHTML string) []blacklst { linkEndIndex := strings.Index(row[linkStartIndex:], "\"") + linkStartIndex link := row[linkStartIndex:linkEndIndex] - l1 := blacklst{Status: "Status Blacklisted", Name: name, Link: link} - lst = append(lst, l1) + statusBlacklistedDNS := models.Blacklst{Status: "Status Blacklisted", Name: name, Link: link} + statusBlacklistedDNSList = append(statusBlacklistedDNSList, statusBlacklistedDNS) } } - return lst + return statusBlacklistedDNSList } diff --git a/helpers/helpers.go b/helpers/helpers.go index 406c1d4..4d00bca 100644 --- a/helpers/helpers.go +++ b/helpers/helpers.go @@ -4,6 +4,7 @@ import ( "bytes" "encoding/base64" "encoding/json" + "errors" "fmt" "io" "io/ioutil" @@ -11,6 +12,7 @@ import ( "net/http" "net/url" "os" + "regexp" "strings" "sync" "time" @@ -22,6 +24,12 @@ import ( "golang.org/x/net/idna" ) +const ( + URL string = `(?i)\b(?Phttps?|ftp):\/\/(?P[-A-Z0-9.]+)(?P\/[-A-Z0-9+&@#\/%=~_|!:,.;]*)?(?P\?[A-Z0-9+&@#\/%=~_|!:,.;]*)?` + IP string = `\b(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b` + EMAIL string = `(?P[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})` +) + var PSUDO_MAP = map[string]string{ "c": "ç", "g": "ğ", @@ -39,10 +47,13 @@ var PSUDO_MAP = map[string]string{ } var ( - VERBOSITY int - CONN *websocket.Conn - API_ONLY string - MU sync.Mutex + VERBOSITY int + CONN *websocket.Conn + API_ONLY string + MU sync.Mutex + regexURL = regexp.MustCompile(URL) + regexEmail = regexp.MustCompile(EMAIL) + regexIP = regexp.MustCompile(IP) ) // Function to make unique string array. Eliminates the duplicates @@ -634,6 +645,7 @@ func GenerateSimilarDomains(input string, threshold int, tld string) []string { } // Helper function to manage functions running at specific intervals. +// It takes a map of functions and their intervals and runs the functions periodically. func RunPeriodicly(functions map[string]models.PeriodicFunctions, quit chan struct{}) { SendMessageWS("Activities", "Checking and starting periodic functions...", "trace") for name, function := range functions { @@ -657,3 +669,69 @@ func RunPeriodicly(functions map[string]models.PeriodicFunctions, quit chan stru }(name, function) } } + +// Function to validate the given input string. Return the validated URL or an error. +// It checks if the input is an email, IP address, or URL and returns the hostname part of the input. +func URLValidator(userInput string) (string, error) { + if regexEmail.MatchString(userInput) { + matchedEmail := regexEmail.FindStringSubmatch(userInput) + if strings.Contains(matchedEmail[1], "@") { + userInput = matchedEmail[1] + + SendMessageWS("Blacklist", fmt.Sprintf("Checking Domain: %v", userInput), "debug") + logger.Log.Debugf("Checking Domain: %v", userInput) + return userInput, nil + } else { + return "", errors.New("invalid input type please enter a valid mail domain") + } + + } else if regexIP.MatchString(userInput) { + matchedIPAdress := regexIP.FindStringSubmatch(userInput) + if matchedIPAdress[0] != "" { + userInput = matchedIPAdress[0] + + SendMessageWS("Blacklist", fmt.Sprintf("Checking IP: %v", userInput), "debug") + logger.Log.Debugf("Checking IP: %v", userInput) + return userInput, nil + } else { + return "", errors.New("invalid input type please enter a valid ip address") + } + + } else if regexURL.MatchString(userInput) { + matchedDomain := regexURL.FindStringSubmatch(userInput) + if matchedDomain[2] != "" { + userInput = matchedDomain[2] + + SendMessageWS("Blacklist", fmt.Sprintf("Checking URL: %v", userInput), "debug") + logger.Log.Debugf("Checking URL: %v", userInput) + return userInput, nil + } else { + return "", errors.New("invalid input type please enter a valid URL") + } + } + + return "", errors.New("sorry our regexes couldn't match your input, please enter a valid domain name or ip and try again") +} + +func ParseGivenDomain(domainToParse string) (string, error) { + var userDomain string + parsedInput, err := url.Parse(domainToParse) + if err != nil { + return "", err + } + + if parsedInput.Hostname() == "" { + userDomain = parsedInput.Path + } else { + userDomain = parsedInput.Hostname() + } + + userDomain = strings.ReplaceAll(userDomain, " ", "") + userDomain = strings.ReplaceAll(userDomain, "+", "") + // checks if the user input is empty. + if userDomain == "" { + return "", errors.New("invalid input type please enter a valid domain name or ip and try again") + } + + return userDomain, nil +} diff --git a/models/blacklist.go b/models/blacklist.go new file mode 100644 index 0000000..27c4f3e --- /dev/null +++ b/models/blacklist.go @@ -0,0 +1,7 @@ +package models + +type Blacklst struct { + Status string `json:"status"` + Name string `json:"name"` + Link string `json:"link"` +} diff --git a/src/activitiesRansomData.json b/src/activitiesRansomData.json index a1fb1ad..ca173ef 100644 --- a/src/activitiesRansomData.json +++ b/src/activitiesRansomData.json @@ -455,17 +455,17 @@ "discovered": "2021-09-09 23:46:53.997398" }, { - "post_title": "hammer-poznan.p...", + "post_title": "hammer-poznan.pl", "group_name": "lockbit2", "discovered": "2021-09-09 23:46:53.997398" }, { - "post_title": "hancockassociat...", + "post_title": "hancockassociates.com", "group_name": "lockbit2", "discovered": "2021-09-09 23:46:53.997398" }, { - "post_title": "jockeyclub.org....", + "post_title": "jockeyclub.org.ar", "group_name": "lockbit2", "discovered": "2021-09-09 23:46:53.997398" }, @@ -490,7 +490,7 @@ "discovered": "2021-09-09 23:46:53.997398" }, { - "post_title": "universalwindow...", + "post_title": "universalwindow.com", "group_name": "lockbit2", "discovered": "2021-09-09 23:46:53.997398" }, @@ -3530,7 +3530,7 @@ "discovered": "2021-09-10 00:40:42.305867" }, { - "post_title": "royalporcelain....", + "post_title": "royalporcelain.co.th", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.315222" }, @@ -3580,7 +3580,7 @@ "discovered": "2021-09-10 00:40:42.393579" }, { - "post_title": "soenen-golfkart...", + "post_title": "soenen-golfkarton.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.402126" }, @@ -3625,7 +3625,7 @@ "discovered": "2021-09-10 00:40:42.462335" }, { - "post_title": "maximusinfoware...", + "post_title": "maximusinfoware.in", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.475931" }, @@ -3670,7 +3670,7 @@ "discovered": "2021-09-10 00:40:42.545389" }, { - "post_title": "softvision.com....", + "post_title": "softvision.com.br", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.553905" }, @@ -3700,7 +3700,7 @@ "discovered": "2021-09-10 00:40:42.597688" }, { - "post_title": "alta-electronic...", + "post_title": "alta-electronics.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.606353" }, @@ -3710,7 +3710,7 @@ "discovered": "2021-09-10 00:40:42.614661" }, { - "post_title": "servisistanbul....", + "post_title": "servisistanbul.com.tr", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.623056" }, @@ -3740,12 +3740,12 @@ "discovered": "2021-09-10 00:40:42.666585" }, { - "post_title": "ethiopianairlin...", + "post_title": "ethiopianairlines.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.674788" }, { - "post_title": "beardowadams.co...", + "post_title": "beardowadams.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.683733" }, @@ -3765,7 +3765,7 @@ "discovered": "2021-09-10 00:40:42.709393" }, { - "post_title": "livingflame.co....", + "post_title": "livingflame.co.nz", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.717084" }, @@ -3780,7 +3780,7 @@ "discovered": "2021-09-10 00:40:42.732821" }, { - "post_title": "autoelectric.co...", + "post_title": "autoelectric.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.740435" }, @@ -3805,7 +3805,7 @@ "discovered": "2021-09-10 00:40:42.771122" }, { - "post_title": "audit-treuhand....", + "post_title": "audit-treuhand.ch", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.779338" }, @@ -3820,7 +3820,7 @@ "discovered": "2021-09-10 00:40:42.795916" }, { - "post_title": "nusantararegas....", + "post_title": "nusantararegas.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.804420" }, @@ -3845,7 +3845,7 @@ "discovered": "2021-09-10 00:40:42.840534" }, { - "post_title": "inlineplumbing....", + "post_title": "inlineplumbing.co.nz", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.849280" }, @@ -3885,7 +3885,7 @@ "discovered": "2021-09-10 00:40:42.914037" }, { - "post_title": "yazaki-group.co...", + "post_title": "yazaki-group.com", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:42.923131" }, @@ -3925,7 +3925,7 @@ "discovered": "2021-09-10 00:40:43.023989" }, { - "post_title": "luzeirosfortale...", + "post_title": "luzeirosfortaleza.com.br", "group_name": "lockbit2", "discovered": "2021-09-10 00:40:43.035752" }, @@ -4010,7 +4010,7 @@ "discovered": "2021-09-10 20:10:10.920845" }, { - "post_title": "novohamburgo.rs...", + "post_title": "novohamburgo.rs.gov.br", "group_name": "lockbit2", "discovered": "2021-09-10 20:10:10.929888" }, @@ -4285,7 +4285,7 @@ "discovered": "2021-09-20 13:14:29.889288" }, { - "post_title": "johncockerillin...", + "post_title": "johncockerillindia.com", "group_name": "lockbit2", "discovered": "2021-09-20 13:14:29.897519" }, @@ -4370,7 +4370,7 @@ "discovered": "2021-09-22 04:11:35.552102" }, { - "post_title": "wijnendeclerck....", + "post_title": "wijnendeclerck.be", "group_name": "lockbit2", "discovered": "2021-09-22 04:11:35.562509" }, @@ -4470,12 +4470,12 @@ "discovered": "2021-09-23 20:09:52.183550" }, { - "post_title": "papierswhitebir...", + "post_title": "papierswhitebirch.com", "group_name": "lockbit2", "discovered": "2021-09-24 02:20:40.746973" }, { - "post_title": "franklinempire....", + "post_title": "franklinempire.com", "group_name": "lockbit2", "discovered": "2021-09-24 02:20:40.755736" }, @@ -4520,7 +4520,7 @@ "discovered": "2021-09-25 17:13:18.321018" }, { - "post_title": "peabodyproperti...", + "post_title": "peabodyproperties.com", "group_name": "lockbit2", "discovered": "2021-09-25 17:13:18.331708" }, @@ -4655,12 +4655,12 @@ "discovered": "2021-09-29 01:35:35.733052" }, { - "post_title": "rabbalshedekraf...", + "post_title": "rabbalshedekraft.com", "group_name": "lockbit2", "discovered": "2021-09-29 02:46:17.060167" }, { - "post_title": "sheraton.marrio...", + "post_title": "sheraton.marriott.com", "group_name": "lockbit2", "discovered": "2021-09-29 02:46:17.126664" }, @@ -4690,22 +4690,22 @@ "discovered": "2021-09-30 11:47:25.747952" }, { - "post_title": "geda-produkte.d...", + "post_title": "geda-produkte.de", "group_name": "lockbit2", "discovered": "2021-09-30 13:22:01.191311" }, { - "post_title": "transrendufense...", + "post_title": "transrendufense.com", "group_name": "lockbit2", "discovered": "2021-09-30 16:16:40.930508" }, { - "post_title": "texasacehvac.co...", + "post_title": "texasacehvac.com", "group_name": "lockbit2", "discovered": "2021-09-30 16:16:40.939511" }, { - "post_title": "nitropiso.com.m...", + "post_title": "nitropiso.com.mx", "group_name": "lockbit2", "discovered": "2021-09-30 16:16:40.948405" }, @@ -4730,7 +4730,7 @@ "discovered": "2021-09-30 22:19:31.399949" }, { - "post_title": "houstonestatepl...", + "post_title": "houstonestateplanning.com", "group_name": "lockbit2", "discovered": "2021-10-01 01:42:10.007835" }, @@ -5145,7 +5145,7 @@ "discovered": "2021-10-05 12:10:53.101402" }, { - "post_title": "barreaudecharle...", + "post_title": "barreaudecharleroi.be", "group_name": "lockbit2", "discovered": "2021-10-05 12:10:53.114998" }, @@ -5165,7 +5165,7 @@ "discovered": "2021-10-05 16:49:28.717442" }, { - "post_title": "maisonlaprise.c...", + "post_title": "maisonlaprise.com", "group_name": "lockbit2", "discovered": "2021-10-05 18:14:53.903875" }, @@ -5220,7 +5220,7 @@ "discovered": "2021-10-07 09:47:02.431284" }, { - "post_title": "kacyumara.com.b...", + "post_title": "kacyumara.com.br", "group_name": "lockbit2", "discovered": "2021-10-07 18:13:25.223510" }, @@ -5235,12 +5235,12 @@ "discovered": "2021-10-07 18:13:25.245941" }, { - "post_title": "weyers-architek...", + "post_title": "weyers-architekten.de", "group_name": "lockbit2", "discovered": "2021-10-07 18:13:25.256920" }, { - "post_title": "generalplumbing...", + "post_title": "generalplumbingsupply.com", "group_name": "lockbit2", "discovered": "2021-10-07 18:13:25.267961" }, @@ -5255,7 +5255,7 @@ "discovered": "2021-10-07 18:13:25.289984" }, { - "post_title": "jaykaltrading.c...", + "post_title": "jaykaltrading.com", "group_name": "lockbit2", "discovered": "2021-10-07 18:13:25.300850" }, @@ -5265,7 +5265,7 @@ "discovered": "2021-10-07 20:41:44.076791" }, { - "post_title": "cobabebrothers....", + "post_title": "cobabebrothers.com", "group_name": "lockbit2", "discovered": "2021-10-07 23:13:23.611085" }, @@ -5310,7 +5310,7 @@ "discovered": "2021-10-09 14:48:04.291927" }, { - "post_title": "watermarkbeachr...", + "post_title": "watermarkbeachresort.com", "group_name": "lockbit2", "discovered": "2021-10-09 20:15:24.028708" }, @@ -5320,7 +5320,7 @@ "discovered": "2021-10-09 20:15:24.039895" }, { - "post_title": "weber-betonpump...", + "post_title": "weber-betonpumpen.at", "group_name": "lockbit2", "discovered": "2021-10-09 20:15:24.050969" }, @@ -5340,7 +5340,7 @@ "discovered": "2021-10-10 20:11:30.521439" }, { - "post_title": "hybuilding.com....", + "post_title": "hybuilding.com.sg", "group_name": "lockbit2", "discovered": "2021-10-10 22:19:57.538650" }, @@ -5395,12 +5395,12 @@ "discovered": "2021-10-13 03:04:34.596222" }, { - "post_title": "hitrac-engineer...", + "post_title": "hitrac-engineering.com", "group_name": "lockbit2", "discovered": "2021-10-13 11:59:00.160449" }, { - "post_title": "wolfbergalvarez...", + "post_title": "wolfbergalvarez.com", "group_name": "lockbit2", "discovered": "2021-10-13 11:59:00.172898" }, @@ -5655,7 +5655,7 @@ "discovered": "2021-10-20 15:22:40.335242" }, { - "post_title": "thefoxhillclub....", + "post_title": "thefoxhillclub.com", "group_name": "lockbit2", "discovered": "2021-10-20 18:53:26.713923" }, @@ -5685,7 +5685,7 @@ "discovered": "2021-10-21 13:06:42.997014" }, { - "post_title": "bataviacontaine...", + "post_title": "bataviacontainer.com", "group_name": "lockbit2", "discovered": "2021-10-21 15:28:13.382259" }, @@ -5700,7 +5700,7 @@ "discovered": "2021-10-21 15:28:13.406149" }, { - "post_title": "meritresources....", + "post_title": "meritresources.org", "group_name": "lockbit2", "discovered": "2021-10-21 15:28:13.418515" }, @@ -5875,12 +5875,12 @@ "discovered": "2021-10-24 07:21:21.338259" }, { - "post_title": "rockportmusic.o...", + "post_title": "rockportmusic.org", "group_name": "lockbit2", "discovered": "2021-10-24 09:29:29.861791" }, { - "post_title": "galaxybuilders....", + "post_title": "galaxybuilders.com", "group_name": "lockbit2", "discovered": "2021-10-24 09:29:29.874532" }, @@ -5955,7 +5955,7 @@ "discovered": "2021-10-25 23:26:13.276409" }, { - "post_title": "mediacrush.co.i...", + "post_title": "mediacrush.co.il", "group_name": "lockbit2", "discovered": "2021-10-25 23:26:13.290444" }, @@ -6040,7 +6040,7 @@ "discovered": "2021-10-27 21:24:25.553702" }, { - "post_title": "movingstation.c...", + "post_title": "movingstation.com", "group_name": "lockbit2", "discovered": "2021-10-28 02:38:14.499264" }, @@ -6090,12 +6090,12 @@ "discovered": "2021-10-28 17:59:10.181900" }, { - "post_title": "amina-treuhand....", + "post_title": "amina-treuhand.ch", "group_name": "lockbit2", "discovered": "2021-10-28 19:02:18.478659" }, { - "post_title": "rijeka-airport....", + "post_title": "rijeka-airport.hr", "group_name": "lockbit2", "discovered": "2021-10-29 15:25:47.967154" }, @@ -6145,7 +6145,7 @@ "discovered": "2021-10-30 18:59:02.091617" }, { - "post_title": "logcabinhomes.c...", + "post_title": "logcabinhomes.com", "group_name": "lockbit2", "discovered": "2021-10-31 13:27:48.933651" }, @@ -6170,12 +6170,12 @@ "discovered": "2021-11-01 13:23:45.339444" }, { - "post_title": "promo.parker.co...", + "post_title": "promo.parker.com", "group_name": "lockbit2", "discovered": "2021-11-01 13:23:45.354627" }, { - "post_title": "comune.gonzaga....", + "post_title": "comune.gonzaga.mn.it", "group_name": "lockbit2", "discovered": "2021-11-01 13:23:45.368889" }, @@ -6185,7 +6185,7 @@ "discovered": "2021-11-01 13:23:45.389313" }, { - "post_title": "morganskenderia...", + "post_title": "morganskenderian.com", "group_name": "lockbit2", "discovered": "2021-11-01 17:04:47.582291" }, @@ -6310,12 +6310,12 @@ "discovered": "2021-11-06 07:33:07.692003" }, { - "post_title": "waveridernurser...", + "post_title": "waveridernursery.com", "group_name": "lockbit2", "discovered": "2021-11-06 07:33:07.707479" }, { - "post_title": "cepimanagement....", + "post_title": "cepimanagement.com", "group_name": "lockbit2", "discovered": "2021-11-06 07:33:07.722554" }, @@ -6350,7 +6350,7 @@ "discovered": "2021-11-06 07:33:07.815556" }, { - "post_title": "owenscarolina.c...", + "post_title": "owenscarolina.com", "group_name": "lockbit2", "discovered": "2021-11-06 07:33:07.831604" }, @@ -6430,7 +6430,7 @@ "discovered": "2021-11-06 09:51:57.651502" }, { - "post_title": "autolaundrysyst...", + "post_title": "autolaundrysystems.com", "group_name": "lockbit2", "discovered": "2021-11-06 12:58:15.787825" }, @@ -6820,7 +6820,7 @@ "discovered": "2021-11-09 08:51:19.753951" }, { - "post_title": "gunninglafazia....", + "post_title": "gunninglafazia.com", "group_name": "lockbit2", "discovered": "2021-11-09 13:23:18.086616" }, @@ -6850,7 +6850,7 @@ "discovered": "2021-11-09 19:20:31.843664" }, { - "post_title": "betsaisonparago...", + "post_title": "betsaisonparagot.fr", "group_name": "lockbit2", "discovered": "2021-11-09 20:47:17.474713" }, @@ -6860,12 +6860,12 @@ "discovered": "2021-11-10 03:44:46.627687" }, { - "post_title": "thinkcaspian.co...", + "post_title": "thinkcaspian.com", "group_name": "lockbit2", "discovered": "2021-11-10 10:46:13.973484" }, { - "post_title": "comfacundi.com....", + "post_title": "comfacundi.com.co", "group_name": "lockbit2", "discovered": "2021-11-10 10:46:13.991181" }, @@ -7080,12 +7080,12 @@ "discovered": "2021-11-17 18:12:10.776726" }, { - "post_title": "peschl-ultravio...", + "post_title": "peschl-ultraviolet.com", "group_name": "lockbit2", "discovered": "2021-11-17 18:12:11.147205" }, { - "post_title": "hanshin-dp.co.j...", + "post_title": "hanshin-dp.co.jp", "group_name": "lockbit2", "discovered": "2021-11-17 18:12:11.436153" }, @@ -7165,7 +7165,7 @@ "discovered": "2021-11-21 13:24:56.037031" }, { - "post_title": "systematicatec....", + "post_title": "systematicatec.com", "group_name": "lockbit2", "discovered": "2021-11-21 14:58:21.625258" }, @@ -7220,12 +7220,12 @@ "discovered": "2021-11-22 17:04:59.662219" }, { - "post_title": "planters-oil.ne...", + "post_title": "planters-oil.net", "group_name": "lockbit2", "discovered": "2021-11-22 17:04:59.843561" }, { - "post_title": "fluidsealingpro...", + "post_title": "fluidsealingproducts.com", "group_name": "lockbit2", "discovered": "2021-11-22 17:05:00.034292" }, @@ -7265,7 +7265,7 @@ "discovered": "2021-11-22 22:41:11.270369" }, { - "post_title": "centerspacehome...", + "post_title": "centerspacehomes.com", "group_name": "lockbit2", "discovered": "2021-11-23 11:15:00.942272" }, @@ -7340,7 +7340,7 @@ "discovered": "2021-11-25 22:13:41.744968" }, { - "post_title": "ardebolassessor...", + "post_title": "ardebolassessors.cat", "group_name": "lockbit2", "discovered": "2021-11-25 22:13:42.005896" }, @@ -7365,7 +7365,7 @@ "discovered": "2021-11-26 09:12:15.740128" }, { - "post_title": "lenzcontractors...", + "post_title": "lenzcontractorsinc.com", "group_name": "lockbit2", "discovered": "2021-11-26 15:13:40.061361" }, @@ -7375,12 +7375,12 @@ "discovered": "2021-11-26 17:16:44.697908" }, { - "post_title": "nextech-asia.co...", + "post_title": "nextech-asia.com", "group_name": "lockbit2", "discovered": "2021-11-27 01:16:06.786220" }, { - "post_title": "hsvgroup.talent...", + "post_title": "hsvgroup.talentnetwork.vn", "group_name": "lockbit2", "discovered": "2021-11-27 01:16:07.182855" }, @@ -7665,7 +7665,7 @@ "discovered": "2021-12-01 07:03:02.084196" }, { - "post_title": "summit-christia...", + "post_title": "summit-christian-academy.org", "group_name": "lockbit2", "discovered": "2021-12-01 22:13:54.126414" }, @@ -7970,7 +7970,7 @@ "discovered": "2021-12-08 06:41:32.216454" }, { - "post_title": "fr.shop-orchest...", + "post_title": "fr.shop-orchestra.com", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:32.430085" }, @@ -7980,7 +7980,7 @@ "discovered": "2021-12-08 06:41:32.595727" }, { - "post_title": "kerrylogistics....", + "post_title": "kerrylogistics.com", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:32.800508" }, @@ -8000,17 +8000,17 @@ "discovered": "2021-12-08 06:41:33.330613" }, { - "post_title": "prairiesedgecas...", + "post_title": "prairiesedgecasino.com", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:33.427716" }, { - "post_title": "murrayscheese.c...", + "post_title": "murrayscheese.com", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:33.543285" }, { - "post_title": "psmportraits.co...", + "post_title": "psmportraits.com", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:33.644480" }, @@ -8025,7 +8025,7 @@ "discovered": "2021-12-08 06:41:33.878097" }, { - "post_title": "roemer-lueftung...", + "post_title": "roemer-lueftung.de", "group_name": "lockbit2", "discovered": "2021-12-08 06:41:33.999598" }, @@ -8090,7 +8090,7 @@ "discovered": "2021-12-09 18:00:02.827453" }, { - "post_title": "pacifichills.co...", + "post_title": "pacifichills.com", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:46.004208" }, @@ -8100,12 +8100,12 @@ "discovered": "2021-12-09 21:14:46.422614" }, { - "post_title": "proximitysystem...", + "post_title": "proximitysystems.com", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:46.664468" }, { - "post_title": "apexbrasil.com....", + "post_title": "apexbrasil.com.br", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:47.065047" }, @@ -8115,7 +8115,7 @@ "discovered": "2021-12-09 21:14:47.353075" }, { - "post_title": "northstarice.co...", + "post_title": "northstarice.com", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:47.708984" }, @@ -8125,7 +8125,7 @@ "discovered": "2021-12-09 21:14:47.881938" }, { - "post_title": "kssenterprises....", + "post_title": "kssenterprises.com", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:48.044480" }, @@ -8140,7 +8140,7 @@ "discovered": "2021-12-09 21:14:48.431170" }, { - "post_title": "continuumenergy...", + "post_title": "continuumenergy.in", "group_name": "lockbit2", "discovered": "2021-12-09 21:14:48.647247" }, @@ -8180,7 +8180,7 @@ "discovered": "2021-12-10 14:57:23.069320" }, { - "post_title": "tamerholding.co...", + "post_title": "tamerholding.com", "group_name": "lockbit2", "discovered": "2021-12-10 14:57:23.343816" }, @@ -8335,7 +8335,7 @@ "discovered": "2021-12-16 01:17:51.740060" }, { - "post_title": "skinnertrans.co...", + "post_title": "skinnertrans.com", "group_name": "lockbit2", "discovered": "2021-12-18 16:06:32.750989" }, @@ -8665,7 +8665,7 @@ "discovered": "2021-12-21 00:18:33.059337" }, { - "post_title": "urbandevelop.co...", + "post_title": "urbandevelop.com.au", "group_name": "lockbit2", "discovered": "2021-12-21 02:31:25.624385" }, @@ -8680,7 +8680,7 @@ "discovered": "2021-12-21 02:31:26.252030" }, { - "post_title": "lipinskilogging...", + "post_title": "lipinskilogging.com", "group_name": "lockbit2", "discovered": "2021-12-21 02:31:26.528262" }, @@ -8755,7 +8755,7 @@ "discovered": "2021-12-22 09:18:58.390782" }, { - "post_title": "pestbusters.com...", + "post_title": "pestbusters.com.sg", "group_name": "lockbit2", "discovered": "2021-12-22 17:36:10.086348" }, @@ -8810,7 +8810,7 @@ "discovered": "2021-12-24 13:22:28.773521" }, { - "post_title": "sintesiautomoti...", + "post_title": "sintesiautomotive.it", "group_name": "lockbit2", "discovered": "2021-12-24 17:22:02.278160" }, @@ -9060,7 +9060,7 @@ "discovered": "2021-12-30 18:22:47.068661" }, { - "post_title": "independentprin...", + "post_title": "independentprinting.com", "group_name": "lockbit2", "discovered": "2021-12-30 18:22:47.391752" }, @@ -9070,7 +9070,7 @@ "discovered": "2021-12-30 20:22:12.175189" }, { - "post_title": "lee-associates....", + "post_title": "lee-associates.com", "group_name": "lockbit2", "discovered": "2021-12-31 01:42:33.486882" }, @@ -9205,7 +9205,7 @@ "discovered": "2022-01-01 16:52:32.770364" }, { - "post_title": "aulss6.veneto.i...", + "post_title": "aulss6.veneto.it", "group_name": "lockbit2", "discovered": "2022-01-01 17:29:16.847283" }, @@ -9465,7 +9465,7 @@ "discovered": "2022-01-08 20:19:54.815951" }, { - "post_title": "focusadventure....", + "post_title": "focusadventure.com", "group_name": "lockbit2", "discovered": "2022-01-08 20:19:55.157481" }, @@ -9520,7 +9520,7 @@ "discovered": "2022-01-10 10:22:39.027493" }, { - "post_title": "securiteassuran...", + "post_title": "securiteassurance.com", "group_name": "lockbit2", "discovered": "2022-01-10 11:20:12.002114" }, @@ -9650,7 +9650,7 @@ "discovered": "2022-01-15 13:26:57.203272" }, { - "post_title": "fairnessforall....", + "post_title": "fairnessforall.com", "group_name": "lockbit2", "discovered": "2022-01-15 15:26:40.087101" }, @@ -9680,7 +9680,7 @@ "discovered": "2022-01-16 15:20:12.376218" }, { - "post_title": "centralbankfl.c...", + "post_title": "centralbankfl.com", "group_name": "lockbit2", "discovered": "2022-01-16 19:19:45.947709" }, @@ -9730,7 +9730,7 @@ "discovered": "2022-01-19 03:21:12.567845" }, { - "post_title": "harrisshelton.c...", + "post_title": "harrisshelton.com", "group_name": "lockbit2", "discovered": "2022-01-19 08:28:19.581790" }, @@ -9775,7 +9775,7 @@ "discovered": "2022-01-21 02:30:58.162570" }, { - "post_title": "onlinesalespro....", + "post_title": "onlinesalespro.com", "group_name": "lockbit2", "discovered": "2022-01-21 02:30:58.472112" }, @@ -10120,7 +10120,7 @@ "discovered": "2022-02-04 06:22:40.183395" }, { - "post_title": "fivestarproduct...", + "post_title": "fivestarproducts.com", "group_name": "lockbit2", "discovered": "2022-02-04 06:22:40.572789" }, @@ -10175,7 +10175,7 @@ "discovered": "2022-02-04 17:22:34.932671" }, { - "post_title": "ametisfacilitie...", + "post_title": "ametisfacilities.com", "group_name": "lockbit2", "discovered": "2022-02-04 18:25:09.863304" }, @@ -10205,7 +10205,7 @@ "discovered": "2022-02-04 20:25:26.653671" }, { - "post_title": "castro-urdiales...", + "post_title": "castro-urdiales.net", "group_name": "lockbit2", "discovered": "2022-02-04 21:29:41.606282" }, @@ -10270,12 +10270,12 @@ "discovered": "2022-02-05 09:22:50.064244" }, { - "post_title": "kainz-haustechn...", + "post_title": "kainz-haustechnik.at", "group_name": "lockbit2", "discovered": "2022-02-05 14:20:21.469374" }, { - "post_title": "tyresolesdobras...", + "post_title": "tyresolesdobrasil.com.br", "group_name": "lockbit2", "discovered": "2022-02-05 14:20:21.749237" }, @@ -10565,7 +10565,7 @@ "discovered": "2022-02-14 12:21:51.201966" }, { - "post_title": "sienaliteracy.o...", + "post_title": "sienaliteracy.org", "group_name": "lockbit2", "discovered": "2022-02-14 12:21:51.469796" }, @@ -10715,7 +10715,7 @@ "discovered": "2022-02-18 19:23:07.470161" }, { - "post_title": "botswanatourism...", + "post_title": "botswanatourism.co.bw", "group_name": "lockbit2", "discovered": "2022-02-19 10:21:47.856682" }, @@ -10725,7 +10725,7 @@ "discovered": "2022-02-19 10:21:48.123773" }, { - "post_title": "kokuyocamlin.co...", + "post_title": "kokuyocamlin.com", "group_name": "lockbit2", "discovered": "2022-02-19 10:21:48.398218" }, @@ -10760,7 +10760,7 @@ "discovered": "2022-02-19 13:28:41.472380" }, { - "post_title": "taylorswindows....", + "post_title": "taylorswindows.com", "group_name": "lockbit2", "discovered": "2022-02-19 16:20:16.170378" }, @@ -10830,7 +10830,7 @@ "discovered": "2022-02-21 15:21:48.356333" }, { - "post_title": "groupe-sobotram...", + "post_title": "groupe-sobotram.fr", "group_name": "lockbit2", "discovered": "2022-02-21 15:21:50.719654" }, @@ -10880,7 +10880,7 @@ "discovered": "2022-02-23 17:22:35.324857" }, { - "post_title": "trauma.lbg.ac.a...", + "post_title": "trauma.lbg.ac.at", "group_name": "lockbit2", "discovered": "2022-02-23 17:22:35.739772" }, @@ -11175,7 +11175,7 @@ "discovered": "2022-02-27 19:22:52.762581" }, { - "post_title": "richmondmonroe....", + "post_title": "richmondmonroe.com", "group_name": "lockbit2", "discovered": "2022-02-27 20:23:52.829373" }, @@ -11295,7 +11295,7 @@ "discovered": "2022-03-03 04:22:27.741850" }, { - "post_title": "simatelex.com.h...", + "post_title": "simatelex.com.hk", "group_name": "lockbit2", "discovered": "2022-03-03 15:23:21.984634" }, @@ -11430,12 +11430,12 @@ "discovered": "2022-03-07 13:33:40.953126" }, { - "post_title": "jrichard-paysag...", + "post_title": "jrichard-paysage.fr", "group_name": "lockbit2", "discovered": "2022-03-07 14:20:56.014185" }, { - "post_title": "stanthonys.slou...", + "post_title": "stanthonys.slough.sch.uk", "group_name": "lockbit2", "discovered": "2022-03-07 15:22:49.653082" }, @@ -11525,7 +11525,7 @@ "discovered": "2022-03-09 07:19:15.341154" }, { - "post_title": "bridgestoneamer...", + "post_title": "bridgestoneamericas.com", "group_name": "lockbit2", "discovered": "2022-03-09 23:20:58.713212" }, @@ -11570,7 +11570,7 @@ "discovered": "2022-03-12 08:20:51.499861" }, { - "post_title": "orientalaromati...", + "post_title": "orientalaromatics.com", "group_name": "lockbit2", "discovered": "2022-03-12 11:20:47.213052" }, @@ -11590,7 +11590,7 @@ "discovered": "2022-03-12 14:20:34.455215" }, { - "post_title": "snteseccion30sa...", + "post_title": "snteseccion30sartet.org.mx", "group_name": "lockbit2", "discovered": "2022-03-12 16:20:02.634310" }, @@ -11615,7 +11615,7 @@ "discovered": "2022-03-13 07:19:48.786288" }, { - "post_title": "ambujaneotia.co...", + "post_title": "ambujaneotia.com", "group_name": "lockbit2", "discovered": "2022-03-13 08:19:12.348492" }, @@ -11705,7 +11705,7 @@ "discovered": "2022-03-16 06:20:19.023836" }, { - "post_title": "medinadairy.co....", + "post_title": "medinadairy.co.uk", "group_name": "lockbit2", "discovered": "2022-03-16 07:21:57.504306" }, @@ -11735,7 +11735,7 @@ "discovered": "2022-03-16 18:22:09.119775" }, { - "post_title": "taguefamilyprac...", + "post_title": "taguefamilypractice.com", "group_name": "lockbit2", "discovered": "2022-03-16 19:20:26.487413" }, @@ -11745,7 +11745,7 @@ "discovered": "2022-03-16 20:37:59.124748" }, { - "post_title": "comune.villafra...", + "post_title": "comune.villafranca.vr.it", "group_name": "lockbit2", "discovered": "2022-03-17 03:52:13.016329" }, @@ -11850,22 +11850,22 @@ "discovered": "2022-03-17 21:22:21.376433" }, { - "post_title": "hilltopconstruc...", + "post_title": "hilltopconstructionco.com", "group_name": "lockbit2", "discovered": "2022-03-17 22:25:12.015387" }, { - "post_title": "finances.gouv.c...", + "post_title": "finances.gouv.cg", "group_name": "lockbit2", "discovered": "2022-03-17 23:24:53.799922" }, { - "post_title": "montanarisrl.ne...", + "post_title": "montanarisrl.net", "group_name": "lockbit2", "discovered": "2022-03-18 00:30:44.855913" }, { - "post_title": "thionvillenola....", + "post_title": "thionvillenola.com", "group_name": "lockbit2", "discovered": "2022-03-18 01:58:21.228934" }, @@ -11920,12 +11920,12 @@ "discovered": "2022-03-18 13:23:53.997529" }, { - "post_title": "megaproductos.c...", + "post_title": "megaproductos.com.ec", "group_name": "lockbit2", "discovered": "2022-03-18 14:26:51.631106" }, { - "post_title": "centralaccident...", + "post_title": "centralaccident.com", "group_name": "lockbit2", "discovered": "2022-03-18 15:23:09.392794" }, @@ -11935,7 +11935,7 @@ "discovered": "2022-03-18 16:22:07.237518" }, { - "post_title": "dgordonlcswr.co...", + "post_title": "dgordonlcswr.com", "group_name": "lockbit2", "discovered": "2022-03-18 17:24:53.495867" }, @@ -12020,7 +12020,7 @@ "discovered": "2022-03-20 09:23:07.516295" }, { - "post_title": "danubius-exim.r...", + "post_title": "danubius-exim.ro", "group_name": "lockbit2", "discovered": "2022-03-20 10:23:55.609644" }, @@ -12040,7 +12040,7 @@ "discovered": "2022-03-20 17:23:46.299448" }, { - "post_title": "museum-dingolfi...", + "post_title": "museum-dingolfing.de", "group_name": "lockbit2", "discovered": "2022-03-20 22:24:55.716912" }, @@ -12075,12 +12075,12 @@ "discovered": "2022-03-21 04:22:57.944680" }, { - "post_title": "chicagosteelgro...", + "post_title": "chicagosteelgroup.com", "group_name": "lockbit2", "discovered": "2022-03-21 05:21:36.122803" }, { - "post_title": "tomlinsonelectr...", + "post_title": "tomlinsonelectric.com", "group_name": "lockbit2", "discovered": "2022-03-21 06:22:40.166024" }, @@ -12190,7 +12190,7 @@ "discovered": "2022-03-22 18:20:59.892951" }, { - "post_title": "ca.daiyafoods.c...", + "post_title": "ca.daiyafoods.com", "group_name": "lockbit2", "discovered": "2022-03-22 20:22:26.199599" }, @@ -12280,7 +12280,7 @@ "discovered": "2022-03-23 16:26:16.562147" }, { - "post_title": "confindustriaca...", + "post_title": "confindustriacaserta.it", "group_name": "lockbit2", "discovered": "2022-03-23 17:25:01.150746" }, @@ -12315,7 +12315,7 @@ "discovered": "2022-03-23 23:20:23.269397" }, { - "post_title": "intouchgroup.ne...", + "post_title": "intouchgroup.net", "group_name": "lockbit2", "discovered": "2022-03-24 00:35:41.328374" }, @@ -12360,7 +12360,7 @@ "discovered": "2022-03-24 08:31:17.185308" }, { - "post_title": "serilization-se...", + "post_title": "serilization-services.com", "group_name": "lockbit2", "discovered": "2022-03-24 12:24:50.506758" }, @@ -12375,7 +12375,7 @@ "discovered": "2022-03-24 14:25:52.873857" }, { - "post_title": "stt-logistique....", + "post_title": "stt-logistique.fr", "group_name": "lockbit2", "discovered": "2022-03-24 15:27:57.322019" }, @@ -12405,12 +12405,12 @@ "discovered": "2022-03-24 21:19:55.695446" }, { - "post_title": "alaliengineerin...", + "post_title": "alaliengineering.net", "group_name": "lockbit2", "discovered": "2022-03-25 07:18:37.192795" }, { - "post_title": "standard-furnit...", + "post_title": "standard-furniture.ba", "group_name": "lockbit2", "discovered": "2022-03-25 08:26:09.275150" }, @@ -12450,7 +12450,7 @@ "discovered": "2022-03-26 11:20:59.710985" }, { - "post_title": "microflex-servi...", + "post_title": "microflex-services.de", "group_name": "lockbit2", "discovered": "2022-03-26 12:22:55.309820" }, @@ -12520,12 +12520,12 @@ "discovered": "2022-03-27 22:25:54.789293" }, { - "post_title": "pirsonholland.c...", + "post_title": "pirsonholland.com", "group_name": "lockbit2", "discovered": "2022-03-27 23:23:28.413476" }, { - "post_title": "zentrum-dreilin...", + "post_title": "zentrum-dreilinden.ch", "group_name": "lockbit2", "discovered": "2022-03-28 00:41:37.874600" }, @@ -12585,7 +12585,7 @@ "discovered": "2022-03-28 13:35:28.819780" }, { - "post_title": "progettoedilesr...", + "post_title": "progettoedilesrl.it", "group_name": "lockbit2", "discovered": "2022-03-28 14:26:16.721365" }, @@ -12735,7 +12735,7 @@ "discovered": "2022-03-30 11:23:19.707789" }, { - "post_title": "burlingtonsafet...", + "post_title": "burlingtonsafety.com", "group_name": "lockbit2", "discovered": "2022-03-30 13:28:41.864098" }, @@ -12780,7 +12780,7 @@ "discovered": "2022-03-30 19:26:24.820390" }, { - "post_title": "jlmsolicitors.c...", + "post_title": "jlmsolicitors.co.uk", "group_name": "lockbit2", "discovered": "2022-03-30 20:30:00.109610" }, @@ -12790,7 +12790,7 @@ "discovered": "2022-03-30 21:23:02.068614" }, { - "post_title": "grupodeincendio...", + "post_title": "grupodeincendios.com", "group_name": "lockbit2", "discovered": "2022-03-30 22:28:54.612409" }, @@ -12800,7 +12800,7 @@ "discovered": "2022-03-30 23:22:15.112843" }, { - "post_title": "omalleytunstall...", + "post_title": "omalleytunstall.com", "group_name": "lockbit2", "discovered": "2022-03-31 00:34:45.512001" }, @@ -12825,7 +12825,7 @@ "discovered": "2022-03-31 11:23:27.728021" }, { - "post_title": "yachtcharterfle...", + "post_title": "yachtcharterfleet.com", "group_name": "lockbit2", "discovered": "2022-03-31 12:24:12.565652" }, @@ -12840,7 +12840,7 @@ "discovered": "2022-03-31 14:31:12.036768" }, { - "post_title": "studiobrazzale....", + "post_title": "studiobrazzale.it", "group_name": "lockbit2", "discovered": "2022-03-31 16:25:54.636205" }, @@ -13020,7 +13020,7 @@ "discovered": "2022-04-03 10:22:13.087856" }, { - "post_title": "greenexperts.co...", + "post_title": "greenexperts.com.tw", "group_name": "lockbit2", "discovered": "2022-04-03 11:19:14.757486" }, @@ -13030,7 +13030,7 @@ "discovered": "2022-04-03 12:22:37.664351" }, { - "post_title": "oldenburgdeurbe...", + "post_title": "oldenburgdeurbewerking.nl", "group_name": "lockbit2", "discovered": "2022-04-03 13:24:04.116314" }, @@ -13075,7 +13075,7 @@ "discovered": "2022-04-04 12:21:53.525309" }, { - "post_title": "ascotlloyd.co.u...", + "post_title": "ascotlloyd.co.uk", "group_name": "lockbit2", "discovered": "2022-04-04 13:27:11.154085" }, @@ -13200,12 +13200,12 @@ "discovered": "2022-04-07 05:21:10.715198" }, { - "post_title": "get-entkernung....", + "post_title": "get-entkernung.de", "group_name": "lockbit2", "discovered": "2022-04-07 12:24:46.369804" }, { - "post_title": "feuerschutzbock...", + "post_title": "feuerschutzbockel.de", "group_name": "lockbit2", "discovered": "2022-04-07 13:33:17.416338" }, @@ -13345,7 +13345,7 @@ "discovered": "2022-04-11 08:25:52.986159" }, { - "post_title": "tokyo-plant.co....", + "post_title": "tokyo-plant.co.jp", "group_name": "lockbit2", "discovered": "2022-04-11 09:22:33.394406" }, @@ -13355,7 +13355,7 @@ "discovered": "2022-04-11 12:24:46.195438" }, { - "post_title": "azcomputerlabs....", + "post_title": "azcomputerlabs.com", "group_name": "lockbit2", "discovered": "2022-04-11 15:25:41.687368" }, @@ -13465,7 +13465,7 @@ "discovered": "2022-04-12 13:28:38.808213" }, { - "post_title": "inglotcosmetics...", + "post_title": "inglotcosmetics.com", "group_name": "lockbit2", "discovered": "2022-04-12 14:19:15.730861" }, @@ -13490,7 +13490,7 @@ "discovered": "2022-04-13 08:18:19.940604" }, { - "post_title": "get-greenenergy...", + "post_title": "get-greenenergy.com", "group_name": "lockbit2", "discovered": "2022-04-13 11:23:00.404171" }, @@ -13545,7 +13545,7 @@ "discovered": "2022-04-14 07:17:42.500192" }, { - "post_title": "polyplastics.co...", + "post_title": "polyplastics.com", "group_name": "lockbit2", "discovered": "2022-04-14 08:20:50.038623" }, @@ -13570,7 +13570,7 @@ "discovered": "2022-04-14 14:26:29.102333" }, { - "post_title": "soharportandfre...", + "post_title": "soharportandfreezone.com", "group_name": "lockbit2", "discovered": "2022-04-14 15:19:56.492659" }, @@ -13620,7 +13620,7 @@ "discovered": "2022-04-15 08:21:10.029586" }, { - "post_title": "enclosuresoluti...", + "post_title": "enclosuresolutions.co.za", "group_name": "lockbit2", "discovered": "2022-04-15 11:29:25.017116" }, @@ -13635,7 +13635,7 @@ "discovered": "2022-04-15 14:21:53.375024" }, { - "post_title": "inland-engineer...", + "post_title": "inland-engineering.com", "group_name": "lockbit2", "discovered": "2022-04-15 17:32:37.569603" }, @@ -13680,7 +13680,7 @@ "discovered": "2022-04-18 07:27:19.883452" }, { - "post_title": "gruppoathesis.i...", + "post_title": "gruppoathesis.it", "group_name": "lockbit2", "discovered": "2022-04-18 09:23:11.750665" }, @@ -13755,7 +13755,7 @@ "discovered": "2022-04-19 15:25:31.551630" }, { - "post_title": "compagniedephal...", + "post_title": "compagniedephalsbourg.com", "group_name": "lockbit2", "discovered": "2022-04-19 16:25:12.342494" }, @@ -13815,7 +13815,7 @@ "discovered": "2022-04-20 17:31:15.131593" }, { - "post_title": "baugeschaeft-bo...", + "post_title": "baugeschaeft-boltin.de", "group_name": "lockbit2", "discovered": "2022-04-20 18:23:46.941087" }, @@ -13950,7 +13950,7 @@ "discovered": "2022-04-22 07:28:37.403154" }, { - "post_title": "produitsneptune...", + "post_title": "produitsneptune.com", "group_name": "lockbit2", "discovered": "2022-04-22 09:31:27.637946" }, @@ -13960,7 +13960,7 @@ "discovered": "2022-04-22 10:29:37.552008" }, { - "post_title": "fazenda.rj.gov....", + "post_title": "fazenda.rj.gov.br", "group_name": "lockbit2", "discovered": "2022-04-22 12:27:23.704748" }, @@ -14080,7 +14080,7 @@ "discovered": "2022-04-25 13:41:01.655828" }, { - "post_title": "multimmobiliare...", + "post_title": "multimmobiliare.ch", "group_name": "lockbit2", "discovered": "2022-04-25 14:34:21.755977" }, @@ -14215,12 +14215,12 @@ "discovered": "2022-04-27 18:46:06.811997" }, { - "post_title": "davislandscapel...", + "post_title": "davislandscapeltd.com", "group_name": "lockbit2", "discovered": "2022-04-27 23:29:53.252145" }, { - "post_title": "warrengibson.co...", + "post_title": "warrengibson.com", "group_name": "lockbit2", "discovered": "2022-04-27 23:29:55.341759" }, @@ -14425,12 +14425,12 @@ "discovered": "2022-04-30 03:42:20.417343" }, { - "post_title": "7generations.or...", + "post_title": "7generations.org", "group_name": "lockbit2", "discovered": "2022-04-30 11:26:49.248196" }, { - "post_title": "hispanoamerican...", + "post_title": "hispanoamericano.edu.mx", "group_name": "lockbit2", "discovered": "2022-04-30 11:26:50.541750" }, @@ -14465,7 +14465,7 @@ "discovered": "2022-05-01 01:59:15.175421" }, { - "post_title": "orthopaedie-app...", + "post_title": "orthopaedie-appenzell.ch", "group_name": "lockbit2", "discovered": "2022-05-01 11:26:53.141523" }, @@ -14530,7 +14530,7 @@ "discovered": "2022-05-02 17:32:13.862595" }, { - "post_title": "cwaengineers.co...", + "post_title": "cwaengineers.com", "group_name": "lockbit2", "discovered": "2022-05-02 17:32:14.788519" }, @@ -14760,7 +14760,7 @@ "discovered": "2022-05-06 11:30:55.905928" }, { - "post_title": "realestateconsu...", + "post_title": "realestateconsulting.com", "group_name": "lockbit2", "discovered": "2022-05-07 00:37:46.710705" }, @@ -14820,7 +14820,7 @@ "discovered": "2022-05-10 02:51:28.041379" }, { - "post_title": "silverbayseafoo...", + "post_title": "silverbayseafoods.com", "group_name": "lockbit2", "discovered": "2022-05-10 09:27:19.444313" }, @@ -14910,12 +14910,12 @@ "discovered": "2022-05-13 08:25:28.255070" }, { - "post_title": "agapemeanslove....", + "post_title": "agapemeanslove.org", "group_name": "lockbit2", "discovered": "2022-05-13 09:25:09.202265" }, { - "post_title": "alliancesand.co...", + "post_title": "alliancesand.com", "group_name": "lockbit2", "discovered": "2022-05-13 09:25:09.549286" }, @@ -14925,7 +14925,7 @@ "discovered": "2022-05-13 09:25:11.978768" }, { - "post_title": "bradfordmarine....", + "post_title": "bradfordmarine.com", "group_name": "lockbit2", "discovered": "2022-05-13 11:29:26.395576" }, @@ -14985,7 +14985,7 @@ "discovered": "2022-05-14 18:33:45.849218" }, { - "post_title": "boltburdon.co.u...", + "post_title": "boltburdon.co.uk", "group_name": "lockbit2", "discovered": "2022-05-15 05:32:07.430322" }, @@ -14995,7 +14995,7 @@ "discovered": "2022-05-15 20:28:52.884319" }, { - "post_title": "arcelormittal.h...", + "post_title": "arcelormittal.hu", "group_name": "lockbit2", "discovered": "2022-05-16 08:26:31.269741" }, @@ -15025,7 +15025,7 @@ "discovered": "2022-05-16 10:28:54.768794" }, { - "post_title": "saludparatodos....", + "post_title": "saludparatodos.ssm.gob.mx", "group_name": "lockbit2", "discovered": "2022-05-16 10:28:55.121969" }, @@ -15050,7 +15050,7 @@ "discovered": "2022-05-16 11:46:32.942447" }, { - "post_title": "sherpamarketing...", + "post_title": "sherpamarketing.ca", "group_name": "lockbit2", "discovered": "2022-05-16 11:46:35.103751" }, @@ -15115,7 +15115,7 @@ "discovered": "2022-05-17 20:29:18.270313" }, { - "post_title": "modetransportat...", + "post_title": "modetransportation.com", "group_name": "lockbit2", "discovered": "2022-05-17 21:34:21.048520" }, @@ -15145,7 +15145,7 @@ "discovered": "2022-05-18 17:33:01.581702" }, { - "post_title": "clublinks.com.a...", + "post_title": "clublinks.com.au", "group_name": "lockbit2", "discovered": "2022-05-18 23:34:03.144933" }, @@ -15195,7 +15195,7 @@ "discovered": "2022-05-19 12:30:04.583894" }, { - "post_title": "groupe-trouille...", + "post_title": "groupe-trouillet.com", "group_name": "lockbit2", "discovered": "2022-05-19 12:30:04.981456" }, @@ -15215,7 +15215,7 @@ "discovered": "2022-05-19 17:48:43.506990" }, { - "post_title": "skinnertrans.ne...", + "post_title": "skinnertrans.net", "group_name": "lockbit2", "discovered": "2022-05-19 17:48:44.718557" }, @@ -15235,7 +15235,7 @@ "discovered": "2022-05-20 01:57:41.779543" }, { - "post_title": "morrisonexpress...", + "post_title": "morrisonexpress.com", "group_name": "lockbit2", "discovered": "2022-05-20 09:28:07.436769" }, @@ -15260,7 +15260,7 @@ "discovered": "2022-05-20 18:25:33.145849" }, { - "post_title": "salumificiovene...", + "post_title": "salumificiovenegoni.it", "group_name": "lockbit2", "discovered": "2022-05-20 20:39:04.223733" }, @@ -15395,7 +15395,7 @@ "discovered": "2022-05-24 06:26:07.175952" }, { - "post_title": "virtus-advocate...", + "post_title": "virtus-advocaten.be", "group_name": "lockbit2", "discovered": "2022-05-24 09:24:38.260711" }, @@ -15420,17 +15420,17 @@ "discovered": "2022-05-24 14:28:25.237190" }, { - "post_title": "architectenbure...", + "post_title": "architectenbureaugofflo.be", "group_name": "lockbit2", "discovered": "2022-05-24 15:28:07.479982" }, { - "post_title": "erdwaerme-gruen...", + "post_title": "erdwaerme-gruenwald.de", "group_name": "lockbit2", "discovered": "2022-05-24 15:28:11.301158" }, { - "post_title": "kuwaitflourmill...", + "post_title": "kuwaitflourmills.com", "group_name": "lockbit2", "discovered": "2022-05-24 15:28:14.675636" }, @@ -15445,7 +15445,7 @@ "discovered": "2022-05-24 16:28:27.362540" }, { - "post_title": "vitalprev.com.b...", + "post_title": "vitalprev.com.br", "group_name": "lockbit2", "discovered": "2022-05-24 16:28:32.036375" }, @@ -15545,7 +15545,7 @@ "discovered": "2022-05-26 19:39:54.881528" }, { - "post_title": "ils.theinnovate...", + "post_title": "ils.theinnovatecompanies.com", "group_name": "lockbit2", "discovered": "2022-05-26 20:28:28.387832" }, @@ -15645,7 +15645,7 @@ "discovered": "2022-05-29 10:26:51.188059" }, { - "post_title": "hospitalsanjose...", + "post_title": "hospitalsanjose.es", "group_name": "lockbit2", "discovered": "2022-05-29 14:29:17.983090" }, @@ -15670,7 +15670,7 @@ "discovered": "2022-05-30 08:35:17.805150" }, { - "post_title": "tcpharmachem.co...", + "post_title": "tcpharmachem.com", "group_name": "lockbit2", "discovered": "2022-05-30 09:32:01.249392" }, @@ -15785,7 +15785,7 @@ "discovered": "2022-06-02 10:30:29.145872" }, { - "post_title": "closetheloopeu....", + "post_title": "closetheloopeu.com", "group_name": "lockbit2", "discovered": "2022-06-02 15:45:44.092623" }, @@ -15825,7 +15825,7 @@ "discovered": "2022-06-04 01:54:28.733578" }, { - "post_title": "familyclinicbri...", + "post_title": "familyclinicbridgeport.com", "group_name": "lockbit2", "discovered": "2022-06-04 07:30:50.489951" }, @@ -15860,17 +15860,17 @@ "discovered": "2022-06-04 20:47:19.836280" }, { - "post_title": "vainieritraspor...", + "post_title": "vainieritrasporti.com", "group_name": "lockbit2", "discovered": "2022-06-04 21:54:44.103468" }, { - "post_title": "bestattung-walz...", + "post_title": "bestattung-walzer.at", "group_name": "lockbit2", "discovered": "2022-06-05 19:28:31.973788" }, { - "post_title": "kansashighwaypa...", + "post_title": "kansashighwaypatrol.org", "group_name": "lockbit2", "discovered": "2022-06-05 19:28:35.305029" }, @@ -15890,7 +15890,7 @@ "discovered": "2022-06-06 09:26:36.368961" }, { - "post_title": "patralogistik.c...", + "post_title": "patralogistik.com", "group_name": "lockbit2", "discovered": "2022-06-06 09:26:38.362522" }, @@ -16105,7 +16105,7 @@ "discovered": "2022-06-14 19:32:38.105601" }, { - "post_title": "gruppowasteital...", + "post_title": "gruppowasteitalia.it", "group_name": "lockbit2", "discovered": "2022-06-14 22:35:28.150629" }, @@ -16210,7 +16210,7 @@ "discovered": "2022-06-18 15:50:00.459854" }, { - "post_title": "vectorinf.com.b...", + "post_title": "vectorinf.com.br", "group_name": "lockbit2", "discovered": "2022-06-18 15:50:03.085386" }, @@ -16235,7 +16235,7 @@ "discovered": "2022-06-20 05:02:35.772779" }, { - "post_title": "kuwaitairways.c...", + "post_title": "kuwaitairways.com", "group_name": "lockbit2", "discovered": "2022-06-20 16:36:28.191569" }, @@ -16260,7 +16260,7 @@ "discovered": "2022-06-21 06:41:40.856142" }, { - "post_title": "farmaciacirici....", + "post_title": "farmaciacirici.com", "group_name": "lockbit2", "discovered": "2022-06-21 07:40:54.151620" }, @@ -48678,5 +48678,2605 @@ "post_title": "sahchicago.org", "group_name": "lockbit3", "discovered": "2024-01-31 02:45:26.348346" + }, + { + "post_title": "http://www.northhill.org", + "group_name": "blacksuit", + "discovered": "2024-01-31 12:51:39.930062" + }, + { + "post_title": "Sefin", + "group_name": "akira", + "discovered": "2024-01-31 16:49:48.016322" + }, + { + "post_title": "LeClair Group", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:04.282701" + }, + { + "post_title": "SportsMEDIA Technology", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:05.536829" + }, + { + "post_title": "Galaxy Fireworks, Inc", + "group_name": "medusa", + "discovered": "2024-01-31 17:49:18.391058" + }, + { + "post_title": "Hydraflow", + "group_name": "alphv", + "discovered": "2024-01-31 18:47:09.987159" + }, + { + "post_title": "apeagers.au", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:41.578010" + }, + { + "post_title": "derrama.org.pe", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:44.708008" + }, + { + "post_title": "mnorch.org", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:50.080467" + }, + { + "post_title": "Primeimaging database for sale", + "group_name": "everest", + "discovered": "2024-02-01 01:00:18.239969" + }, + { + "post_title": "CNPC Peru S.A.", + "group_name": "rhysida", + "discovered": "2024-02-01 02:06:06.862360" + }, + { + "post_title": "Robert D. Clements Jr Law Group, LLLP", + "group_name": "bianlian", + "discovered": "2024-02-01 05:47:41.609894" + }, + { + "post_title": "Southwark Council", + "group_name": "meow", + "discovered": "2024-02-01 09:43:37.868205" + }, + { + "post_title": "bandcllp.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 10:44:55.771860" + }, + { + "post_title": "taloninternational.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 11:43:23.931373" + }, + { + "post_title": "etsolutions.com.mx", + "group_name": "threeam", + "discovered": "2024-02-01 11:43:34.845393" + }, + { + "post_title": "Borah Goldstein Alts chuler Nahins & Goid el", + "group_name": "akira", + "discovered": "2024-02-01 16:49:14.243876" + }, + { + "post_title": "manchesterfertility.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:26.905938" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:30.411918" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 20:48:01.452602" + }, + { + "post_title": "Data Broking Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:53.688350" + }, + { + "post_title": "OSINT Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:54.612232" + }, + { + "post_title": "Penetration Testing Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:55.442765" + }, + { + "post_title": "dms-imaging", + "group_name": "cuba", + "discovered": "2024-02-02 00:54:18.770967" + }, + { + "post_title": "Innovex Downhole Solutions", + "group_name": "play", + "discovered": "2024-02-02 00:54:36.522819" + }, + { + "post_title": "Tandem", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:26.801997" + }, + { + "post_title": "Law Office of Michael H Joseph", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:27.653954" + }, + { + "post_title": "lexcaribbean.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 13:40:44.520539" + }, + { + "post_title": "manitou-group.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 18:50:56.475105" + }, + { + "post_title": "Chaney, Couch, Callaway, Carter and Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:00.749932" + }, + { + "post_title": "Thomas LLP", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:01.737864" + }, + { + "post_title": "Digitel Venezuela", + "group_name": "medusa", + "discovered": "2024-02-02 20:46:55.568725" + }, + { + "post_title": "pbwtulsa.com", + "group_name": "lockbit3", + "discovered": "2024-02-03 10:47:49.041398" + }, + { + "post_title": "Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-03 14:49:56.026001" + }, + { + "post_title": "cxm.com", + "group_name": "lockbit3", + "discovered": "2024-02-04 14:53:11.959174" + }, + { + "post_title": "Cole, Cole, Easley and Sciba", + "group_name": "bianlian", + "discovered": "2024-02-04 14:53:18.078097" + }, + { + "post_title": "DOD contractors you are welcome in our chat.", + "group_name": "donutleaks", + "discovered": "2024-02-05 01:01:29.091614" + }, + { + "post_title": "logtainer.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:06.347461" + }, + { + "post_title": "philogen.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:08.569997" + }, + { + "post_title": "portline.pt", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:09.536611" + }, + { + "post_title": "prima.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:10.594814" + }, + { + "post_title": "semesco.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:07.235141" + }, + { + "post_title": "tgestiona.br", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:09.367337" + }, + { + "post_title": "ultraflexx.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:11.101910" + }, + { + "post_title": "GRTC Transit System", + "group_name": "bianlian", + "discovered": "2024-02-05 13:45:23.764982" + }, + { + "post_title": "ksa-architecture.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:32.478656" + }, + { + "post_title": "noe.wifi.at", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:34.487488" + }, + { + "post_title": "VCS Observation", + "group_name": "akira", + "discovered": "2024-02-05 16:42:56.046974" + }, + { + "post_title": "davis-french-associates.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:36.247382" + }, + { + "post_title": "hutchpaving.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:38.782412" + }, + { + "post_title": "http://tobaccofreekids.org", + "group_name": "blacksuit", + "discovered": "2024-02-05 17:46:50.921190" + }, + { + "post_title": "Vail-Summit Orthopaedics & Neurosurgery (VSON)", + "group_name": "alphv", + "discovered": "2024-02-05 18:50:43.265891" + }, + { + "post_title": "themisbourne.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 18:50:54.171029" + }, + { + "post_title": "www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-05 20:50:31.609895" + }, + { + "post_title": "Asecos", + "group_name": "blackbasta", + "discovered": "2024-02-05 21:43:46.607045" + }, + { + "post_title": "Albert Bartlett", + "group_name": "play", + "discovered": "2024-02-05 23:43:34.491635" + }, + { + "post_title": "Douglas County Libraries", + "group_name": "play", + "discovered": "2024-02-05 23:43:35.474786" + }, + { + "post_title": "Greenwich Leisure", + "group_name": "play", + "discovered": "2024-02-05 23:43:36.397641" + }, + { + "post_title": "Hannon Transport", + "group_name": "play", + "discovered": "2024-02-05 23:43:37.527051" + }, + { + "post_title": "Leaders Staffing", + "group_name": "play", + "discovered": "2024-02-05 23:43:38.489465" + }, + { + "post_title": "Mason Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:39.473554" + }, + { + "post_title": "McMillan Pazdan Smith", + "group_name": "play", + "discovered": "2024-02-05 23:43:40.701400" + }, + { + "post_title": "Northeastern Sheet Metal", + "group_name": "play", + "discovered": "2024-02-05 23:43:41.607174" + }, + { + "post_title": "Perry-McCall Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:42.650556" + }, + { + "post_title": "Premier Facility Management", + "group_name": "play", + "discovered": "2024-02-05 23:43:43.766593" + }, + { + "post_title": "Ready Mixed Concrete", + "group_name": "play", + "discovered": "2024-02-05 23:43:45.027198" + }, + { + "post_title": "Virgin Islands Lottery", + "group_name": "play", + "discovered": "2024-02-05 23:43:46.065386" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 08:41:13.613379" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 11:39:17.507661" + }, + { + "post_title": "ArpuPlus", + "group_name": "medusa", + "discovered": "2024-02-06 14:38:33.447511" + }, + { + "post_title": "Hbl Cpas, P.C.", + "group_name": "ransomhouse", + "discovered": "2024-02-06 15:38:37.673709" + }, + { + "post_title": "B Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:47.900991" + }, + { + "post_title": "Sciba", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:48.921809" + }, + { + "post_title": "Celeste", + "group_name": "akira", + "discovered": "2024-02-06 16:41:08.826387" + }, + { + "post_title": "AVer Information", + "group_name": "akira", + "discovered": "2024-02-06 16:41:09.704902" + }, + { + "post_title": "deltron.com", + "group_name": "abyss", + "discovered": "2024-02-06 19:43:18.744742" + }, + { + "post_title": "Shipleys LLP", + "group_name": "ransomhouse", + "discovered": "2024-02-07 00:58:46.279094" + }, + { + "post_title": "axsbolivia.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:48.225919" + }, + { + "post_title": "vimarequipment.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:56.102235" + }, + { + "post_title": "Anderco PTE LTD", + "group_name": "8base", + "discovered": "2024-02-07 00:59:03.707023" + }, + { + "post_title": "CERALP", + "group_name": "8base", + "discovered": "2024-02-07 00:59:04.775267" + }, + { + "post_title": "Harinck", + "group_name": "8base", + "discovered": "2024-02-07 00:59:06.470352" + }, + { + "post_title": "Karl Rieker GmbH and Co. KG", + "group_name": "8base", + "discovered": "2024-02-07 00:59:07.671488" + }, + { + "post_title": "PJ Green Inc", + "group_name": "8base", + "discovered": "2024-02-07 00:59:08.934928" + }, + { + "post_title": "PWS - The Laundry Company", + "group_name": "8base", + "discovered": "2024-02-07 00:59:09.838301" + }, + { + "post_title": "Precision Tune Auto Care", + "group_name": "8base", + "discovered": "2024-02-07 00:59:10.781951" + }, + { + "post_title": "Tetrosyl Group Limited", + "group_name": "8base", + "discovered": "2024-02-07 00:59:11.905895" + }, + { + "post_title": "Therme Laa Hotel and Silent Spa", + "group_name": "8base", + "discovered": "2024-02-07 00:59:12.798306" + }, + { + "post_title": "Worthen Industries", + "group_name": "8base", + "discovered": "2024-02-07 00:59:13.751416" + }, + { + "post_title": "YRW Limited - Chartered Accountants", + "group_name": "8base", + "discovered": "2024-02-07 00:59:14.469062" + }, + { + "post_title": "transaxle.com", + "group_name": "abyss", + "discovered": "2024-02-07 10:49:36.482639" + }, + { + "post_title": "TeraGo", + "group_name": "akira", + "discovered": "2024-02-07 16:52:09.733665" + }, + { + "post_title": "http://swbindinglaminating.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 16:52:15.202341" + }, + { + "post_title": "http://www.wmc-i.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 18:45:55.094484" + }, + { + "post_title": "Distecna", + "group_name": "akira", + "discovered": "2024-02-08 15:40:01.248369" + }, + { + "post_title": "originalfootwear.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:25.055289" + }, + { + "post_title": "perkinsmfg.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:26.087011" + }, + { + "post_title": "Jewish Home Lifecare", + "group_name": "alphv", + "discovered": "2024-02-08 19:40:20.633823" + }, + { + "post_title": "Ducont", + "group_name": "hunters", + "discovered": "2024-02-08 19:40:43.850366" + }, + { + "post_title": "water.cc", + "group_name": "lockbit3", + "discovered": "2024-02-08 20:49:28.747846" + }, + { + "post_title": "galbusera.it", + "group_name": "lockbit3", + "discovered": "2024-02-09 07:37:26.567740" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 08:35:46.155063" + }, + { + "post_title": "macqueeneq.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 09:36:25.115411" + }, + { + "post_title": "posen.com", + "group_name": "abyss", + "discovered": "2024-02-09 10:34:37.624311" + }, + { + "post_title": "bsaarchitects.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:36.111619" + }, + { + "post_title": "moneyadvicetrust.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:41.685062" + }, + { + "post_title": "seymourct.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:44.504843" + }, + { + "post_title": "northseayachtsupport.nl", + "group_name": "lockbit3", + "discovered": "2024-02-09 12:40:22.882357" + }, + { + "post_title": "Willis Lease Finance Corporation", + "group_name": "blackbasta", + "discovered": "2024-02-09 13:36:10.042532" + }, + { + "post_title": "grupomoraval.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:15.633802" + }, + { + "post_title": "verdimed.es", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:20.899398" + }, + { + "post_title": "cdtmedicus.pl", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:06.661566" + }, + { + "post_title": "indoramaventures.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:09.871485" + }, + { + "post_title": "maximumresearch.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:11.661612" + }, + { + "post_title": "soken-ce.co.jp", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:14.868476" + }, + { + "post_title": "oogp.com\\$11.4M\\USA\\63GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:27.058618" + }, + { + "post_title": "jaygroup.com\\$62.2M\\USA\\270GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:28.093013" + }, + { + "post_title": "alfiras.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 15:40:46.865821" + }, + { + "post_title": "Drost Kivlahan McMahon and O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:50.499230" + }, + { + "post_title": "Capozzi Adler, P.C.", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:51.322465" + }, + { + "post_title": "Grace Lutheran Foundation", + "group_name": "alphv", + "discovered": "2024-02-09 18:47:06.163834" + }, + { + "post_title": "magi-erp.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 18:47:13.548646" + }, + { + "post_title": "TechNet Kronoberg AB", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:17.808226" + }, + { + "post_title": "J.P. Original", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:18.955260" + }, + { + "post_title": "CTSI", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:20.567002" + }, + { + "post_title": "zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:32.512846" + }, + { + "post_title": "www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:34.159303" + }, + { + "post_title": "Pacific American Fish Company Inc.", + "group_name": "incransom", + "discovered": "2024-02-10 01:55:49.848134" + }, + { + "post_title": "maddockhenson", + "group_name": "alphv", + "discovered": "2024-02-10 10:34:19.213101" + }, + { + "post_title": "aisg-online.com", + "group_name": "lockbit3", + "discovered": "2024-02-10 10:34:23.298925" + }, + { + "post_title": "mranet.org", + "group_name": "abyss", + "discovered": "2024-02-10 16:41:13.538950" + }, + { + "post_title": "Avianor Aircraft", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:27.913947" + }, + { + "post_title": "Carespring Health Care", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:28.759434" + }, + { + "post_title": "Dalmahoy Hotel & Country Club", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:29.746689" + }, + { + "post_title": "Groupe Goyette", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:30.673343" + }, + { + "post_title": "Impact Energy Services", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:31.371374" + }, + { + "post_title": "SOPEM Tunisie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:32.446577" + }, + { + "post_title": "Benchmark Management Group", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:33.306278" + }, + { + "post_title": "Nastech", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.013669" + }, + { + "post_title": "Lancaster County Sheriff's Office", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.887872" + }, + { + "post_title": "Village of Skokie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:35.682279" + }, + { + "post_title": "www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-10 21:38:20.749206" + }, + { + "post_title": "lacolline-skincare.com", + "group_name": "lockbit3", + "discovered": "2024-02-11 08:36:18.710538" + }, + { + "post_title": "O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-11 11:34:48.375266" + }, + { + "post_title": "Amoskeag Network Consulting Group LLC", + "group_name": "medusa", + "discovered": "2024-02-11 14:39:43.549531" + }, + { + "post_title": "LILI'S BROWNIES", + "group_name": "8base", + "discovered": "2024-02-11 22:38:00.413343" + }, + { + "post_title": "Kadac Australia", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:46.600770" + }, + { + "post_title": "The Gainsborough Bath", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:47.599915" + }, + { + "post_title": "grotonschools.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:38.430567" + }, + { + "post_title": "jacksonvillebeach.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:40.096648" + }, + { + "post_title": "parkhomeassist.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:42.560867" + }, + { + "post_title": "robs.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:44.208009" + }, + { + "post_title": "camarotto.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:21.271199" + }, + { + "post_title": "dienerprecisionpumps.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:23.096860" + }, + { + "post_title": "envie.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:24.832649" + }, + { + "post_title": "isspol.gov", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:27.834646" + }, + { + "post_title": "lyon.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:30.004922" + }, + { + "post_title": "paltertonprimary.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:32.344287" + }, + { + "post_title": "sealco-leb.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:34.524463" + }, + { + "post_title": "vhprimary.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:36.578557" + }, + { + "post_title": "Freedom Munitions", + "group_name": "meow", + "discovered": "2024-02-12 08:45:50.843898" + }, + { + "post_title": "Allmetal Inc.", + "group_name": "meow", + "discovered": "2024-02-12 08:45:51.765754" + }, + { + "post_title": "Disaronno International", + "group_name": "meow", + "discovered": "2024-02-12 08:45:52.537065" + }, + { + "post_title": "cabc.com.ar", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:35.423717" + }, + { + "post_title": "fidcornelis.be", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:38.139743" + }, + { + "post_title": "plexustelerad.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:43.843546" + }, + { + "post_title": "silverairways.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:45.654644" + }, + { + "post_title": "textiles.org.tw", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:47.265094" + }, + { + "post_title": "Arlington Perinatal Associates", + "group_name": "meow", + "discovered": "2024-02-12 09:47:01.118351" + }, + { + "post_title": "Kreyenhop & Kluge", + "group_name": "hunters", + "discovered": "2024-02-12 10:49:57.810990" + }, + { + "post_title": "germaintoiture.fr", + "group_name": "lockbit3", + "discovered": "2024-02-12 12:55:10.101723" + }, + { + "post_title": "Lower Valley Energy, Inc.", + "group_name": "alphv", + "discovered": "2024-02-12 14:47:21.566215" + }, + { + "post_title": "Modern Kitchens ", + "group_name": "medusa", + "discovered": "2024-02-12 14:47:34.927293" + }, + { + "post_title": "SERCIDE", + "group_name": "alphv", + "discovered": "2024-02-12 16:43:39.136111" + }, + { + "post_title": "Rush Energy Services Inc [You have 48 hours]", + "group_name": "alphv", + "discovered": "2024-02-12 19:42:33.506797" + }, + { + "post_title": "tecasrl.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 21:40:36.296749" + }, + { + "post_title": "http://antunovich.com", + "group_name": "blacksuit", + "discovered": "2024-02-12 21:40:46.640868" + }, + { + "post_title": "garonproducts.com", + "group_name": "threeam", + "discovered": "2024-02-12 21:40:49.180786" + }, + { + "post_title": "elandenergy.com Eland Energy", + "group_name": "alphalocker", + "discovered": "2024-02-13 00:51:09.079290" + }, + { + "post_title": "YKP LTDA", + "group_name": "ransomhub", + "discovered": "2024-02-13 00:51:09.772057" + }, + { + "post_title": "Sanok Rubber Company Spólka Akcyjna", + "group_name": "akira", + "discovered": "2024-02-13 08:39:06.866914" + }, + { + "post_title": "Satse", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:14.308790" + }, + { + "post_title": "SOPEM", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:16.493197" + }, + { + "post_title": "auruminstitute.org", + "group_name": "lockbit3", + "discovered": "2024-02-13 10:40:08.635703" + }, + { + "post_title": "New Indy Containerboard", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:28.350810" + }, + { + "post_title": "Procopio", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:29.651377" + }, + { + "post_title": "Herrs", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:30.400395" + }, + { + "post_title": "Trans-Northern Pipelines", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:51.528400" + }, + { + "post_title": "ArcisGolf", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:52.306797" + }, + { + "post_title": "The Source", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:53.288531" + }, + { + "post_title": "doprastav.sk", + "group_name": "lockbit3", + "discovered": "2024-02-13 14:38:37.830416" + }, + { + "post_title": "universalservicesms.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 17:41:07.370625" + }, + { + "post_title": "Communication Federal Credit Union", + "group_name": "hunters", + "discovered": "2024-02-13 17:41:18.865732" + }, + { + "post_title": "rajawali.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 21:42:19.767565" + }, + { + "post_title": "motilaloswal.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 22:44:05.923814" + }, + { + "post_title": "Leonard’s Syrups", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:52.777834" + }, + { + "post_title": "Sanford, Pierson, Thone & Strean", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.004272" + }, + { + "post_title": "Global Rescue", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.768500" + }, + { + "post_title": "BTL", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:55.598485" + }, + { + "post_title": "Patrizia Pepe", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:57.379617" + }, + { + "post_title": "Constantia FFP", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:58.297588" + }, + { + "post_title": "Barber Emerson", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:59.128996" + }, + { + "post_title": "adioscancer.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 00:56:26.442986" + }, + { + "post_title": "mmiculinary.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 03:39:51.848519" + }, + { + "post_title": "giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:58.056462" + }, + { + "post_title": "www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:59.128461" + }, + { + "post_title": "ATB SA Ingénieurs-conseils SIA", + "group_name": "8base", + "discovered": "2024-02-14 04:43:32.630789" + }, + { + "post_title": "Institutional Casework, Inc", + "group_name": "8base", + "discovered": "2024-02-14 04:43:34.372784" + }, + { + "post_title": "UNIFER", + "group_name": "8base", + "discovered": "2024-02-14 04:43:35.982680" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3", + "discovered": "2024-02-14 05:43:26.917205" + }, + { + "post_title": "wsnelson.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 06:42:34.382976" + }, + { + "post_title": "Sindicato de Enfermería (SATSE)", + "group_name": "hunters", + "discovered": "2024-02-14 07:46:41.790025" + }, + { + "post_title": "kabat.pl", + "group_name": "lockbit3", + "discovered": "2024-02-14 08:44:13.452908" + }, + { + "post_title": "vanwingerden.com", + "group_name": "abyss", + "discovered": "2024-02-14 09:44:38.114838" + }, + { + "post_title": "https://www.falco.com/, http://www.falcoprc.com/, http://support.falcomex.com/, http://www", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:22.527828" + }, + { + "post_title": "https://www.americamovil.com/", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:23.593041" + }, + { + "post_title": "Nekoosa School Distr ict", + "group_name": "akira", + "discovered": "2024-02-14 16:45:37.199360" + }, + { + "post_title": "studiogalbusera.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 17:43:31.656734" + }, + { + "post_title": "ASA Electronics [2.7 TB]", + "group_name": "alphv", + "discovered": "2024-02-15 07:48:15.369146" + }, + { + "post_title": "centralepaysanne.lu", + "group_name": "lockbit3", + "discovered": "2024-02-15 09:54:59.223073" + }, + { + "post_title": "champion.com.co", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:30.170814" + }, + { + "post_title": "coreengg.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:31.701567" + }, + { + "post_title": "hatsinteriors.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:35.174126" + }, + { + "post_title": "sitrack.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:38.996052" + }, + { + "post_title": "pradiergranulats.fr", + "group_name": "lockbit3", + "discovered": "2024-02-15 11:55:00.671579" + }, + { + "post_title": "ASP Basilicata", + "group_name": "rhysida", + "discovered": "2024-02-15 12:52:32.053764" + }, + { + "post_title": "Rush Energy Services Inc [Time's up]", + "group_name": "alphv", + "discovered": "2024-02-15 13:49:08.332355" + }, + { + "post_title": "conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:21.975121" + }, + { + "post_title": "kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:23.021004" + }, + { + "post_title": "Advantage Orthopedic and Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-15 15:55:36.909256" + }, + { + "post_title": "Asam", + "group_name": "akira", + "discovered": "2024-02-15 16:49:40.104205" + }, + { + "post_title": "Schuster Trucking Company", + "group_name": "hunters", + "discovered": "2024-02-15 17:45:33.743960" + }, + { + "post_title": "DuBose Strapping", + "group_name": "play", + "discovered": "2024-02-15 18:53:40.834575" + }, + { + "post_title": "HR Ewell & Hy-tec", + "group_name": "play", + "discovered": "2024-02-15 18:53:41.737274" + }, + { + "post_title": "LD Davis", + "group_name": "play", + "discovered": "2024-02-15 18:53:42.667998" + }, + { + "post_title": "Mechanical Reps", + "group_name": "play", + "discovered": "2024-02-15 18:53:43.504379" + }, + { + "post_title": "MeerServices", + "group_name": "play", + "discovered": "2024-02-15 18:53:44.526693" + }, + { + "post_title": "Norman, Fox", + "group_name": "play", + "discovered": "2024-02-15 18:53:45.773002" + }, + { + "post_title": "Onclusive", + "group_name": "play", + "discovered": "2024-02-15 18:53:46.829288" + }, + { + "post_title": "SilverLining", + "group_name": "play", + "discovered": "2024-02-15 18:53:47.541160" + }, + { + "post_title": "von Hagen", + "group_name": "play", + "discovered": "2024-02-15 18:53:48.380182" + }, + { + "post_title": "Pierce", + "group_name": "bianlian", + "discovered": "2024-02-15 22:53:21.477551" + }, + { + "post_title": "St. Johns River Water Management District", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:12.699922" + }, + { + "post_title": "Griffin Dewatering", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:14.202272" + }, + { + "post_title": "theclosingagent.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 07:54:13.717089" + }, + { + "post_title": "Ribe-Groupe", + "group_name": "hunters", + "discovered": "2024-02-16 07:54:25.219441" + }, + { + "post_title": "Concello de Teo", + "group_name": "hunters", + "discovered": "2024-02-16 08:47:09.568174" + }, + { + "post_title": "spaldingssd.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:47.837668" + }, + { + "post_title": "tormetal.cl", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:49.165562" + }, + { + "post_title": "Pacifica", + "group_name": "blackbasta", + "discovered": "2024-02-16 12:38:54.213140" + }, + { + "post_title": "etisalat.ae", + "group_name": "lockbit3", + "discovered": "2024-02-16 14:51:57.409899" + }, + { + "post_title": "BRAM Auto Group", + "group_name": "akira", + "discovered": "2024-02-16 16:52:29.412035" + }, + { + "post_title": "Réseau Ribé", + "group_name": "hunters", + "discovered": "2024-02-16 17:54:33.848203" + }, + { + "post_title": "The Chas. E. Phipps", + "group_name": "medusa", + "discovered": "2024-02-16 22:52:42.856478" + }, + { + "post_title": "LoanDepot", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:46.818516" + }, + { + "post_title": "Prudential Financial", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:47.887716" + }, + { + "post_title": "CP Communications", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:03.845908" + }, + { + "post_title": "PSI", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:04.837682" + }, + { + "post_title": "Wapiti Energy", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:55.451029" + }, + { + "post_title": "BS&B Safety Systems L.L.C", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:56.663577" + }, + { + "post_title": "Chicago Zoological Society", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:57.526649" + }, + { + "post_title": "Aftrp", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:03.619959" + }, + { + "post_title": "Voice Technologies", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:04.573653" + }, + { + "post_title": "Tiete Automobile", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:06.193735" + }, + { + "post_title": "Greater Napanee", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:07.422713" + }, + { + "post_title": "ACS", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:08.409699" + }, + { + "post_title": "VSP Dental", + "group_name": "alphv", + "discovered": "2024-02-18 01:05:28.627117" + }, + { + "post_title": "bucher-strauss.ch", + "group_name": "lockbit3", + "discovered": "2024-02-18 14:44:27.030435" + }, + { + "post_title": "Bimbo Bakeries", + "group_name": "medusa", + "discovered": "2024-02-18 18:41:44.245288" + }, + { + "post_title": "carlfischer.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 21:35:08.534439" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 22:54:55.183234" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:48.182932" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:55.839595" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:56.811163" + }, + { + "post_title": "First Professional Services", + "group_name": "bianlian", + "discovered": "2024-02-19 10:50:35.559705" + }, + { + "post_title": "se.com\\$$33.5B\\France\\1.5TB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 12:44:15.724534" + }, + { + "post_title": "BandB Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:02.080364" + }, + { + "post_title": "Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:03.015026" + }, + { + "post_title": "soco.be", + "group_name": "lockbit3", + "discovered": "2024-02-19 19:48:28.225069" + }, + { + "post_title": "http://www.loransrl.net", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:27.821509" + }, + { + "post_title": "http://conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:28.830243" + }, + { + "post_title": "http://kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:30.240075" + }, + { + "post_title": "http://giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:31.302498" + }, + { + "post_title": "http://zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.115956" + }, + { + "post_title": "http://www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.947379" + }, + { + "post_title": "http://www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:33.883185" + }, + { + "post_title": "http://www.mordfin.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:34.816481" + }, + { + "post_title": "http:// neafidi.it", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:36.190623" + }, + { + "post_title": "http://www.projects-world.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.063801" + }, + { + "post_title": "http://www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.946740" + }, + { + "post_title": "http://www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:38.843441" + }, + { + "post_title": "http://www.halleonard.com.au", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:39.666402" + }, + { + "post_title": "http://https://www.molnar-bischof.de/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:40.439645" + }, + { + "post_title": "http://corinthcoke.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:41.448645" + }, + { + "post_title": "http://EPS.RS", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:42.241643" + }, + { + "post_title": "http://neurocnv.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:43.058652" + }, + { + "post_title": "http://www.warepet.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.067410" + }, + { + "post_title": "http://yanfeng.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.891706" + }, + { + "post_title": "http://haesungds.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:46.087979" + }, + { + "post_title": "Press Releases", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:32.895980" + }, + { + "post_title": "LB Backend Leaks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:33.938626" + }, + { + "post_title": "Lockbitsupp", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:34.754863" + }, + { + "post_title": "Who is LockbitSupp?", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:36.107675" + }, + { + "post_title": "Lockbit Decryption Keys", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:37.096580" + }, + { + "post_title": "Recovery Tool", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:38.317190" + }, + { + "post_title": "US Indictments", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:39.192747" + }, + { + "post_title": "Sanctions", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:40.572137" + }, + { + "post_title": "Arrest in Poland", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:41.587166" + }, + { + "post_title": "Activity in Ukraine", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:42.601902" + }, + { + "post_title": "Report Cyber Attacks!", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:43.353386" + }, + { + "post_title": "Cyber Choices", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:44.234563" + }, + { + "post_title": "StealBit down!", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:45.102384" + }, + { + "post_title": "Affiliate infrastructure down", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:46.149785" + }, + { + "post_title": "Lockbit's Hackers exposed", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:47.234758" + }, + { + "post_title": "Prodaft", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:49.508517" + }, + { + "post_title": "Affiliate Leaks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:50.361099" + }, + { + "post_title": "Account Closures", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:51.461561" + }, + { + "post_title": "Lockbit's new encryptor", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:52.980146" + }, + { + "post_title": "Secureworks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:54.030912" + }, + { + "post_title": "Lockbit Crypto", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:54.964808" + }, + { + "post_title": "Closure", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:56.158497" + }, + { + "post_title": "Finlay Screening & Crushing Systems", + "group_name": "hunters", + "discovered": "2024-02-20 12:54:10.336076" + }, + { + "post_title": "advancedprosolutions.com\\$5M\\USA\\54GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-20 13:44:18.034771" + }, + { + "post_title": "Raocala", + "group_name": "everest", + "discovered": "2024-02-20 14:32:38.704949" + }, + { + "post_title": "River Delta Unified School District", + "group_name": "meow", + "discovered": "2024-02-20 18:45:25.964568" + }, + { + "post_title": "ad.bennetts.com.au", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ad.jamailconstruction.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ah-babelsberg.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "alhajery.com.kw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "arcelor-sztg.hu", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ats.lab", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "auras.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "barcelona.jbc.es", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bbst.clp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "billycraiginsurance.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bredinprat.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bredinprat.fr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cachibi.com.co", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "castro.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cczstattonequities.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cepi.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ceratube.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cheyenne.k12.ok.us", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "christianvillage.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cobbengr.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "comune.crispiano.ta.it", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.fehrs.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.keypoint.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.kuwaitairways.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "coteg-toulouse.dom", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "crich.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dgimali.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dmn-vitalprev.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "domain.itsoft.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dsoler.soler.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "edgoldner.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "edtec.biz", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "equisfg.efg", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "etggs.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "expeditors.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fmc.ar", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fsd.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fupite.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fusesandliberty.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "genpl.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "gla.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "gov.oak-brook.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hinaka.corp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hkdm1.wik", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hlc.bike", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "holding.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "honsha.hanshin-dp.co.jp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hotelluzeiros.fla.br", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hsvgroup.com.vn", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hxlife.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ikkgroup.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "incegd.com_inces.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "inces.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "intern.liceubarcelona.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "intranet.hoffsuemmer.de", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ismea.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "it-root.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "janspec.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "jps.cr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "kmalawfirm.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "knx.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "lapostermobile.fr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "litto.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "logistia.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "magnar-eikeland.no", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "malle.clozdloop.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mandiantyellowpress.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "medman.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "meritservices.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mfidallas.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mkbrokers.fin", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "moci.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ms-hosted-tse.priv", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "murrays.cheese.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mypolyplastics.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "northernins.ca", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "nwtf-ho.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "office.athesis.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "opt.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "optimissa.into", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "orchestra.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "plumascounty.countyofplumas.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "poultry.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "prairie.prairiesedgecasino.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "prefimetal.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ptilhk.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "reust.ads", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "roma.enit", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "rosslare.com.hk2", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "sbc.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "securedoffers.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "sefnet.rj", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "smd.shimamura.gr.jp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "smjcorp.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "soenen-golfkarton.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "spherechina.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "stairs.rintal.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "stocker.ora", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "teleprocorp.com.mx", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "terminal.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "tojin.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "unified-it.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "vvrmc.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "whse.iibg.ca", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "wolfbergalvarez.corp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "workcrossing.it", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "worldnetlogistics.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "wsretailers.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ymcawashdc.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "zentrumdreilinden.ch", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "zgoda.ad", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "westward360.com", + "group_name": "dragonforce", + "discovered": "2024-02-21 10:38:18.216526" + }, + { + "post_title": "compressionleasing.com", + "group_name": "dragonforce", + "discovered": "2024-02-21 10:38:18.249818" + }, + { + "post_title": "https://www.infinitiusa.com", + "group_name": "mogilevich", + "discovered": "2024-02-20 22:36:32.957405" + }, + { + "post_title": "Acies Srl", + "group_name": "8base", + "discovered": "2024-02-21 01:58:45.150889" + }, + { + "post_title": "Axel Johnson", + "group_name": "8base", + "discovered": "2024-02-21 01:58:46.253389" + }, + { + "post_title": "Helical Technology", + "group_name": "8base", + "discovered": "2024-02-21 01:58:47.666497" + }, + { + "post_title": "doneff.com", + "group_name": "threeam", + "discovered": "2024-02-21 07:40:00.030813" + }, + { + "post_title": "[EN]", + "group_name": "blackbasta", + "discovered": "2024-02-21 11:43:52.418567" + }, + { + "post_title": "Austen Consultants", + "group_name": "alphv", + "discovered": "2024-02-21 14:44:00.508466" + }, + { + "post_title": "Marchassociates", + "group_name": "bianlian", + "discovered": "2024-02-21 15:41:54.626943" + }, + { + "post_title": "HRTec Inc", + "group_name": "bianlian", + "discovered": "2024-02-21 15:41:55.802572" + }, + { + "post_title": "Rewards for Reporting", + "group_name": "lockbit3", + "discovered": "2024-02-21 16:43:02.495162" + }, + { + "post_title": "Desarrollo De Tecnol ogia y Sistemas Ltda", + "group_name": "akira", + "discovered": "2024-02-21 16:43:10.178353" + }, + { + "post_title": "Lancaster", + "group_name": "akira", + "discovered": "2024-02-21 16:43:12.353811" + }, + { + "post_title": "KHSS (You have 3 days)", + "group_name": "alphv", + "discovered": "2024-02-21 20:33:47.558940" + }, + { + "post_title": "FR arrest warrants", + "group_name": "lockbit3", + "discovered": "2024-02-21 20:33:51.105661" + }, + { + "post_title": "Worthen Industries [We're giving you one last chance to save your business]", + "group_name": "alphv", + "discovered": "2024-02-22 02:47:28.191606" + }, + { + "post_title": "ZircoDATA", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:39.889494" + }, + { + "post_title": "Dilweg", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:40.928589" + }, + { + "post_title": "Birchall Foodservice", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:41.587982" + }, + { + "post_title": "US Merchants", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:42.274257" + }, + { + "post_title": "Climatech Inc", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:43.086048" + }, + { + "post_title": "New York Law Firm with a National Presence", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:43.875214" + }, + { + "post_title": "Hardeman County Community Health Center", + "group_name": "alphv", + "discovered": "2024-02-22 11:36:35.682324" + }, + { + "post_title": "PEER Consultants", + "group_name": "akira", + "discovered": "2024-02-22 13:40:10.119133" + }, + { + "post_title": "abcor.com.au", + "group_name": "threeam", + "discovered": "2024-02-22 13:40:16.525421" + }, + { + "post_title": "mtmrobotics.com", + "group_name": "threeam", + "discovered": "2024-02-22 13:40:17.391241" + }, + { + "post_title": "Quik Pawn Shop", + "group_name": "akira", + "discovered": "2024-02-22 16:48:08.561742" + }, + { + "post_title": "http://unique-relations.at", + "group_name": "qilin", + "discovered": "2024-02-22 17:43:03.625005" + }, + { + "post_title": "W???h?", + "group_name": "play", + "discovered": "2024-02-22 23:40:12.587621" + }, + { + "post_title": "C and J Industries, Inc.", + "group_name": "8base", + "discovered": "2024-02-23 01:57:52.611090" + }, + { + "post_title": "ANDFLA SRL", + "group_name": "alphv", + "discovered": "2024-02-23 10:43:29.833150" + }, + { + "post_title": "APEX - apexspedition.de", + "group_name": "monti", + "discovered": "2024-02-23 13:43:09.881679" + }, + { + "post_title": "H*********** *********y **********", + "group_name": "bianlian", + "discovered": "2024-02-23 14:38:48.186808" + }, + { + "post_title": "Pressco Technology", + "group_name": "medusa", + "discovered": "2024-02-23 15:45:48.204399" + }, + { + "post_title": "Acorn", + "group_name": "medusa", + "discovered": "2024-02-23 15:45:49.307646" + }, + { + "post_title": "Rapid Granulator", + "group_name": "ransomhouse", + "discovered": "2024-02-23 18:43:13.012597" + }, + { + "post_title": "remkes.nl\\$31.4M\\Netherlands\\190GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-23 18:43:25.048651" + }, + { + "post_title": "Family Health center", + "group_name": "alphv", + "discovered": "2024-02-23 21:45:36.717474" + }, + { + "post_title": "IJM Corporation", + "group_name": "hunters", + "discovered": "2024-02-23 21:45:52.104412" + }, + { + "post_title": "Welch's", + "group_name": "play", + "discovered": "2024-02-23 23:37:25.442087" + }, + { + "post_title": "Worthen Industries [FULL DATA]", + "group_name": "alphv", + "discovered": "2024-02-24 13:39:26.928623" + }, + { + "post_title": "AL SHEFA FARM", + "group_name": "ransomhub", + "discovered": "2024-02-24 13:39:42.973560" + }, + { + "post_title": "Spine West", + "group_name": "monti", + "discovered": "2024-02-24 14:40:49.679883" + }, + { + "post_title": "http://kinematica.ch", + "group_name": "qilin", + "discovered": "2024-02-24 16:40:14.393131" + }, + { + "post_title": "http://gcherrera.com", + "group_name": "qilin", + "discovered": "2024-02-24 16:40:15.383975" + }, + { + "post_title": "BM Catalysts bmcatalysts.co.uk", + "group_name": "alphalocker", + "discovered": "2024-02-25 10:10:46.495674" + }, + { + "post_title": "fbi.gov", + "group_name": "lockbit3_fs", + "discovered": "2024-02-24 21:53:43.666105" + }, + { + "post_title": "crbgroup.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:45.412895" + }, + { + "post_title": "equilend.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:46.437407" + }, + { + "post_title": "fbi.gov", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:47.374927" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:48.401092" + }, + { + "post_title": "magierp.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:49.517733" + }, + { + "post_title": "nationaldentex.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:50.634062" + }, + { + "post_title": "Wangkanai Group", + "group_name": "ransomhouse", + "discovered": "2024-02-24 22:41:34.599893" + }, + { + "post_title": "www.bombaygrills.com", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:32.269585" + }, + { + "post_title": "www.pcmarket.uz", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:35.277497" + }, + { + "post_title": "www.kai.id", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:36.202191" + }, + { + "post_title": "www.delia.pl", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:37.057639" + }, + { + "post_title": "www.calcomp.co.th", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:37.805204" + }, + { + "post_title": "www.Abelsantosyasoc.com.ar", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:38.886896" + }, + { + "post_title": "Roncelli Plastics", + "group_name": "bianlian", + "discovered": "2024-02-25 00:57:42.684042" + }, + { + "post_title": "Dobrowski Stafford and Pierce", + "group_name": "bianlian", + "discovered": "2024-02-25 00:57:43.633942" + }, + { + "post_title": "dunaway.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 12:44:13.512650" + }, + { + "post_title": "http://www.potogoldcoffee.com", + "group_name": "ciphbit", + "discovered": "2024-02-25 17:40:40.633614" + }, + { + "post_title": "AL SHEFA FARM", + "group_name": "ransomhub", + "discovered": "2024-02-25 17:40:42.886146" + }, + { + "post_title": "apeagers.com.au", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:18.994519" + }, + { + "post_title": "groupe-idea.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:20.166274" + }, + { + "post_title": "igs-inc.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:21.538963" + }, + { + "post_title": "mcs360.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:22.758128" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:23.647773" + }, + { + "post_title": "stsaviationgroup.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:24.373564" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 22:40:09.681028" + }, + { + "post_title": "ernesthealth.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 11:39:50.609254" + }, + { + "post_title": "silganholdings.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 11:39:51.764310" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 12:41:47.403987" + }, + { + "post_title": "advancedprosolutions.com\\$5M\\USA\\54GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-26 15:39:58.575380" + }, + { + "post_title": "S+C Partners", + "group_name": "alphv", + "discovered": "2024-02-26 16:40:24.072082" + }, + { + "post_title": "Webber International University", + "group_name": "ransomhouse", + "discovered": "2024-02-26 16:40:27.633563" + }, + { + "post_title": "The Professional Liability Fund ", + "group_name": "medusa", + "discovered": "2024-02-26 16:40:34.543567" + }, + { + "post_title": "Southwest Industrial Sales", + "group_name": "medusa", + "discovered": "2024-02-26 16:40:35.341234" + }, + { + "post_title": "silganhodlings.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 16:40:47.874017" + }, + { + "post_title": "Bjuvs kommun", + "group_name": "akira", + "discovered": "2024-02-26 17:38:01.862506" + }, + { + "post_title": "https://www.bazaarvoice.com", + "group_name": "mogilevich", + "discovered": "2024-02-26 17:38:11.668034" } ] \ No newline at end of file diff --git a/src/threatProfileRansomwareProfiles.json b/src/threatProfileRansomwareProfiles.json index 4ba8a4f..96426ad 100644 --- a/src/threatProfileRansomwareProfiles.json +++ b/src/threatProfileRansomwareProfiles.json @@ -156,8 +156,8 @@ "version": 3, "slug": "http://lorenzmlwpzgxq736jzseuterytjueszsvznuibanxomlpkyxk6ksoyd.onion/", "available": true, - "updated": "2024-01-31 11:05:53.276904", - "lastscrape": "2024-01-31 11:05:53.276890", + "updated": "2024-02-26 17:05:55.720044", + "lastscrape": "2024-02-26 17:05:55.720031", "enabled": true } ], @@ -533,8 +533,8 @@ "version": 3, "slug": "http://rgleaktxuey67yrgspmhvtnrqtgogur35lwdrup4d3igtbm3pupc4lyd.onion/", "available": true, - "updated": "2024-01-31 11:07:52.816753", - "lastscrape": "2024-01-31 11:07:52.816739", + "updated": "2024-02-26 17:07:52.925292", + "lastscrape": "2024-02-26 17:07:52.925278", "enabled": true }, { @@ -553,8 +553,8 @@ "version": 3, "slug": "http://ragnarnwvli32xnmwudsvhbl7klzmofxeylyhcqfc5ifx5mbybq3ekqd.onion", "available": true, - "updated": "2024-01-31 11:08:02.902942", - "lastscrape": "2024-01-31 11:08:02.902929", + "updated": "2024-02-26 17:07:56.872866", + "lastscrape": "2024-02-26 17:07:56.872851", "enabled": true } ], @@ -585,9 +585,9 @@ "title": "Access Queue", "version": 3, "slug": "http://santat7kpllt6iyvqbr7q4amdv6dzrh6paatvyrzl7ry3zm72zigf4ad.onion/", - "available": false, - "updated": "2024-01-31 09:08:18.372517", - "lastscrape": "2024-01-31 09:08:18.372501", + "available": true, + "updated": "2024-02-26 17:08:05.982313", + "lastscrape": "2024-02-26 17:08:05.982300", "enabled": true }, { @@ -595,9 +595,9 @@ "title": "TORRENT | CL0P^_- LEAKS", "version": 3, "slug": "http://toznnag5o3ambca56s2yacteu7q7x2avrfherzmz4nmujrjuib4iusad.onion", - "available": false, - "updated": "2024-01-17 15:09:01.363040", - "lastscrape": "2024-01-17 15:09:01.363029", + "available": true, + "updated": "2024-02-26 17:08:18.005481", + "lastscrape": "2024-02-26 17:08:18.005469", "enabled": true } ], @@ -710,8 +710,8 @@ "version": 3, "slug": "http://ransomocmou6mnbquqz44ewosbkjk3o5qjsl3orawojexfook2j7esad.onion/", "available": true, - "updated": "2024-01-31 11:08:35.107587", - "lastscrape": "2024-01-31 11:08:35.107576", + "updated": "2024-02-26 17:08:24.433930", + "lastscrape": "2024-02-26 17:08:24.433918", "enabled": true } ], @@ -901,9 +901,9 @@ "title": "Babuk - Leaks site", "version": 3, "slug": "http://nq4zyac4ukl4tykmidbzgdlvaboqeqsemkp4t35bzvjeve6zm2lqcjid.onion/", - "available": true, - "updated": "2024-01-31 11:08:41.027281", - "lastscrape": "2024-01-31 11:08:41.027270", + "available": false, + "updated": "2024-02-26 08:10:25.892277", + "lastscrape": "2024-02-26 08:10:25.892266", "enabled": true } ], @@ -926,8 +926,8 @@ "version": 3, "slug": "http://rnsm777cdsjrsdlbs4v5qoeppu3px6sb2igmh53jzrx7ipcrbjz5b2ad.onion/", "available": true, - "updated": "2024-01-31 11:08:50.199136", - "lastscrape": "2024-01-31 11:08:50.199121", + "updated": "2024-02-26 17:08:33.113904", + "lastscrape": "2024-02-26 17:08:33.113889", "enabled": true } ], @@ -960,8 +960,8 @@ "version": 3, "slug": "http://cuba4ikm4jakjgmkezytyawtdgr2xymvy6nvzgw5cglswg3si76icnqd.onion", "available": false, - "updated": "2024-01-30 05:09:11.870319", - "lastscrape": "2024-01-30 05:09:11.870307", + "updated": "2024-02-07 21:08:47.563286", + "lastscrape": "2024-02-07 21:08:47.563272", "enabled": true } ], @@ -1101,12 +1101,12 @@ }, { "fqdn": "aby6efzmp7jzbwgidgqc6ghxi2vwpo6d7eaood5xuoxutrfofsmzcjqd.onion", - "title": "Anonymous marketplace – Anonymous Marketplace + Se", + "title": "Anonymous marketplace | Anonymous Marketplace + Se", "version": 3, "slug": "http://aby6efzmp7jzbwgidgqc6ghxi2vwpo6d7eaood5xuoxutrfofsmzcjqd.onion", "available": false, - "updated": "2024-01-31 04:11:32.968448", - "lastscrape": "2024-01-31 04:11:32.968436", + "updated": "2024-02-20 12:12:39.378769", + "lastscrape": "2024-02-20 12:12:39.378755", "enabled": true }, { @@ -1114,9 +1114,9 @@ "title": "Dark Leak Market", "version": 3, "slug": "http://darklmmmfuonklpy6s3tmvk5mrcdi7iapaw6eka45esmoryiiuug6aid.onion", - "available": true, - "updated": "2024-01-31 11:09:49.222423", - "lastscrape": "2024-01-31 11:09:49.222411", + "available": false, + "updated": "2024-02-25 22:09:04.520855", + "lastscrape": "2024-02-25 22:09:04.520843", "enabled": true }, { @@ -1421,8 +1421,8 @@ "version": 3, "slug": "http://mmcbkgua72og66w4jz3qcxkkhefax754pg6iknmtfujvkt2j65ffraad.onion", "available": true, - "updated": "2024-01-31 11:10:08.931281", - "lastscrape": "2024-01-31 11:10:08.931266", + "updated": "2024-02-26 17:09:40.310371", + "lastscrape": "2024-02-26 17:09:40.310358", "enabled": true } ], @@ -1953,8 +1953,8 @@ "version": 3, "slug": "http://rampjcdlqvgkoz5oywutpo6ggl7g6tvddysustfl6qzhr5osr24xxqqd.onion", "available": true, - "updated": "2024-01-31 11:10:32.090259", - "lastscrape": "2024-01-31 11:10:32.090247", + "updated": "2024-02-26 17:10:08.963846", + "lastscrape": "2024-02-26 17:10:08.963832", "enabled": true }, { @@ -2059,8 +2059,18 @@ "version": 3, "slug": "http://medusaxko7jxtrojdkxo66j7ck4q5tgktf7uqsqyfry4ebnxlcbkccyd.onion/api/search?company=&page=0", "available": false, - "updated": "2024-01-31 10:11:08.782274", - "lastscrape": "2024-01-31 10:11:08.782260", + "updated": "2024-02-26 16:10:40.929502", + "lastscrape": "2024-02-26 16:10:40.929488", + "enabled": true + }, + { + "fqdn": "medusakxxtp3uo7vusntvubnytaph4d3amxivbggl3hnhpk2nmus34yd.onion", + "title": "Medusa Chat", + "version": 3, + "slug": "http://medusakxxtp3uo7vusntvubnytaph4d3amxivbggl3hnhpk2nmus34yd.onion", + "available": true, + "updated": "2024-02-26 17:10:21.493379", + "lastscrape": "2024-02-26 17:10:21.493365", "enabled": true } ], @@ -2099,8 +2109,8 @@ "version": 0, "slug": "http://dwhyj2.top", "available": true, - "updated": "2024-01-31 11:11:43.506050", - "lastscrape": "2024-01-31 11:11:43.506037", + "updated": "2024-02-26 17:10:49.151120", + "lastscrape": "2024-02-26 17:10:49.151107", "enabled": true }, { @@ -2119,8 +2129,8 @@ "version": 0, "slug": "http://sn76920193ch.top", "available": true, - "updated": "2024-01-31 11:12:04.072939", - "lastscrape": "2024-01-31 11:12:04.072927", + "updated": "2024-02-26 17:11:09.273331", + "lastscrape": "2024-02-26 17:11:09.273316", "enabled": true }, { @@ -2129,8 +2139,8 @@ "version": 0, "slug": "https://snatchnews.top", "available": true, - "updated": "2024-01-31 11:12:19.031084", - "lastscrape": "2024-01-31 11:12:19.031071", + "updated": "2024-02-26 17:11:24.279152", + "lastscrape": "2024-02-26 17:11:24.279141", "enabled": true }, { @@ -2139,8 +2149,8 @@ "version": 0, "slug": "http://sntech2ch.top", "available": false, - "updated": "2023-12-20 14:12:40.073978", - "lastscrape": "2023-12-20 14:12:40.073966", + "updated": "2024-02-12 19:11:59.477798", + "lastscrape": "2024-02-12 19:11:59.477785", "enabled": true }, { @@ -2149,8 +2159,8 @@ "version": 0, "slug": "https://snatchteam.cc", "available": true, - "updated": "2024-01-31 11:12:49.672210", - "lastscrape": "2024-01-31 11:12:49.672196", + "updated": "2024-02-26 17:11:54.877859", + "lastscrape": "2024-02-26 17:11:54.877845", "enabled": true } ], @@ -2248,8 +2258,8 @@ "version": 0, "slug": "https://moses-staff.se/activities/", "available": true, - "updated": "2024-01-31 11:13:07.447193", - "lastscrape": "2024-01-31 11:13:07.447181", + "updated": "2024-02-26 17:12:11.688457", + "lastscrape": "2024-02-26 17:12:11.688443", "enabled": true } ], @@ -2418,9 +2428,9 @@ "title": "404 Not Found", "version": 3, "slug": "http://alphvmmm27o3abo3r2mlmjrpdmzle3rykajqc5xsj7j7ejksbpsa36ad.onion/api/blog/all/0/6", - "available": true, - "updated": "2024-01-31 11:13:25.391607", - "lastscrape": "2024-01-31 11:13:25.391594", + "available": false, + "updated": "2024-02-26 16:12:54.276731", + "lastscrape": "2024-02-26 16:12:54.276719", "enabled": true }, { @@ -2438,9 +2448,9 @@ "title": "404 Not Found", "version": 3, "slug": "http://vqifktlreqpudvulhbzmc5gocbeawl67uvs2pttswemdorbnhaddohyd.onion/search", - "available": false, - "updated": "2024-01-31 09:13:26.040179", - "lastscrape": "2024-01-31 09:13:26.040156", + "available": true, + "updated": "2024-02-26 17:12:37.473051", + "lastscrape": "2024-02-26 17:12:37.473038", "enabled": true }, { @@ -2449,8 +2459,8 @@ "version": 3, "slug": "http://alphvuzxyxv6ylumd2ngp46xzq3pw6zflomrghvxeuks6kklberrbmyd.onion/api/blog/brief/0/100", "available": true, - "updated": "2024-01-31 11:13:51.345242", - "lastscrape": "2024-01-31 11:13:51.345227", + "updated": "2024-02-26 17:12:44.239281", + "lastscrape": "2024-02-26 17:12:44.239265", "enabled": true } ], @@ -2474,8 +2484,8 @@ "version": 3, "slug": "http://7k4yyskpz3rxq5nyokf6ztbpywzbjtdfanweup3skctcxopmt7tq7eid.onion/databases.html", "available": false, - "updated": "2024-01-27 13:11:48.788792", - "lastscrape": "2024-01-27 13:11:48.788781", + "updated": "2024-02-26 04:13:57.037391", + "lastscrape": "2024-02-26 04:13:57.037376", "enabled": true } ], @@ -2752,7 +2762,7 @@ "available": false, "updated": "2023-09-30 22:08:06.869555", "lastscrape": "2023-09-30 22:08:06.869539", - "enabled": true + "enabled": false }, { "fqdn": "ransekgbpijp56bflufgxptwn5hej2rztx423v6sim2zrzz7xetnr2qd.onion", @@ -2762,6 +2772,16 @@ "available": false, "updated": "2023-12-27 02:19:40.183937", "lastscrape": "2023-12-27 02:19:40.183925", + "enabled": false + }, + { + "fqdn": "pdcizqzjitsgfcgqeyhuee5u6uki6zy5slzioinlhx6xjnsw25irdgqd.onion", + "title": "StormouS.X BLOG | Official blog", + "version": 3, + "slug": "http://pdcizqzjitsgfcgqeyhuee5u6uki6zy5slzioinlhx6xjnsw25irdgqd.onion", + "available": true, + "updated": "2024-02-26 17:12:58.232309", + "lastscrape": "2024-02-26 17:12:58.232295", "enabled": true } ], @@ -2801,9 +2821,19 @@ "title": null, "version": 3, "slug": "http://ranionv3j2o7wrn3um6de33eccbchhg32mkgnnoi72enkpp7jc25h3ad.onion", + "available": false, + "updated": "2024-02-26 16:13:34.643765", + "lastscrape": "2024-02-26 16:13:34.643752", + "enabled": true + }, + { + "fqdn": "ssg3qvvuilseciagm4nixjqu3rsiheny5lifjnwt6o5ann64iocy64ad.onion", + "title": "RANION", + "version": 3, + "slug": "http://ssg3qvvuilseciagm4nixjqu3rsiheny5lifjnwt6o5ann64iocy64ad.onion", "available": true, - "updated": "2024-01-31 11:14:41.769285", - "lastscrape": "2024-01-31 11:14:41.769274", + "updated": "2024-02-26 17:13:27.208402", + "lastscrape": "2024-02-26 17:13:27.208390", "enabled": true } ], @@ -2864,8 +2894,8 @@ "version": 3, "slug": "http://stniiomyjliimcgkvdszvgen3eaaoz55hreqqx6o77yvmpwt7gklffqd.onion/", "available": false, - "updated": "2024-01-31 10:14:59.712733", - "lastscrape": "2024-01-31 10:14:59.712721", + "updated": "2024-02-26 16:14:26.326129", + "lastscrape": "2024-02-26 16:14:26.326118", "enabled": true }, { @@ -2884,8 +2914,8 @@ "version": 3, "slug": "https://bastad5huzwkepdixedg2gekg7jk22ato24zyllp6lnjx7wdtyctgvyd.onion/", "available": true, - "updated": "2024-01-31 11:15:54.982642", - "lastscrape": "2024-01-31 11:15:54.982628", + "updated": "2024-02-26 17:14:35.028613", + "lastscrape": "2024-02-26 17:14:35.028599", "enabled": true } ], @@ -2956,8 +2986,8 @@ "version": 3, "slug": "http://zohlm7ahjwegcedoz7lrdrti7bvpofymcayotp744qhx6gjmxbuo2yid.onion/a", "available": true, - "updated": "2024-01-31 11:16:00.909047", - "lastscrape": "2024-01-31 11:16:00.909030", + "updated": "2024-02-26 17:14:43.198327", + "lastscrape": "2024-02-26 17:14:43.198315", "enabled": true } ], @@ -3024,102 +3054,102 @@ "locations": [ { "fqdn": "lockbitapt2d73krlbewgv27tquljgxr33xbwwsp6rkyieto7u4ncead.onion", - "title": "LockBit BLOG", + "title": "403 Forbidden", "version": 3, - "slug": "http://lockbitapt2d73krlbewgv27tquljgxr33xbwwsp6rkyieto7u4ncead.onion", - "available": true, - "updated": "2024-01-31 11:16:30.584702", - "lastscrape": "2024-01-31 11:16:30.584688", + "slug": "http://lockbitapt2d73krlbewgv27tquljgxr33xbwwsp6rkyieto7u4ncead.onion/page2.html", + "available": false, + "updated": "2024-02-25 17:14:27.124008", + "lastscrape": "2024-02-25 17:14:27.123993", "enabled": true }, { "fqdn": "lockbitapt2yfbt7lchxejug47kmqvqqxvvjpqkmevv4l3azl3gy6pyd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt2yfbt7lchxejug47kmqvqqxvvjpqkmevv4l3azl3gy6pyd.onion", - "available": true, - "updated": "2024-01-31 11:16:59.291500", - "lastscrape": "2024-01-31 11:16:59.291485", + "available": false, + "updated": "2024-02-25 17:15:02.469269", + "lastscrape": "2024-02-25 17:15:02.469255", "enabled": true }, { "fqdn": "lockbitapt34kvrip6xojylohhxrwsvpzdffgs5z4pbbsywnzsbdguqd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt34kvrip6xojylohhxrwsvpzdffgs5z4pbbsywnzsbdguqd.onion", - "available": true, - "updated": "2024-01-31 11:17:37.141146", - "lastscrape": "2024-01-31 11:17:37.141135", + "available": false, + "updated": "2024-02-25 17:15:39.528882", + "lastscrape": "2024-02-25 17:15:39.528868", "enabled": true }, { "fqdn": "lockbitapt5x4zkjbcqmz6frdhecqqgadevyiwqxukksspnlidyvd7qd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt5x4zkjbcqmz6frdhecqqgadevyiwqxukksspnlidyvd7qd.onion", "available": false, - "updated": "2024-01-31 08:19:13.334746", - "lastscrape": "2024-01-31 08:19:13.334728", + "updated": "2024-02-25 16:18:19.077065", + "lastscrape": "2024-02-25 16:18:19.077051", "enabled": true }, { "fqdn": "lockbitapt6vx57t3eeqjofwgcglmutr3a35nygvokja5uuccip4ykyd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt6vx57t3eeqjofwgcglmutr3a35nygvokja5uuccip4ykyd.onion", - "available": true, - "updated": "2024-01-31 11:18:29.631261", - "lastscrape": "2024-01-31 11:18:29.631248", + "available": false, + "updated": "2024-02-25 17:16:39.478887", + "lastscrape": "2024-02-25 17:16:39.478874", "enabled": true }, { "fqdn": "lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "available": true, - "updated": "2024-01-31 11:19:09.433685", - "lastscrape": "2024-01-31 11:19:09.433672", + "available": false, + "updated": "2024-02-25 17:17:14.854673", + "lastscrape": "2024-02-25 17:17:14.854661", "enabled": true }, { "fqdn": "lockbitaptawjl6udhpd323uehekiyatj6ftcxmkwe5sezs4fqgpjpid.onion", - "title": "LockBit BLOG", + "title": "502 Bad Gateway", "version": 3, "slug": "http://lockbitaptawjl6udhpd323uehekiyatj6ftcxmkwe5sezs4fqgpjpid.onion", - "available": true, - "updated": "2024-01-31 11:19:42.274622", - "lastscrape": "2024-01-31 11:19:42.274604", + "available": false, + "updated": "2024-02-26 06:17:39.701546", + "lastscrape": "2024-02-26 06:17:39.701534", "enabled": true }, { "fqdn": "lockbitaptbdiajqtplcrigzgdjprwugkkut63nbvy2d5r4w2agyekqd.onion", - "title": null, + "title": "Title", "version": 3, "slug": "http://lockbitaptbdiajqtplcrigzgdjprwugkkut63nbvy2d5r4w2agyekqd.onion", - "available": true, - "updated": "2024-01-31 11:20:20.696504", - "lastscrape": "2024-01-31 11:20:20.696491", + "available": false, + "updated": "2024-02-25 17:18:13.577209", + "lastscrape": "2024-02-25 17:18:13.577195", "enabled": true }, { "fqdn": "lockbitaptc2iq4atewz2ise62q63wfktyrl4qtwuk5qax262kgtzjqd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitaptc2iq4atewz2ise62q63wfktyrl4qtwuk5qax262kgtzjqd.onion", - "available": true, - "updated": "2024-01-31 11:20:50.758361", - "lastscrape": "2024-01-31 11:20:50.758350", + "available": false, + "updated": "2024-02-25 17:18:44.269339", + "lastscrape": "2024-02-25 17:18:44.269325", "enabled": true }, { "fqdn": "lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "title": "LockBit BLOG", + "title": "Title", "version": 3, "slug": "http://lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "available": true, - "updated": "2024-01-31 11:21:24.284246", - "lastscrape": "2024-01-31 11:21:24.284236", + "available": false, + "updated": "2024-02-25 17:19:11.263695", + "lastscrape": "2024-02-25 17:19:11.263682", "enabled": true }, { @@ -3128,8 +3158,8 @@ "version": 3, "slug": "http://lockbitsupa7e3b4pkn4mgkgojrl5iqgx24clbzc4xm7i6jeetsia3qd.onion", "available": false, - "updated": "2024-01-31 06:21:26.428514", - "lastscrape": "2024-01-31 06:21:26.428501", + "updated": "2024-02-19 20:21:36.885840", + "lastscrape": "2024-02-19 20:21:36.885827", "enabled": true }, { @@ -3137,9 +3167,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupdwon76nzykzblcplixwts4n4zoecugz2bxabtapqvmzqqd.onion", - "available": true, - "updated": "2024-01-31 11:22:12.165343", - "lastscrape": "2024-01-31 11:22:12.165331", + "available": false, + "updated": "2024-02-19 20:21:58.060298", + "lastscrape": "2024-02-19 20:21:58.060287", "enabled": true }, { @@ -3148,8 +3178,8 @@ "version": 3, "slug": "http://lockbitsupn2h6be2cnqpvncyhj4rgmnwn44633hnzzmtxdvjoqlp7yd.onion", "available": false, - "updated": "2024-01-31 10:21:20.878273", - "lastscrape": "2024-01-31 10:21:20.878259", + "updated": "2024-02-19 20:22:24.313587", + "lastscrape": "2024-02-19 20:22:24.313573", "enabled": true }, { @@ -3157,9 +3187,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupo7vv5vcl3jxpsdviopwvasljqcstym6efhh6oze7c6xjad.onion", - "available": true, - "updated": "2024-01-31 11:23:04.168639", - "lastscrape": "2024-01-31 11:23:04.168625", + "available": false, + "updated": "2024-02-19 20:22:43.790067", + "lastscrape": "2024-02-19 20:22:43.790054", "enabled": true }, { @@ -3168,8 +3198,8 @@ "version": 3, "slug": "http://lockbitsupqfyacidr6upt6nhhyipujvaablubuevxj6xy3frthvr3yd.onion", "available": false, - "updated": "2024-01-31 10:22:10.222493", - "lastscrape": "2024-01-31 10:22:10.222479", + "updated": "2024-02-19 17:26:18.751047", + "lastscrape": "2024-02-19 17:26:18.751032", "enabled": true }, { @@ -3178,8 +3208,8 @@ "version": 3, "slug": "http://lockbitsupt7nr3fa6e7xyb73lk6bw6rcneqhoyblniiabj4uwvzapqd.onion", "available": false, - "updated": "2024-01-31 10:22:35.174910", - "lastscrape": "2024-01-31 10:22:35.174895", + "updated": "2024-02-19 20:23:29.309498", + "lastscrape": "2024-02-19 20:23:29.309485", "enabled": true }, { @@ -3187,9 +3217,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupuhswh4izvoucoxsbnotkmgq6durg7kficg6u33zfvq3oyd.onion/form", - "available": true, - "updated": "2024-01-31 11:24:12.651492", - "lastscrape": "2024-01-31 11:24:12.651478", + "available": false, + "updated": "2024-02-19 20:23:51.180800", + "lastscrape": "2024-02-19 20:23:51.180789", "enabled": true }, { @@ -3197,9 +3227,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupxcjntihbmat4rrh7ktowips2qzywh6zer5r3xafhviyhqd.onion/form", - "available": true, - "updated": "2024-01-31 11:24:40.141530", - "lastscrape": "2024-01-31 11:24:40.141517", + "available": false, + "updated": "2024-02-19 20:24:09.675574", + "lastscrape": "2024-02-19 20:24:09.675560", "enabled": true }, { @@ -3207,9 +3237,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupq3g62dni2f36snrdb4n5qzqvovbtkt5xffw3draxk6gwqd.onion/form", - "available": true, - "updated": "2024-01-31 11:25:05.404918", - "lastscrape": "2024-01-31 11:25:05.404906", + "available": false, + "updated": "2024-02-19 20:24:29.949625", + "lastscrape": "2024-02-19 20:24:29.949612", "enabled": true }, { @@ -3217,9 +3247,9 @@ "title": "LockBit File Share", "version": 3, "slug": "http://lockbitfile2tcudkcqqt2ve6btssyvqwlizbpv5vz337lslmhff2uad.onion/", - "available": true, - "updated": "2024-01-31 11:25:31.083389", - "lastscrape": "2024-01-31 11:25:31.083377", + "available": false, + "updated": "2024-02-26 16:20:58.250348", + "lastscrape": "2024-02-26 16:20:58.250335", "enabled": true }, { @@ -3228,8 +3258,8 @@ "version": 3, "slug": "http://lockbitnotexk2vnf2q2zwjefsl3hjsnk4u74vq4chxrqpjclfydk4ad.onion/", "available": true, - "updated": "2024-01-31 11:25:59.870775", - "lastscrape": "2024-01-31 11:25:59.870761", + "updated": "2024-02-26 17:21:36.899096", + "lastscrape": "2024-02-26 17:21:36.899082", "enabled": true }, { @@ -3237,9 +3267,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsup4yezcd5enk5unncx3zcy7kw6wllyqmiyhvanjj352jayid.onion", - "available": true, - "updated": "2024-01-31 11:26:30.017065", - "lastscrape": "2024-01-31 11:26:30.017051", + "available": false, + "updated": "2024-02-19 20:25:55.258728", + "lastscrape": "2024-02-19 20:25:55.258713", "enabled": true } ], @@ -3368,8 +3398,8 @@ "version": 3, "slug": "https://omx5iqrdbsoitf3q4xexrqw5r5tfw7vp3vl3li3lfo7saabxazshnead.onion", "available": false, - "updated": "2024-01-31 04:28:38.053054", - "lastscrape": "2024-01-31 04:28:38.053039", + "updated": "2024-02-26 05:22:14.276733", + "lastscrape": "2024-02-26 05:22:14.276720", "enabled": true }, { @@ -3378,8 +3408,8 @@ "version": 3, "slug": "https://3f7nxkjway3d223j27lyad7v5cgmyaifesycvmwq7i7cbs23lb6llryd.onion", "available": false, - "updated": "2024-01-31 09:27:14.026550", - "lastscrape": "2024-01-31 09:27:14.026536", + "updated": "2024-02-26 16:23:19.046648", + "lastscrape": "2024-02-26 16:23:19.046634", "enabled": true }, { @@ -3430,14 +3460,25 @@ "version": 3, "slug": "http://bianlianlbc5an4kgnay3opdemgcryg2kpfcbgczopmm3dnbz3uaunad.onion/companies/", "available": true, - "updated": "2024-01-31 11:28:31.324681", - "lastscrape": "2024-01-31 11:28:31.324670", + "updated": "2024-02-26 17:23:29.101457", + "lastscrape": "2024-02-26 17:23:29.101444", + "enabled": true + }, + { + "fqdn": "bianlivemqbawcco4cx4a672k2fip3guyxudzurfqvdszafam3ofqgqd.onion", + "title": "Companies - BianLian", + "version": 3, + "slug": "http://bianlivemqbawcco4cx4a672k2fip3guyxudzurfqvdszafam3ofqgqd.onion/companies/", + "available": true, + "updated": "2024-02-26 17:23:48.083579", + "lastscrape": "2024-02-26 17:23:48.083565", "enabled": true } ], "profile": [ "A4B3B0845DA242A64BF17E0DB4278EDF85855739667D3E2AE8B89D5439015F07E81D12D767FC", - "SWikipedia@mail2tor.com" + "SWikipedia@mail2tor.com", + "deepmind@onionmail.org" ] }, { @@ -3453,8 +3494,8 @@ "version": 3, "slug": "http://omegalock5zxwbhswbisc42o2q2i54vdulyvtqqbudqousisjgc7j7yd.onion", "available": true, - "updated": "2024-01-31 11:28:45.258517", - "lastscrape": "2024-01-31 11:28:45.258504", + "updated": "2024-02-26 17:23:55.940354", + "lastscrape": "2024-02-26 17:23:55.940340", "enabled": true }, { @@ -3463,8 +3504,8 @@ "version": 0, "slug": "http://0mega.cc", "available": true, - "updated": "2024-01-31 11:28:52.550526", - "lastscrape": "2024-01-31 11:28:52.550512", + "updated": "2024-02-26 17:24:12.028467", + "lastscrape": "2024-02-26 17:24:12.028453", "enabled": true } ], @@ -3497,7 +3538,7 @@ "captcha": false, "parser": false, "javascript_render": false, - "meta": null, + "meta": "fs=fileserver", "locations": [ { "fqdn": "lockbit7z2jwcskxpbokpemdxmltipntwlkmidcll2qirbu7ykg46eyd.onion", @@ -3505,8 +3546,8 @@ "version": 3, "slug": "http://lockbit7z2jwcskxpbokpemdxmltipntwlkmidcll2qirbu7ykg46eyd.onion", "available": true, - "updated": "2024-01-31 11:29:03.946782", - "lastscrape": "2024-01-31 11:29:03.946772", + "updated": "2024-02-26 17:24:18.185028", + "lastscrape": "2024-02-26 17:24:18.185015", "enabled": true }, { @@ -3515,8 +3556,8 @@ "version": 3, "slug": "http://lockbit7z2mmiz3ryxafn5kapbvbbiywsxwovasfkgf5dqqp5kxlajad.onion", "available": true, - "updated": "2024-01-31 11:29:10.503172", - "lastscrape": "2024-01-31 11:29:10.503160", + "updated": "2024-02-26 17:24:24.126718", + "lastscrape": "2024-02-26 17:24:24.126707", "enabled": true }, { @@ -3525,8 +3566,8 @@ "version": 3, "slug": "http://lockbit7z2og4jlsmdy7dzty3g42eu3gh2sx2b6ywtvhrjtss7li4fyd.onion", "available": true, - "updated": "2024-01-31 11:29:20.177754", - "lastscrape": "2024-01-31 11:29:20.177743", + "updated": "2024-02-26 17:24:32.921661", + "lastscrape": "2024-02-26 17:24:32.921650", "enabled": true }, { @@ -3535,8 +3576,8 @@ "version": 3, "slug": "http://lockbit7z355oalq4hiy5p7de64l6rsqutwlvydqje56uvevcc57r6qd.onion", "available": true, - "updated": "2024-01-31 11:29:28.051388", - "lastscrape": "2024-01-31 11:29:28.051367", + "updated": "2024-02-26 17:24:37.565916", + "lastscrape": "2024-02-26 17:24:37.565905", "enabled": true }, { @@ -3545,8 +3586,8 @@ "version": 3, "slug": "http://lockbit7z36ynytxwjzuoao46ck7b3753gpedary3qvuizn3iczhe4id.onion", "available": true, - "updated": "2024-01-31 11:29:34.559237", - "lastscrape": "2024-01-31 11:29:34.559226", + "updated": "2024-02-26 17:24:42.244155", + "lastscrape": "2024-02-26 17:24:42.244143", "enabled": true }, { @@ -3555,8 +3596,8 @@ "version": 3, "slug": "http://lockbit7z37ntefjdbjextn6tmdkry4j546ejnru5cejeguitiopvhad.onion", "available": true, - "updated": "2024-01-31 11:29:42.761000", - "lastscrape": "2024-01-31 11:29:42.760989", + "updated": "2024-02-26 17:24:46.407727", + "lastscrape": "2024-02-26 17:24:46.407715", "enabled": true }, { @@ -3565,8 +3606,8 @@ "version": 3, "slug": "http://lockbit7z3azdoxdpqxzliszutufbc2fldagztdu47xyucp25p4xtqad.onion", "available": true, - "updated": "2024-01-31 11:29:51.856499", - "lastscrape": "2024-01-31 11:29:51.856488", + "updated": "2024-02-26 17:24:52.153342", + "lastscrape": "2024-02-26 17:24:52.153331", "enabled": true }, { @@ -3575,8 +3616,8 @@ "version": 3, "slug": "http://lockbit7z3ddvg5vuez2vznt73ljqgwx5tnuqaa2ye7lns742yiv2zyd.onion", "available": true, - "updated": "2024-01-31 11:30:05.771799", - "lastscrape": "2024-01-31 11:30:05.771788", + "updated": "2024-02-26 17:24:57.783201", + "lastscrape": "2024-02-26 17:24:57.783190", "enabled": true }, { @@ -3584,9 +3625,9 @@ "title": "LockBit - Leaked", "version": 3, "slug": "http://lockbit7z3hv7ev5knxbrhsvv2mmu2rddwqizdz4vwfvxt5izrq6zqqd.onion", - "available": false, - "updated": "2024-01-31 10:28:31.423422", - "lastscrape": "2024-01-31 10:28:31.423411", + "available": true, + "updated": "2024-02-26 17:25:08.366354", + "lastscrape": "2024-02-26 17:25:08.366343", "enabled": true }, { @@ -3595,8 +3636,8 @@ "version": 3, "slug": "http://lockbit7z3ujnkhxwahhjduh5me2updvzxewhhc5qvk2snxezoi5drad.onion", "available": true, - "updated": "2024-01-31 11:30:29.499618", - "lastscrape": "2024-01-31 11:30:29.499607", + "updated": "2024-02-26 17:25:11.289519", + "lastscrape": "2024-02-26 17:25:11.289508", "enabled": true }, { @@ -3605,8 +3646,8 @@ "version": 3, "slug": "http://lockbit7z4bsm63m3dagp5xglyacr4z4bwytkvkkwtn6enmuo5fi5iyd.onion", "available": true, - "updated": "2024-01-31 11:30:34.758680", - "lastscrape": "2024-01-31 11:30:34.758669", + "updated": "2024-02-26 17:25:16.745148", + "lastscrape": "2024-02-26 17:25:16.745136", "enabled": true }, { @@ -3615,8 +3656,8 @@ "version": 3, "slug": "http://lockbit7z4cgxvictidwfxpuiov4scdw34nxotmbdjyxpkvkg34mykyd.onion", "available": true, - "updated": "2024-01-31 11:30:49.903053", - "lastscrape": "2024-01-31 11:30:49.903042", + "updated": "2024-02-26 17:25:22.311713", + "lastscrape": "2024-02-26 17:25:22.311701", "enabled": true }, { @@ -3625,8 +3666,8 @@ "version": 3, "slug": "http://lockbit7z4k5zer5fbqi2vdq5sx2vuggatwyqvoodrkhubxftyrvncid.onion", "available": true, - "updated": "2024-01-31 11:30:58.293349", - "lastscrape": "2024-01-31 11:30:58.293338", + "updated": "2024-02-26 17:25:28.691072", + "lastscrape": "2024-02-26 17:25:28.691060", "enabled": true }, { @@ -3635,8 +3676,8 @@ "version": 3, "slug": "http://lockbit7z4ndl6thsct34yd47jrzdkpnfg3acfvpacuccb45pnars2ad.onion", "available": true, - "updated": "2024-01-31 11:31:03.510674", - "lastscrape": "2024-01-31 11:31:03.510663", + "updated": "2024-02-26 17:25:31.952660", + "lastscrape": "2024-02-26 17:25:31.952649", "enabled": true }, { @@ -3645,8 +3686,8 @@ "version": 3, "slug": "http://lockbit7z55tuwaflw2c7torcryobdvhkcgvivhflyndyvcrexafssad.onion", "available": true, - "updated": "2024-01-31 11:31:09.122797", - "lastscrape": "2024-01-31 11:31:09.122786", + "updated": "2024-02-26 17:25:36.453286", + "lastscrape": "2024-02-26 17:25:36.453275", "enabled": true }, { @@ -3655,8 +3696,8 @@ "version": 3, "slug": "http://lockbit7z57mkicfkuq44j6yrpu5finwvjllczkkp2uvdedsdonjztyd.onion", "available": true, - "updated": "2024-01-31 11:31:15.918515", - "lastscrape": "2024-01-31 11:31:15.918505", + "updated": "2024-02-26 17:25:39.720030", + "lastscrape": "2024-02-26 17:25:39.720018", "enabled": true }, { @@ -3665,8 +3706,8 @@ "version": 3, "slug": "http://lockbit7z5ehshj6gzpetw5kso3onts6ty7wrnneya5u4aj3vzkeoaqd.onion", "available": true, - "updated": "2024-01-31 11:31:22.612741", - "lastscrape": "2024-01-31 11:31:22.612731", + "updated": "2024-02-26 17:25:46.251718", + "lastscrape": "2024-02-26 17:25:46.251701", "enabled": true }, { @@ -3674,9 +3715,9 @@ "title": "LockBit - Leaked", "version": 3, "slug": "http://lockbit7z5hwf6ywfuzipoa42tjlmal3x5suuccngsamsgklww2xgyqd.onion", - "available": false, - "updated": "2024-01-31 10:29:55.293839", - "lastscrape": "2024-01-31 10:29:55.293828", + "available": true, + "updated": "2024-02-26 17:25:54.426642", + "lastscrape": "2024-02-26 17:25:54.426631", "enabled": true }, { @@ -3685,8 +3726,8 @@ "version": 3, "slug": "http://lockbit7z5ltrhzv46lsg447o3cx2637dloc3qt4ugd3gr2xdkkkeayd.onion", "available": true, - "updated": "2024-01-31 11:31:47.968364", - "lastscrape": "2024-01-31 11:31:47.968354", + "updated": "2024-02-26 17:25:59.483519", + "lastscrape": "2024-02-26 17:25:59.483507", "enabled": true }, { @@ -3695,8 +3736,8 @@ "version": 3, "slug": "http://lockbit7z6choojah4ipvdpzzfzxxchjbecnmtn4povk6ifdvx2dpnid.onion", "available": true, - "updated": "2024-01-31 11:31:56.517775", - "lastscrape": "2024-01-31 11:31:56.517765", + "updated": "2024-02-26 17:26:02.354771", + "lastscrape": "2024-02-26 17:26:02.354759", "enabled": true }, { @@ -3705,8 +3746,8 @@ "version": 3, "slug": "http://lockbit7z6dqziutocr43onmvpth32njp4abfocfauk2belljjpobxyd.onion", "available": true, - "updated": "2024-01-31 11:32:03.039368", - "lastscrape": "2024-01-31 11:32:03.039358", + "updated": "2024-02-26 17:26:08.078347", + "lastscrape": "2024-02-26 17:26:08.078335", "enabled": true }, { @@ -3715,8 +3756,8 @@ "version": 3, "slug": "http://lockbit7z6f3gu6rjvrysn5gjbsqj3hk3bvsg64ns6pjldqr2xhvhsyd.onion", "available": true, - "updated": "2024-01-31 11:32:18.922899", - "lastscrape": "2024-01-31 11:32:18.922889", + "updated": "2024-02-26 17:26:11.901342", + "lastscrape": "2024-02-26 17:26:11.901331", "enabled": true }, { @@ -3725,8 +3766,8 @@ "version": 3, "slug": "http://lockbit7z6qinyhhmibvycu5kwmcvgrbpvtztkvvmdce5zwtucaeyrqd.onion", "available": true, - "updated": "2024-01-31 11:32:23.641083", - "lastscrape": "2024-01-31 11:32:23.641072", + "updated": "2024-02-26 17:26:15.762831", + "lastscrape": "2024-02-26 17:26:15.762819", "enabled": true }, { @@ -3735,8 +3776,8 @@ "version": 3, "slug": "http://lockbit7z6rzyojiye437jp744d4uwtff7aq7df7gh2jvwqtv525c4yd.onion", "available": true, - "updated": "2024-01-31 11:32:29.798059", - "lastscrape": "2024-01-31 11:32:29.798049", + "updated": "2024-02-26 17:26:27.728388", + "lastscrape": "2024-02-26 17:26:27.728377", "enabled": true } ], @@ -3765,8 +3806,8 @@ "version": 3, "slug": "http://7ukmkdtyxdkdivtjad57klqnd3kdsmq6tp45rrsxqnu76zzv3jvitlqd.onion", "available": true, - "updated": "2024-01-31 11:32:54.301842", - "lastscrape": "2024-01-31 11:32:54.301829", + "updated": "2024-02-26 17:26:51.858192", + "lastscrape": "2024-02-26 17:26:51.858178", "enabled": true } ], @@ -3825,8 +3866,8 @@ "version": 3, "slug": "http://sbc2zv2qnz5vubwtx3aobfpkeao6l4igjegm3xx7tk5suqhjkp5jxtqd.onion", "available": true, - "updated": "2024-01-31 11:33:20.671264", - "lastscrape": "2024-01-31 11:33:20.671253", + "updated": "2024-02-26 17:27:20.669781", + "lastscrape": "2024-02-26 17:27:20.669767", "enabled": true }, { @@ -3844,9 +3885,9 @@ "title": "404 Not Found", "version": 3, "slug": "http://dk4mkfzqai6ure62oukzgtypedmwlfq57yj2fube7j5wsoi6tuia7nyd.onion/index.php", - "available": true, - "updated": "2024-01-31 11:33:47.480149", - "lastscrape": "2024-01-31 11:33:47.480137", + "available": false, + "updated": "2024-02-10 20:29:49.818637", + "lastscrape": "2024-02-10 20:29:49.818625", "enabled": true } ], @@ -3875,8 +3916,8 @@ "version": 3, "slug": "http://kbsqoivihgdmwczmxkbovk7ss2dcynitwhhfu5yw725dboqo5kthfaad.onion", "available": false, - "updated": "2024-01-31 05:32:39.346447", - "lastscrape": "2024-01-31 05:32:39.346437", + "updated": "2024-02-26 01:48:29.868648", + "lastscrape": "2024-02-26 01:48:29.868638", "enabled": true } ], @@ -3925,8 +3966,8 @@ "version": 3, "slug": "http://mblogci3rudehaagbryjznltdp33ojwzkq6hn2pckvjq33rycmzczpid.onion", "available": true, - "updated": "2024-01-31 11:34:15.616200", - "lastscrape": "2024-01-31 11:34:15.616186", + "updated": "2024-02-26 17:28:03.785737", + "lastscrape": "2024-02-26 17:28:03.785725", "enabled": true } ], @@ -4056,9 +4097,9 @@ "title": " Mallox | Data Leaks", "version": 3, "slug": "http://wtyafjyhwqrgo4a45wdvvwhen3cx4euie73qvlhkhvlrexljoyuklaad.onion", - "available": true, - "updated": "2024-01-31 11:35:03.906451", - "lastscrape": "2024-01-31 11:35:03.906440", + "available": false, + "updated": "2024-02-26 16:29:46.970336", + "lastscrape": "2024-02-26 16:29:46.970324", "enabled": true } ], @@ -4097,8 +4138,8 @@ "version": 3, "slug": "http://k7kg3jqxang3wh7hnmaiokchk7qoebupfgoik6rha6mjpzwupwtj25yd.onion/", "available": true, - "updated": "2024-01-31 11:35:13.938719", - "lastscrape": "2024-01-31 11:35:13.938706", + "updated": "2024-02-26 17:28:45.969403", + "lastscrape": "2024-02-26 17:28:45.969389", "enabled": true }, { @@ -4107,8 +4148,8 @@ "version": 3, "slug": "http://mbrlkbtq5jonaqkurjwmxftytyn2ethqvbxfu4rgjbkkknndqwae6byd.onion/", "available": true, - "updated": "2024-01-31 11:35:42.955543", - "lastscrape": "2024-01-31 11:35:42.955532", + "updated": "2024-02-26 17:28:56.446884", + "lastscrape": "2024-02-26 17:28:56.446870", "enabled": true } ], @@ -4206,9 +4247,9 @@ "title": "Vendetta", "version": 3, "slug": "http://test.cuba4ikm4jakjgmkezytyawtdgr2xymvy6nvzgw5cglswg3si76icnqd.onion", - "available": true, - "updated": "2024-01-31 11:35:47.667231", - "lastscrape": "2024-01-31 11:35:47.667217", + "available": false, + "updated": "2024-02-08 10:33:48.262091", + "lastscrape": "2024-02-08 10:33:48.262076", "enabled": true } ], @@ -4227,8 +4268,8 @@ "version": 3, "slug": "http://contiuevxdgdhn3zl2kubpajtfgqq4ssj2ipv6ujw7fwhggev3rk6hqd.onion", "available": true, - "updated": "2024-01-31 11:35:56.523149", - "lastscrape": "2024-01-31 11:35:56.523135", + "updated": "2024-02-26 17:29:08.677448", + "lastscrape": "2024-02-26 17:29:08.677434", "enabled": true } ], @@ -4256,9 +4297,9 @@ "title": null, "version": 3, "slug": "http://z6wkgghzdliugvwinrp46m7i4xpmovjyygoitpicx7x2iqtihn7noxid.onion", - "available": false, - "updated": "2024-01-31 04:35:28.114291", - "lastscrape": "2024-01-31 04:35:28.114279", + "available": true, + "updated": "2024-02-26 17:29:34.455770", + "lastscrape": "2024-02-26 17:29:34.455760", "enabled": true } ], @@ -4296,9 +4337,9 @@ "title": null, "version": 3, "slug": "http://3ev4metjirohtdpshsqlkrqcmxq6zu3d7obrdhglpy5jpbr7whmlfgqd.onion/static/data.js", - "available": true, - "updated": "2024-01-31 11:37:03.586804", - "lastscrape": "2024-01-31 11:37:03.586789", + "available": false, + "updated": "2024-02-26 16:31:23.401001", + "lastscrape": "2024-02-26 16:31:23.400991", "enabled": true } ], @@ -4317,8 +4358,8 @@ "version": 3, "slug": "http://blogvl7tjyjvsfthobttze52w36wwiz34hrfcmorgvdzb6hikucb7aqd.onion/news.php?contentId=1", "available": true, - "updated": "2024-01-31 11:37:08.367601", - "lastscrape": "2024-01-31 11:37:08.367586", + "updated": "2024-02-26 17:30:02.636555", + "lastscrape": "2024-02-26 17:30:02.636540", "enabled": true } ], @@ -4337,8 +4378,8 @@ "version": 3, "slug": "http://p66slxmtum2ox4jpayco6ai3qfehd5urgrs4oximjzklxcol264driqd.onion/index.html", "available": true, - "updated": "2024-01-31 11:37:14.621068", - "lastscrape": "2024-01-31 11:37:14.621056", + "updated": "2024-02-26 17:30:11.370654", + "lastscrape": "2024-02-26 17:30:11.370641", "enabled": true } ], @@ -4357,8 +4398,8 @@ "version": 3, "slug": "https://akiral2iz6a7qgd3ayp3l6yub7xx2uep76idk3u2kollpj5z3z636bad.onion/n", "available": true, - "updated": "2024-01-31 11:37:31.854732", - "lastscrape": "2024-01-31 11:37:31.854716", + "updated": "2024-02-26 17:30:18.385820", + "lastscrape": "2024-02-26 17:30:18.385809", "enabled": true }, { @@ -4367,8 +4408,8 @@ "version": 3, "slug": "https://akiralkzxzq2dsrzsrvbr2xgbbu2wgsmxryd4csgfameg52n7efvr2id.onion/", "available": true, - "updated": "2024-01-31 11:37:40.538317", - "lastscrape": "2024-01-31 11:37:40.538303", + "updated": "2024-02-26 17:30:25.497131", + "lastscrape": "2024-02-26 17:30:25.497117", "enabled": true } ], @@ -4486,9 +4527,9 @@ "title": "Sign up", "version": 3, "slug": "http://znuzuy4hkjacew5y2q7mo63hufhzzjtsr2bkjetxqjibk4ctfl7jghyd.onion", - "available": false, - "updated": "2024-01-31 09:38:35.023253", - "lastscrape": "2024-01-31 09:38:35.023235", + "available": true, + "updated": "2024-02-26 17:30:51.778405", + "lastscrape": "2024-02-26 17:30:51.778392", "enabled": true }, { @@ -4497,8 +4538,8 @@ "version": 3, "slug": "http://krsbhaxbki6jr4zvwblvkaqzjkircj7cxf46qt3na5o5sj2hpikbupqd.onion/api?page=1", "available": true, - "updated": "2024-01-31 11:38:46.234092", - "lastscrape": "2024-01-31 11:38:46.234080", + "updated": "2024-02-26 17:31:01.048851", + "lastscrape": "2024-02-26 17:31:01.048837", "enabled": true } ], @@ -4556,9 +4597,9 @@ "title": "Home", "version": 3, "slug": "http://xb6q2aggycmlcrjtbjendcnnwpmmwbosqaugxsqb4nx6cmod3emy7sad.onion", - "available": false, - "updated": "2024-01-31 10:37:40.351379", - "lastscrape": "2024-01-31 10:37:40.351367", + "available": true, + "updated": "2024-02-26 17:31:38.093473", + "lastscrape": "2024-02-26 17:31:38.093463", "enabled": true } ], @@ -4577,8 +4618,8 @@ "version": 3, "slug": "http://malas2urovbyyavjzaezkt5ohljvyd5lt7vv7mnsgbf2y4bwlh72doqd.onion/posts/", "available": true, - "updated": "2024-01-31 11:39:31.066476", - "lastscrape": "2024-01-31 11:39:31.066462", + "updated": "2024-02-26 17:31:42.271415", + "lastscrape": "2024-02-26 17:31:42.271400", "enabled": true } ], @@ -4597,8 +4638,8 @@ "version": 3, "slug": "http://weg7sdx54bevnvulapqu6bpzwztryeflq3s23tegbmnhkbpqz637f2yd.onion", "available": true, - "updated": "2024-01-31 11:39:37.896784", - "lastscrape": "2024-01-31 11:39:37.896773", + "updated": "2024-02-26 17:31:44.613499", + "lastscrape": "2024-02-26 17:31:44.613486", "enabled": true } ], @@ -4679,8 +4720,8 @@ "version": 3, "slug": "http://rhysidafohrhyy2aszi7bm32tnjat5xri65fopcxkdfxhi4tidsg7cad.onion/archive.php", "available": true, - "updated": "2024-01-31 11:39:50.844804", - "lastscrape": "2024-01-31 11:39:50.844793", + "updated": "2024-02-26 17:31:55.491418", + "lastscrape": "2024-02-26 17:31:55.491404", "enabled": true }, { @@ -4689,8 +4730,8 @@ "version": 3, "slug": "http://rhysidafc6lm7qa2mkiukbezh7zuth3i4wof4mh2audkymscjm6yegad.onion/archive.php?last&auction", "available": true, - "updated": "2024-01-31 11:39:55.332120", - "lastscrape": "2024-01-31 11:39:55.332107", + "updated": "2024-02-26 17:32:03.629462", + "lastscrape": "2024-02-26 17:32:03.629449", "enabled": true } ], @@ -4739,8 +4780,8 @@ "version": 3, "slug": "https://cactusbloguuodvqjmnzlwetjlpj6aggc6iocwhuupb47laukux7ckid.onion", "available": true, - "updated": "2024-01-31 11:40:44.653993", - "lastscrape": "2024-01-31 11:40:44.653980", + "updated": "2024-02-26 17:32:54.406873", + "lastscrape": "2024-02-26 17:32:54.406859", "enabled": true } ], @@ -4758,9 +4799,9 @@ "title": "Please wait...", "version": 3, "slug": "http://knight3xppu263m7g4ag3xlit2qxpryjwueobh7vjdc3zrscqlfu3pqd.onion/search/", - "available": true, - "updated": "2024-01-31 11:40:52.317490", - "lastscrape": "2024-01-31 11:40:52.317478", + "available": false, + "updated": "2024-02-14 07:41:03.694144", + "lastscrape": "2024-02-14 07:41:03.694133", "enabled": true }, { @@ -4789,8 +4830,8 @@ "version": 3, "slug": "http://incbackrlasjesgpfu5brktfjknbqoahe2hhmqfhasc5fb56mtukn4yd.onion/api/blog/get-leaks", "available": true, - "updated": "2024-01-31 11:41:06.783400", - "lastscrape": "2024-01-31 11:41:06.783387", + "updated": "2024-02-26 17:33:29.088944", + "lastscrape": "2024-02-26 17:33:29.088930", "enabled": true }, { @@ -4799,8 +4840,8 @@ "version": 3, "slug": "http://incblog7vmuq7rktic73r4ha4j757m3ptym37tyvifzp2roedyyzzxid.onion", "available": true, - "updated": "2024-01-31 11:41:12.414793", - "lastscrape": "2024-01-31 11:41:12.414782", + "updated": "2024-02-26 17:33:35.878838", + "lastscrape": "2024-02-26 17:33:35.878824", "enabled": true }, { @@ -4809,18 +4850,18 @@ "version": 0, "slug": "http://incbackend.top/api/blog/get-leaks", "available": true, - "updated": "2024-01-31 11:41:17.613487", - "lastscrape": "2024-01-31 11:41:17.613476", + "updated": "2024-02-26 17:33:38.334021", + "lastscrape": "2024-02-26 17:33:38.334007", "enabled": true }, { "fqdn": "incapt.blog", - "title": "INC Ransom", + "title": "Access Blocked", "version": 0, "slug": "http://incapt.blog/blog/leaks", - "available": true, - "updated": "2024-01-31 11:41:19.386350", - "lastscrape": "2024-01-31 11:41:19.386337", + "available": false, + "updated": "2024-02-22 01:53:45.391662", + "lastscrape": "2024-02-22 01:53:45.391649", "enabled": true } ], @@ -4859,8 +4900,8 @@ "version": 3, "slug": "http://cloak7jpvcb73rtx2ff7kaw2kholu7bdiivxpzbhlny4ybz75dpxckqd.onion", "available": true, - "updated": "2024-01-31 11:41:44.323106", - "lastscrape": "2024-01-31 11:41:44.323091", + "updated": "2024-02-26 17:34:09.971446", + "lastscrape": "2024-02-26 17:34:09.971431", "enabled": true } ], @@ -4879,8 +4920,8 @@ "version": 3, "slug": "http://f6amq3izzsgtna4vw24rpyhy3ofwazlgex2zqdssavevvkklmtudxjad.onion", "available": true, - "updated": "2024-01-31 11:41:50.282954", - "lastscrape": "2024-01-31 11:41:50.282941", + "updated": "2024-02-26 17:34:13.523646", + "lastscrape": "2024-02-26 17:34:13.523633", "enabled": true }, { @@ -4889,8 +4930,8 @@ "version": 0, "slug": "https://ransomed.vc", "available": true, - "updated": "2024-01-31 11:41:54.119511", - "lastscrape": "2024-01-31 11:41:54.119499", + "updated": "2024-02-26 17:34:19.092130", + "lastscrape": "2024-02-26 17:34:19.092116", "enabled": true } ], @@ -4918,9 +4959,9 @@ "title": "CiphBit", "version": 3, "slug": "http://ciphbitqyg26jor7eeo6xieyq7reouctefrompp6ogvhqjba7uo4xdid.onion", - "available": false, - "updated": "2024-01-31 09:42:04.660878", - "lastscrape": "2024-01-31 09:42:04.660856", + "available": true, + "updated": "2024-02-26 17:34:28.940731", + "lastscrape": "2024-02-26 17:34:28.940718", "enabled": true } ], @@ -4938,9 +4979,9 @@ "title": "ThreeAM Blog", "version": 3, "slug": "http://threeamkelxicjsaf2czjyz2lc4q3ngqkxhhlexyfcp2o6raw4rphyad.onion", - "available": false, - "updated": "2024-01-31 10:41:32.776685", - "lastscrape": "2024-01-31 10:41:32.776674", + "available": true, + "updated": "2024-02-26 17:34:33.024434", + "lastscrape": "2024-02-26 17:34:33.024420", "enabled": true } ], @@ -5003,8 +5044,8 @@ "version": 3, "slug": "https://hunters55rdxciehoqzwv7vgyv6nt37tbwax2reroyzxhou7my5ejyid.onion/api/public/companies", "available": false, - "updated": "2024-01-29 09:47:27.565225", - "lastscrape": "2024-01-29 09:47:27.565212", + "updated": "2024-02-26 14:34:23.141312", + "lastscrape": "2024-02-26 14:34:23.141298", "enabled": true }, { @@ -5012,9 +5053,9 @@ "title": "Loading...", "version": 3, "slug": "https://hunters33mmcwww7ek7q5ndahul6nmzmrsumfs6aenicbqon6mxfiqyd.onion/login", - "available": false, - "updated": "2024-01-30 18:43:31.102330", - "lastscrape": "2024-01-30 18:43:31.102317", + "available": true, + "updated": "2024-02-26 17:35:16.109322", + "lastscrape": "2024-02-26 17:35:16.109307", "enabled": true } ], @@ -5033,8 +5074,8 @@ "version": 3, "slug": "http://totos7fquprkecvcsl2jwy72v32glgkp2ejeqlnx5ynnxvbebgnletqd.onion/story/getAllStories", "available": true, - "updated": "2024-01-31 11:43:51.145878", - "lastscrape": "2024-01-31 11:43:51.145866", + "updated": "2024-02-26 17:35:19.545389", + "lastscrape": "2024-02-26 17:35:19.545375", "enabled": true }, { @@ -5042,9 +5083,9 @@ "title": "MEOW", "version": 3, "slug": "http://meow6xanhzfci2gbkn3lmbqq7xjjufskkdfocqdngt3ltvzgqpsg5mid.onion", - "available": true, - "updated": "2024-01-31 11:44:06.434058", - "lastscrape": "2024-01-31 11:44:06.434046", + "available": false, + "updated": "2024-02-25 19:37:50.630733", + "lastscrape": "2024-02-25 19:37:50.630719", "enabled": true } ], @@ -5102,9 +5143,19 @@ "title": null, "version": 3, "slug": "http://z3wqggtxft7id3ibr7srivv5gjof5fwg76slewnzwwakjuf3nlhukdid.onion/api/guest/blog/posts?archived=false", - "available": false, - "updated": "2024-01-31 10:43:17.834792", - "lastscrape": "2024-01-31 10:43:17.834778", + "available": true, + "updated": "2024-02-26 17:35:40.699827", + "lastscrape": "2024-02-26 17:35:40.699812", + "enabled": true + }, + { + "fqdn": "3pktcrcbmssvrnwe5skburdwe2h3v6ibdnn5kbjqihsg6eu6s6b7ryqd.onion", + "title": "DragonForce | Recovery", + "version": 3, + "slug": "http://3pktcrcbmssvrnwe5skburdwe2h3v6ibdnn5kbjqihsg6eu6s6b7ryqd.onion/login", + "available": true, + "updated": "2024-02-26 17:35:45.596728", + "lastscrape": "2024-02-26 17:35:45.596712", "enabled": true } ], @@ -5123,8 +5174,8 @@ "version": 0, "slug": "https://werewolves.pro/en/", "available": true, - "updated": "2024-01-31 11:45:05.628062", - "lastscrape": "2024-01-31 11:45:05.628053", + "updated": "2024-02-26 17:35:46.807089", + "lastscrape": "2024-02-26 17:35:46.807077", "enabled": true } ], @@ -5145,8 +5196,8 @@ "version": 0, "slug": "https://malekteam.ac", "available": true, - "updated": "2024-01-31 11:45:07.102401", - "lastscrape": "2024-01-31 11:45:07.102393", + "updated": "2024-02-26 17:35:49.520185", + "lastscrape": "2024-02-26 17:35:49.520169", "enabled": true }, { @@ -5155,8 +5206,8 @@ "version": 0, "slug": "http://195.14.123.2", "available": true, - "updated": "2024-01-31 11:45:07.940883", - "lastscrape": "2024-01-31 11:45:07.940875", + "updated": "2024-02-26 17:35:51.130780", + "lastscrape": "2024-02-26 17:35:51.130769", "enabled": true } ], @@ -5174,9 +5225,9 @@ "title": "Inane Right", "version": 3, "slug": "http://nv5lbsrr4rxmewzmpe25nnalowe4ga7ki6yfvit3wlpu7dfc36pyh4ad.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:13.636604", - "lastscrape": "2024-01-31 11:45:13.636593", + "available": false, + "updated": "2024-02-12 07:44:36.301290", + "lastscrape": "2024-02-12 07:44:36.301280", "enabled": true }, { @@ -5184,9 +5235,9 @@ "title": "Inane Right", "version": 3, "slug": "http://r2ad4ayrgpf7og673lhrw5oqyvqg4em2fpialk7l7gxkasvqkqow4qad.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:25.063064", - "lastscrape": "2024-01-31 11:45:25.063052", + "available": false, + "updated": "2024-02-12 07:44:52.684675", + "lastscrape": "2024-02-12 07:44:52.684662", "enabled": true }, { @@ -5194,9 +5245,9 @@ "title": "Inane Right", "version": 3, "slug": "http://gfksiwpsqudibondm6o2ipxymaonehq3l26qpgqr3nh4jvcyayvogcid.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:38.540416", - "lastscrape": "2024-01-31 11:45:38.540405", + "available": false, + "updated": "2024-02-12 07:44:57.617799", + "lastscrape": "2024-02-12 07:44:57.617789", "enabled": true } ], @@ -5215,8 +5266,8 @@ "version": 3, "slug": "http://noname2j6zkgnt7ftxsjju5tfd3s45s4i3egq5bqtl72kgum4ldc6qyd.onion", "available": true, - "updated": "2024-01-31 11:45:55.334767", - "lastscrape": "2024-01-31 11:45:55.334758", + "updated": "2024-02-26 17:36:22.671091", + "lastscrape": "2024-02-26 17:36:22.671076", "enabled": true } ], @@ -5238,8 +5289,182 @@ "version": 3, "slug": "http://3ytm3d25hfzvbylkxiwyqmpvzys5of7l4pbosm7ol7czlkplgukjq6yd.onion/atom.xml", "available": true, - "updated": "2024-01-31 09:44:46.571903", - "lastscrape": "2024-01-31 09:44:46.571887", + "updated": "2024-02-26 17:36:25.920873", + "lastscrape": "2024-02-26 17:36:25.920859", + "enabled": true + } + ], + "profile": [] + }, + { + "name": "ransomhub", + "captcha": false, + "parser": true, + "javascript_render": true, + "meta": null, + "locations": [ + { + "fqdn": "ransomxifxwc5eteopdobynonjctkxxvap77yqifu2emfbecgbqdw6qd.onion", + "title": "Index", + "version": 3, + "slug": "http://ransomxifxwc5eteopdobynonjctkxxvap77yqifu2emfbecgbqdw6qd.onion", + "available": true, + "updated": "2024-02-26 17:36:44.809774", + "lastscrape": "2024-02-26 17:36:44.809762", + "enabled": true + } + ], + "profile": [ + "4D598799696AD5399FABF7D40C4D1BE9F05D74CFB311047D7391AC0BF64BED47B56EEE66A528" + ] + }, + { + "name": "alphalocker", + "captcha": false, + "parser": true, + "javascript_render": false, + "meta": null, + "locations": [ + { + "fqdn": "mydatae2d63il5oaxxangwnid5loq2qmtsol2ozr6vtb7yfm5ypzo6id.onion", + "title": "--", + "version": 3, + "slug": "http://mydatae2d63il5oaxxangwnid5loq2qmtsol2ozr6vtb7yfm5ypzo6id.onion", + "available": true, + "updated": "2024-02-26 17:36:50.839307", + "lastscrape": "2024-02-26 17:36:50.839293", + "enabled": true + } + ], + "profile": [] + }, + { + "name": "mogilevich", + "captcha": false, + "parser": true, + "javascript_render": false, + "meta": null, + "locations": [ + { + "fqdn": "dkgn45pinr7nwvdaehemcrpgcjqf4fooit3c4gjw6dhzrp443ctvnoad.onion", + "title": "Mogilevich | Blog | Leaks", + "version": 3, + "slug": "http://dkgn45pinr7nwvdaehemcrpgcjqf4fooit3c4gjw6dhzrp443ctvnoad.onion/leaks.html", + "available": true, + "updated": "2024-02-26 17:36:55.969627", + "lastscrape": "2024-02-26 17:36:55.969615", + "enabled": true + } + ], + "profile": [ + "https://t.me/MogilevichRansom" + ] + }, + { + "name": "trisec_cyberoutlaw", + "captcha": false, + "parser": false, + "javascript_render": false, + "meta": null, + "locations": [ + { + "fqdn": "pkk4gbz7lsbgeja6s6iwsan2ce364sqioici65swwt65uhicke65uyid.onion", + "title": "Tri-sec is hiring", + "version": 3, + "slug": "http://pkk4gbz7lsbgeja6s6iwsan2ce364sqioici65swwt65uhicke65uyid.onion", + "available": true, + "updated": "2024-02-26 17:36:58.772065", + "lastscrape": "2024-02-26 17:36:58.772052", + "enabled": true + }, + { + "fqdn": "orfc3joknhrzscdbuxajypgrvlcawtuagbj7f44ugbosuvavg3dc3zid.onion", + "title": "Tri-sec is hiring", + "version": 3, + "slug": "http://orfc3joknhrzscdbuxajypgrvlcawtuagbj7f44ugbosuvavg3dc3zid.onion", + "available": true, + "updated": "2024-02-26 17:37:06.389309", + "lastscrape": "2024-02-26 17:37:06.389296", + "enabled": true + } + ], + "profile": [] + }, + { + "name": "lockbit3_new", + "captcha": false, + "parser": false, + "javascript_render": false, + "meta": null, + "locations": [ + { + "fqdn": "lockbit3753ekiocyo5epmpy6klmejchjtzddoekjlnt6mu3qh4de2id.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit3753ekiocyo5epmpy6klmejchjtzddoekjlnt6mu3qh4de2id.onion", + "available": true, + "updated": "2024-02-26 17:37:14.072364", + "lastscrape": "2024-02-26 17:37:14.072352", + "enabled": true + }, + { + "fqdn": "lockbit3g3ohd3katajf6zaehxz4h4cnhmz5t735zpltywhwpc6oy3id.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit3g3ohd3katajf6zaehxz4h4cnhmz5t735zpltywhwpc6oy3id.onion", + "available": true, + "updated": "2024-02-26 17:37:18.809409", + "lastscrape": "2024-02-26 17:37:18.809395", + "enabled": true + }, + { + "fqdn": "lockbit3olp7oetlc4tl5zydnoluphh7fvdt5oa6arcp2757r7xkutid.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit3olp7oetlc4tl5zydnoluphh7fvdt5oa6arcp2757r7xkutid.onion", + "available": true, + "updated": "2024-02-26 17:37:21.512589", + "lastscrape": "2024-02-26 17:37:21.512576", + "enabled": true + }, + { + "fqdn": "lockbit435xk3ki62yun7z5nhwz6jyjdp2c64j5vge536if2eny3gtid.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit435xk3ki62yun7z5nhwz6jyjdp2c64j5vge536if2eny3gtid.onion", + "available": true, + "updated": "2024-02-26 17:37:25.537664", + "lastscrape": "2024-02-26 17:37:25.537651", + "enabled": true + }, + { + "fqdn": "lockbit4lahhluquhoka3t4spqym2m3dhe66d6lr337glmnlgg2nndad.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit4lahhluquhoka3t4spqym2m3dhe66d6lr337glmnlgg2nndad.onion", + "available": true, + "updated": "2024-02-26 17:37:32.531312", + "lastscrape": "2024-02-26 17:37:32.531300", + "enabled": true + }, + { + "fqdn": "lockbit6knrauo3qafoksvl742vieqbujxw7rd6ofzdtapjb4rrawqad.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit6knrauo3qafoksvl742vieqbujxw7rd6ofzdtapjb4rrawqad.onion", + "available": true, + "updated": "2024-02-26 17:37:36.328889", + "lastscrape": "2024-02-26 17:37:36.328877", + "enabled": true + }, + { + "fqdn": "lockbit7ouvrsdgtojeoj5hvu6bljqtghitekwpdy3b6y62ixtsu5jqd.onion", + "title": "LockBit BLOG", + "version": 3, + "slug": "http://lockbit7ouvrsdgtojeoj5hvu6bljqtghitekwpdy3b6y62ixtsu5jqd.onion", + "available": true, + "updated": "2024-02-26 17:37:40.067861", + "lastscrape": "2024-02-26 17:37:40.067846", "enabled": true } ], From c9d33e4b7dd2896979c73a9f4bc67452d7cff04c Mon Sep 17 00:00:00 2001 From: rbozburun Date: Mon, 26 Feb 2024 23:22:08 +0300 Subject: [PATCH 07/10] updated --- src/activitiesRansomData.json | 1495 ++++++++++++++++++++++ src/threatProfileRansomwareProfiles.json | 638 ++++----- 2 files changed, 1835 insertions(+), 298 deletions(-) diff --git a/src/activitiesRansomData.json b/src/activitiesRansomData.json index a1fb1ad..15b2cbd 100644 --- a/src/activitiesRansomData.json +++ b/src/activitiesRansomData.json @@ -48678,5 +48678,1500 @@ "post_title": "sahchicago.org", "group_name": "lockbit3", "discovered": "2024-01-31 02:45:26.348346" + }, + { + "post_title": "http://www.northhill.org", + "group_name": "blacksuit", + "discovered": "2024-01-31 12:51:39.930062" + }, + { + "post_title": "Sefin", + "group_name": "akira", + "discovered": "2024-01-31 16:49:48.016322" + }, + { + "post_title": "LeClair Group", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:04.282701" + }, + { + "post_title": "SportsMEDIA Technology", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:05.536829" + }, + { + "post_title": "Galaxy Fireworks, Inc", + "group_name": "medusa", + "discovered": "2024-01-31 17:49:18.391058" + }, + { + "post_title": "Hydraflow", + "group_name": "alphv", + "discovered": "2024-01-31 18:47:09.987159" + }, + { + "post_title": "apeagers.au", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:41.578010" + }, + { + "post_title": "derrama.org.pe", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:44.708008" + }, + { + "post_title": "mnorch.org", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:50.080467" + }, + { + "post_title": "Primeimaging database for sale", + "group_name": "everest", + "discovered": "2024-02-01 01:00:18.239969" + }, + { + "post_title": "CNPC Peru S.A.", + "group_name": "rhysida", + "discovered": "2024-02-01 02:06:06.862360" + }, + { + "post_title": "Robert D. Clements Jr Law Group, LLLP", + "group_name": "bianlian", + "discovered": "2024-02-01 05:47:41.609894" + }, + { + "post_title": "Southwark Council", + "group_name": "meow", + "discovered": "2024-02-01 09:43:37.868205" + }, + { + "post_title": "bandcllp.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 10:44:55.771860" + }, + { + "post_title": "taloninternational.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 11:43:23.931373" + }, + { + "post_title": "etsolutions.com.mx", + "group_name": "threeam", + "discovered": "2024-02-01 11:43:34.845393" + }, + { + "post_title": "Borah Goldstein Alts chuler Nahins & Goid el", + "group_name": "akira", + "discovered": "2024-02-01 16:49:14.243876" + }, + { + "post_title": "manchesterfertility.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:26.905938" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:30.411918" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 20:48:01.452602" + }, + { + "post_title": "Data Broking Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:53.688350" + }, + { + "post_title": "OSINT Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:54.612232" + }, + { + "post_title": "Penetration Testing Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:55.442765" + }, + { + "post_title": "dms-imaging", + "group_name": "cuba", + "discovered": "2024-02-02 00:54:18.770967" + }, + { + "post_title": "Innovex Downhole Solutions", + "group_name": "play", + "discovered": "2024-02-02 00:54:36.522819" + }, + { + "post_title": "Tandem", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:26.801997" + }, + { + "post_title": "Law Office of Michael H Joseph", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:27.653954" + }, + { + "post_title": "lexcaribbean.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 13:40:44.520539" + }, + { + "post_title": "manitou-group.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 18:50:56.475105" + }, + { + "post_title": "Chaney, Couch, Callaway, Carter and Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:00.749932" + }, + { + "post_title": "Thomas LLP", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:01.737864" + }, + { + "post_title": "Digitel Venezuela", + "group_name": "medusa", + "discovered": "2024-02-02 20:46:55.568725" + }, + { + "post_title": "pbwtulsa.com", + "group_name": "lockbit3", + "discovered": "2024-02-03 10:47:49.041398" + }, + { + "post_title": "Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-03 14:49:56.026001" + }, + { + "post_title": "cxm.com", + "group_name": "lockbit3", + "discovered": "2024-02-04 14:53:11.959174" + }, + { + "post_title": "Cole, Cole, Easley and Sciba", + "group_name": "bianlian", + "discovered": "2024-02-04 14:53:18.078097" + }, + { + "post_title": "DOD contractors you are welcome in our chat.", + "group_name": "donutleaks", + "discovered": "2024-02-05 01:01:29.091614" + }, + { + "post_title": "logtainer.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:06.347461" + }, + { + "post_title": "philogen.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:08.569997" + }, + { + "post_title": "portline.pt", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:09.536611" + }, + { + "post_title": "prima.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:10.594814" + }, + { + "post_title": "semesco.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:07.235141" + }, + { + "post_title": "tgestiona.br", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:09.367337" + }, + { + "post_title": "ultraflexx.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:11.101910" + }, + { + "post_title": "GRTC Transit System", + "group_name": "bianlian", + "discovered": "2024-02-05 13:45:23.764982" + }, + { + "post_title": "ksa-architecture.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:32.478656" + }, + { + "post_title": "noe.wifi.at", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:34.487488" + }, + { + "post_title": "VCS Observation", + "group_name": "akira", + "discovered": "2024-02-05 16:42:56.046974" + }, + { + "post_title": "davis-french-associates.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:36.247382" + }, + { + "post_title": "hutchpaving.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:38.782412" + }, + { + "post_title": "http://tobaccofreekids.org", + "group_name": "blacksuit", + "discovered": "2024-02-05 17:46:50.921190" + }, + { + "post_title": "Vail-Summit Orthopaedics & Neurosurgery (VSON)", + "group_name": "alphv", + "discovered": "2024-02-05 18:50:43.265891" + }, + { + "post_title": "themisbourne.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 18:50:54.171029" + }, + { + "post_title": "www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-05 20:50:31.609895" + }, + { + "post_title": "Asecos", + "group_name": "blackbasta", + "discovered": "2024-02-05 21:43:46.607045" + }, + { + "post_title": "Albert Bartlett", + "group_name": "play", + "discovered": "2024-02-05 23:43:34.491635" + }, + { + "post_title": "Douglas County Libraries", + "group_name": "play", + "discovered": "2024-02-05 23:43:35.474786" + }, + { + "post_title": "Greenwich Leisure", + "group_name": "play", + "discovered": "2024-02-05 23:43:36.397641" + }, + { + "post_title": "Hannon Transport", + "group_name": "play", + "discovered": "2024-02-05 23:43:37.527051" + }, + { + "post_title": "Leaders Staffing", + "group_name": "play", + "discovered": "2024-02-05 23:43:38.489465" + }, + { + "post_title": "Mason Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:39.473554" + }, + { + "post_title": "McMillan Pazdan Smith", + "group_name": "play", + "discovered": "2024-02-05 23:43:40.701400" + }, + { + "post_title": "Northeastern Sheet Metal", + "group_name": "play", + "discovered": "2024-02-05 23:43:41.607174" + }, + { + "post_title": "Perry-McCall Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:42.650556" + }, + { + "post_title": "Premier Facility Management", + "group_name": "play", + "discovered": "2024-02-05 23:43:43.766593" + }, + { + "post_title": "Ready Mixed Concrete", + "group_name": "play", + "discovered": "2024-02-05 23:43:45.027198" + }, + { + "post_title": "Virgin Islands Lottery", + "group_name": "play", + "discovered": "2024-02-05 23:43:46.065386" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 08:41:13.613379" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 11:39:17.507661" + }, + { + "post_title": "ArpuPlus", + "group_name": "medusa", + "discovered": "2024-02-06 14:38:33.447511" + }, + { + "post_title": "Hbl Cpas, P.C.", + "group_name": "ransomhouse", + "discovered": "2024-02-06 15:38:37.673709" + }, + { + "post_title": "B Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:47.900991" + }, + { + "post_title": "Sciba", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:48.921809" + }, + { + "post_title": "Celeste", + "group_name": "akira", + "discovered": "2024-02-06 16:41:08.826387" + }, + { + "post_title": "AVer Information", + "group_name": "akira", + "discovered": "2024-02-06 16:41:09.704902" + }, + { + "post_title": "deltron.com", + "group_name": "abyss", + "discovered": "2024-02-06 19:43:18.744742" + }, + { + "post_title": "Shipleys LLP", + "group_name": "ransomhouse", + "discovered": "2024-02-07 00:58:46.279094" + }, + { + "post_title": "axsbolivia.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:48.225919" + }, + { + "post_title": "vimarequipment.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:56.102235" + }, + { + "post_title": "Anderco PTE LTD", + "group_name": "8base", + "discovered": "2024-02-07 00:59:03.707023" + }, + { + "post_title": "CERALP", + "group_name": "8base", + "discovered": "2024-02-07 00:59:04.775267" + }, + { + "post_title": "Harinck", + "group_name": "8base", + "discovered": "2024-02-07 00:59:06.470352" + }, + { + "post_title": "Karl Rieker GmbH and Co. KG", + "group_name": "8base", + "discovered": "2024-02-07 00:59:07.671488" + }, + { + "post_title": "PJ Green Inc", + "group_name": "8base", + "discovered": "2024-02-07 00:59:08.934928" + }, + { + "post_title": "PWS - The Laundry Company", + "group_name": "8base", + "discovered": "2024-02-07 00:59:09.838301" + }, + { + "post_title": "Precision Tune Auto Care", + "group_name": "8base", + "discovered": "2024-02-07 00:59:10.781951" + }, + { + "post_title": "Tetrosyl Group Limited", + "group_name": "8base", + "discovered": "2024-02-07 00:59:11.905895" + }, + { + "post_title": "Therme Laa Hotel and Silent Spa", + "group_name": "8base", + "discovered": "2024-02-07 00:59:12.798306" + }, + { + "post_title": "Worthen Industries", + "group_name": "8base", + "discovered": "2024-02-07 00:59:13.751416" + }, + { + "post_title": "YRW Limited - Chartered Accountants", + "group_name": "8base", + "discovered": "2024-02-07 00:59:14.469062" + }, + { + "post_title": "transaxle.com", + "group_name": "abyss", + "discovered": "2024-02-07 10:49:36.482639" + }, + { + "post_title": "TeraGo", + "group_name": "akira", + "discovered": "2024-02-07 16:52:09.733665" + }, + { + "post_title": "http://swbindinglaminating.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 16:52:15.202341" + }, + { + "post_title": "http://www.wmc-i.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 18:45:55.094484" + }, + { + "post_title": "Distecna", + "group_name": "akira", + "discovered": "2024-02-08 15:40:01.248369" + }, + { + "post_title": "originalfootwear.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:25.055289" + }, + { + "post_title": "perkinsmfg.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:26.087011" + }, + { + "post_title": "Jewish Home Lifecare", + "group_name": "alphv", + "discovered": "2024-02-08 19:40:20.633823" + }, + { + "post_title": "Ducont", + "group_name": "hunters", + "discovered": "2024-02-08 19:40:43.850366" + }, + { + "post_title": "water.cc", + "group_name": "lockbit3", + "discovered": "2024-02-08 20:49:28.747846" + }, + { + "post_title": "galbusera.it", + "group_name": "lockbit3", + "discovered": "2024-02-09 07:37:26.567740" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 08:35:46.155063" + }, + { + "post_title": "macqueeneq.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 09:36:25.115411" + }, + { + "post_title": "posen.com", + "group_name": "abyss", + "discovered": "2024-02-09 10:34:37.624311" + }, + { + "post_title": "bsaarchitects.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:36.111619" + }, + { + "post_title": "moneyadvicetrust.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:41.685062" + }, + { + "post_title": "seymourct.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:44.504843" + }, + { + "post_title": "northseayachtsupport.nl", + "group_name": "lockbit3", + "discovered": "2024-02-09 12:40:22.882357" + }, + { + "post_title": "Willis Lease Finance Corporation", + "group_name": "blackbasta", + "discovered": "2024-02-09 13:36:10.042532" + }, + { + "post_title": "grupomoraval.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:15.633802" + }, + { + "post_title": "verdimed.es", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:20.899398" + }, + { + "post_title": "cdtmedicus.pl", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:06.661566" + }, + { + "post_title": "indoramaventures.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:09.871485" + }, + { + "post_title": "maximumresearch.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:11.661612" + }, + { + "post_title": "soken-ce.co.jp", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:14.868476" + }, + { + "post_title": "oogp.com\\$11.4M\\USA\\63GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:27.058618" + }, + { + "post_title": "jaygroup.com\\$62.2M\\USA\\270GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:28.093013" + }, + { + "post_title": "alfiras.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 15:40:46.865821" + }, + { + "post_title": "Drost Kivlahan McMahon and O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:50.499230" + }, + { + "post_title": "Capozzi Adler, P.C.", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:51.322465" + }, + { + "post_title": "Grace Lutheran Foundation", + "group_name": "alphv", + "discovered": "2024-02-09 18:47:06.163834" + }, + { + "post_title": "magi-erp.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 18:47:13.548646" + }, + { + "post_title": "TechNet Kronoberg AB", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:17.808226" + }, + { + "post_title": "J.P. Original", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:18.955260" + }, + { + "post_title": "CTSI", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:20.567002" + }, + { + "post_title": "zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:32.512846" + }, + { + "post_title": "www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:34.159303" + }, + { + "post_title": "Pacific American Fish Company Inc.", + "group_name": "incransom", + "discovered": "2024-02-10 01:55:49.848134" + }, + { + "post_title": "maddockhenson", + "group_name": "alphv", + "discovered": "2024-02-10 10:34:19.213101" + }, + { + "post_title": "aisg-online.com", + "group_name": "lockbit3", + "discovered": "2024-02-10 10:34:23.298925" + }, + { + "post_title": "mranet.org", + "group_name": "abyss", + "discovered": "2024-02-10 16:41:13.538950" + }, + { + "post_title": "Avianor Aircraft", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:27.913947" + }, + { + "post_title": "Carespring Health Care", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:28.759434" + }, + { + "post_title": "Dalmahoy Hotel & Country Club", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:29.746689" + }, + { + "post_title": "Groupe Goyette", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:30.673343" + }, + { + "post_title": "Impact Energy Services", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:31.371374" + }, + { + "post_title": "SOPEM Tunisie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:32.446577" + }, + { + "post_title": "Benchmark Management Group", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:33.306278" + }, + { + "post_title": "Nastech", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.013669" + }, + { + "post_title": "Lancaster County Sheriff's Office", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.887872" + }, + { + "post_title": "Village of Skokie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:35.682279" + }, + { + "post_title": "www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-10 21:38:20.749206" + }, + { + "post_title": "lacolline-skincare.com", + "group_name": "lockbit3", + "discovered": "2024-02-11 08:36:18.710538" + }, + { + "post_title": "O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-11 11:34:48.375266" + }, + { + "post_title": "Amoskeag Network Consulting Group LLC", + "group_name": "medusa", + "discovered": "2024-02-11 14:39:43.549531" + }, + { + "post_title": "LILI'S BROWNIES", + "group_name": "8base", + "discovered": "2024-02-11 22:38:00.413343" + }, + { + "post_title": "Kadac Australia", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:46.600770" + }, + { + "post_title": "The Gainsborough Bath", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:47.599915" + }, + { + "post_title": "grotonschools.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:38.430567" + }, + { + "post_title": "jacksonvillebeach.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:40.096648" + }, + { + "post_title": "parkhomeassist.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:42.560867" + }, + { + "post_title": "robs.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:44.208009" + }, + { + "post_title": "camarotto.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:21.271199" + }, + { + "post_title": "dienerprecisionpumps.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:23.096860" + }, + { + "post_title": "envie.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:24.832649" + }, + { + "post_title": "isspol.gov", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:27.834646" + }, + { + "post_title": "lyon.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:30.004922" + }, + { + "post_title": "paltertonprimary.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:32.344287" + }, + { + "post_title": "sealco-leb.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:34.524463" + }, + { + "post_title": "vhprimary.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:36.578557" + }, + { + "post_title": "Freedom Munitions", + "group_name": "meow", + "discovered": "2024-02-12 08:45:50.843898" + }, + { + "post_title": "Allmetal Inc.", + "group_name": "meow", + "discovered": "2024-02-12 08:45:51.765754" + }, + { + "post_title": "Disaronno International", + "group_name": "meow", + "discovered": "2024-02-12 08:45:52.537065" + }, + { + "post_title": "cabc.com.ar", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:35.423717" + }, + { + "post_title": "fidcornelis.be", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:38.139743" + }, + { + "post_title": "plexustelerad.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:43.843546" + }, + { + "post_title": "silverairways.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:45.654644" + }, + { + "post_title": "textiles.org.tw", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:47.265094" + }, + { + "post_title": "Arlington Perinatal Associates", + "group_name": "meow", + "discovered": "2024-02-12 09:47:01.118351" + }, + { + "post_title": "Kreyenhop & Kluge", + "group_name": "hunters", + "discovered": "2024-02-12 10:49:57.810990" + }, + { + "post_title": "germaintoiture.fr", + "group_name": "lockbit3", + "discovered": "2024-02-12 12:55:10.101723" + }, + { + "post_title": "Lower Valley Energy, Inc.", + "group_name": "alphv", + "discovered": "2024-02-12 14:47:21.566215" + }, + { + "post_title": "Modern Kitchens ", + "group_name": "medusa", + "discovered": "2024-02-12 14:47:34.927293" + }, + { + "post_title": "SERCIDE", + "group_name": "alphv", + "discovered": "2024-02-12 16:43:39.136111" + }, + { + "post_title": "Rush Energy Services Inc [You have 48 hours]", + "group_name": "alphv", + "discovered": "2024-02-12 19:42:33.506797" + }, + { + "post_title": "tecasrl.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 21:40:36.296749" + }, + { + "post_title": "http://antunovich.com", + "group_name": "blacksuit", + "discovered": "2024-02-12 21:40:46.640868" + }, + { + "post_title": "garonproducts.com", + "group_name": "threeam", + "discovered": "2024-02-12 21:40:49.180786" + }, + { + "post_title": "elandenergy.com Eland Energy", + "group_name": "alphalocker", + "discovered": "2024-02-13 00:51:09.079290" + }, + { + "post_title": "YKP LTDA", + "group_name": "ransomhub", + "discovered": "2024-02-13 00:51:09.772057" + }, + { + "post_title": "Sanok Rubber Company Spólka Akcyjna", + "group_name": "akira", + "discovered": "2024-02-13 08:39:06.866914" + }, + { + "post_title": "Satse", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:14.308790" + }, + { + "post_title": "SOPEM", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:16.493197" + }, + { + "post_title": "auruminstitute.org", + "group_name": "lockbit3", + "discovered": "2024-02-13 10:40:08.635703" + }, + { + "post_title": "New Indy Containerboard", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:28.350810" + }, + { + "post_title": "Procopio", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:29.651377" + }, + { + "post_title": "Herrs", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:30.400395" + }, + { + "post_title": "Trans-Northern Pipelines", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:51.528400" + }, + { + "post_title": "ArcisGolf", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:52.306797" + }, + { + "post_title": "The Source", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:53.288531" + }, + { + "post_title": "doprastav.sk", + "group_name": "lockbit3", + "discovered": "2024-02-13 14:38:37.830416" + }, + { + "post_title": "universalservicesms.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 17:41:07.370625" + }, + { + "post_title": "Communication Federal Credit Union", + "group_name": "hunters", + "discovered": "2024-02-13 17:41:18.865732" + }, + { + "post_title": "rajawali.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 21:42:19.767565" + }, + { + "post_title": "motilaloswal.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 22:44:05.923814" + }, + { + "post_title": "Leonard’s Syrups", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:52.777834" + }, + { + "post_title": "Sanford, Pierson, Thone & Strean", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.004272" + }, + { + "post_title": "Global Rescue", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.768500" + }, + { + "post_title": "BTL", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:55.598485" + }, + { + "post_title": "Patrizia Pepe", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:57.379617" + }, + { + "post_title": "Constantia FFP", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:58.297588" + }, + { + "post_title": "Barber Emerson", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:59.128996" + }, + { + "post_title": "adioscancer.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 00:56:26.442986" + }, + { + "post_title": "mmiculinary.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 03:39:51.848519" + }, + { + "post_title": "giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:58.056462" + }, + { + "post_title": "www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:59.128461" + }, + { + "post_title": "ATB SA Ingénieurs-conseils SIA", + "group_name": "8base", + "discovered": "2024-02-14 04:43:32.630789" + }, + { + "post_title": "Institutional Casework, Inc", + "group_name": "8base", + "discovered": "2024-02-14 04:43:34.372784" + }, + { + "post_title": "UNIFER", + "group_name": "8base", + "discovered": "2024-02-14 04:43:35.982680" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3", + "discovered": "2024-02-14 05:43:26.917205" + }, + { + "post_title": "wsnelson.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 06:42:34.382976" + }, + { + "post_title": "Sindicato de Enfermería (SATSE)", + "group_name": "hunters", + "discovered": "2024-02-14 07:46:41.790025" + }, + { + "post_title": "kabat.pl", + "group_name": "lockbit3", + "discovered": "2024-02-14 08:44:13.452908" + }, + { + "post_title": "vanwingerden.com", + "group_name": "abyss", + "discovered": "2024-02-14 09:44:38.114838" + }, + { + "post_title": "https://www.falco.com/, http://www.falcoprc.com/, http://support.falcomex.com/, http://www", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:22.527828" + }, + { + "post_title": "https://www.americamovil.com/", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:23.593041" + }, + { + "post_title": "Nekoosa School Distr ict", + "group_name": "akira", + "discovered": "2024-02-14 16:45:37.199360" + }, + { + "post_title": "studiogalbusera.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 17:43:31.656734" + }, + { + "post_title": "ASA Electronics [2.7 TB]", + "group_name": "alphv", + "discovered": "2024-02-15 07:48:15.369146" + }, + { + "post_title": "centralepaysanne.lu", + "group_name": "lockbit3", + "discovered": "2024-02-15 09:54:59.223073" + }, + { + "post_title": "champion.com.co", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:30.170814" + }, + { + "post_title": "coreengg.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:31.701567" + }, + { + "post_title": "hatsinteriors.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:35.174126" + }, + { + "post_title": "sitrack.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:38.996052" + }, + { + "post_title": "pradiergranulats.fr", + "group_name": "lockbit3", + "discovered": "2024-02-15 11:55:00.671579" + }, + { + "post_title": "ASP Basilicata", + "group_name": "rhysida", + "discovered": "2024-02-15 12:52:32.053764" + }, + { + "post_title": "Rush Energy Services Inc [Time's up]", + "group_name": "alphv", + "discovered": "2024-02-15 13:49:08.332355" + }, + { + "post_title": "conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:21.975121" + }, + { + "post_title": "kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:23.021004" + }, + { + "post_title": "Advantage Orthopedic and Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-15 15:55:36.909256" + }, + { + "post_title": "Asam", + "group_name": "akira", + "discovered": "2024-02-15 16:49:40.104205" + }, + { + "post_title": "Schuster Trucking Company", + "group_name": "hunters", + "discovered": "2024-02-15 17:45:33.743960" + }, + { + "post_title": "DuBose Strapping", + "group_name": "play", + "discovered": "2024-02-15 18:53:40.834575" + }, + { + "post_title": "HR Ewell & Hy-tec", + "group_name": "play", + "discovered": "2024-02-15 18:53:41.737274" + }, + { + "post_title": "LD Davis", + "group_name": "play", + "discovered": "2024-02-15 18:53:42.667998" + }, + { + "post_title": "Mechanical Reps", + "group_name": "play", + "discovered": "2024-02-15 18:53:43.504379" + }, + { + "post_title": "MeerServices", + "group_name": "play", + "discovered": "2024-02-15 18:53:44.526693" + }, + { + "post_title": "Norman, Fox", + "group_name": "play", + "discovered": "2024-02-15 18:53:45.773002" + }, + { + "post_title": "Onclusive", + "group_name": "play", + "discovered": "2024-02-15 18:53:46.829288" + }, + { + "post_title": "SilverLining", + "group_name": "play", + "discovered": "2024-02-15 18:53:47.541160" + }, + { + "post_title": "von Hagen", + "group_name": "play", + "discovered": "2024-02-15 18:53:48.380182" + }, + { + "post_title": "Pierce", + "group_name": "bianlian", + "discovered": "2024-02-15 22:53:21.477551" + }, + { + "post_title": "St. Johns River Water Management District", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:12.699922" + }, + { + "post_title": "Griffin Dewatering", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:14.202272" + }, + { + "post_title": "theclosingagent.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 07:54:13.717089" + }, + { + "post_title": "Ribe-Groupe", + "group_name": "hunters", + "discovered": "2024-02-16 07:54:25.219441" + }, + { + "post_title": "Concello de Teo", + "group_name": "hunters", + "discovered": "2024-02-16 08:47:09.568174" + }, + { + "post_title": "spaldingssd.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:47.837668" + }, + { + "post_title": "tormetal.cl", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:49.165562" + }, + { + "post_title": "Pacifica", + "group_name": "blackbasta", + "discovered": "2024-02-16 12:38:54.213140" + }, + { + "post_title": "etisalat.ae", + "group_name": "lockbit3", + "discovered": "2024-02-16 14:51:57.409899" + }, + { + "post_title": "BRAM Auto Group", + "group_name": "akira", + "discovered": "2024-02-16 16:52:29.412035" + }, + { + "post_title": "Réseau Ribé", + "group_name": "hunters", + "discovered": "2024-02-16 17:54:33.848203" + }, + { + "post_title": "The Chas. E. Phipps", + "group_name": "medusa", + "discovered": "2024-02-16 22:52:42.856478" + }, + { + "post_title": "LoanDepot", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:46.818516" + }, + { + "post_title": "Prudential Financial", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:47.887716" + }, + { + "post_title": "CP Communications", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:03.845908" + }, + { + "post_title": "PSI", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:04.837682" + }, + { + "post_title": "Wapiti Energy", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:55.451029" + }, + { + "post_title": "BS&B Safety Systems L.L.C", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:56.663577" + }, + { + "post_title": "Chicago Zoological Society", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:57.526649" + }, + { + "post_title": "Aftrp", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:03.619959" + }, + { + "post_title": "Voice Technologies", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:04.573653" + }, + { + "post_title": "Tiete Automobile", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:06.193735" + }, + { + "post_title": "Greater Napanee", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:07.422713" + }, + { + "post_title": "ACS", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:08.409699" + }, + { + "post_title": "VSP Dental", + "group_name": "alphv", + "discovered": "2024-02-18 01:05:28.627117" + }, + { + "post_title": "bucher-strauss.ch", + "group_name": "lockbit3", + "discovered": "2024-02-18 14:44:27.030435" + }, + { + "post_title": "Bimbo Bakeries", + "group_name": "medusa", + "discovered": "2024-02-18 18:41:44.245288" + }, + { + "post_title": "carlfischer.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 21:35:08.534439" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 22:54:55.183234" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:48.182932" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:55.839595" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:56.811163" + }, + { + "post_title": "First Professional Services", + "group_name": "bianlian", + "discovered": "2024-02-19 10:50:35.559705" + }, + { + "post_title": "se.com\\$$33.5B\\France\\1.5TB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 12:44:15.724534" + }, + { + "post_title": "BandB Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:02.080364" + }, + { + "post_title": "Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:03.015026" + }, + { + "post_title": "soco.be", + "group_name": "lockbit3", + "discovered": "2024-02-19 19:48:28.225069" + }, + { + "post_title": "http://www.loransrl.net", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:27.821509" + }, + { + "post_title": "http://conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:28.830243" + }, + { + "post_title": "http://kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:30.240075" + }, + { + "post_title": "http://giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:31.302498" + }, + { + "post_title": "http://zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.115956" + }, + { + "post_title": "http://www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.947379" + }, + { + "post_title": "http://www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:33.883185" + }, + { + "post_title": "http://www.mordfin.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:34.816481" + }, + { + "post_title": "http:// neafidi.it", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:36.190623" + }, + { + "post_title": "http://www.projects-world.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.063801" + }, + { + "post_title": "http://www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.946740" + }, + { + "post_title": "http://www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:38.843441" + }, + { + "post_title": "http://www.halleonard.com.au", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:39.666402" + }, + { + "post_title": "http://https://www.molnar-bischof.de/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:40.439645" + }, + { + "post_title": "http://corinthcoke.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:41.448645" + }, + { + "post_title": "http://EPS.RS", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:42.241643" + }, + { + "post_title": "http://neurocnv.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:43.058652" + }, + { + "post_title": "http://www.warepet.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.067410" + }, + { + "post_title": "http://yanfeng.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.891706" + }, + { + "post_title": "http://haesungds.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:46.087979" } ] \ No newline at end of file diff --git a/src/threatProfileRansomwareProfiles.json b/src/threatProfileRansomwareProfiles.json index 4ba8a4f..cd0bc6c 100644 --- a/src/threatProfileRansomwareProfiles.json +++ b/src/threatProfileRansomwareProfiles.json @@ -156,8 +156,8 @@ "version": 3, "slug": "http://lorenzmlwpzgxq736jzseuterytjueszsvznuibanxomlpkyxk6ksoyd.onion/", "available": true, - "updated": "2024-01-31 11:05:53.276904", - "lastscrape": "2024-01-31 11:05:53.276890", + "updated": "2024-02-19 22:05:47.652751", + "lastscrape": "2024-02-19 22:05:47.652736", "enabled": true } ], @@ -533,8 +533,8 @@ "version": 3, "slug": "http://rgleaktxuey67yrgspmhvtnrqtgogur35lwdrup4d3igtbm3pupc4lyd.onion/", "available": true, - "updated": "2024-01-31 11:07:52.816753", - "lastscrape": "2024-01-31 11:07:52.816739", + "updated": "2024-02-19 22:07:10.422102", + "lastscrape": "2024-02-19 22:07:10.422087", "enabled": true }, { @@ -553,8 +553,8 @@ "version": 3, "slug": "http://ragnarnwvli32xnmwudsvhbl7klzmofxeylyhcqfc5ifx5mbybq3ekqd.onion", "available": true, - "updated": "2024-01-31 11:08:02.902942", - "lastscrape": "2024-01-31 11:08:02.902929", + "updated": "2024-02-19 22:07:14.019387", + "lastscrape": "2024-02-19 22:07:14.019372", "enabled": true } ], @@ -585,9 +585,9 @@ "title": "Access Queue", "version": 3, "slug": "http://santat7kpllt6iyvqbr7q4amdv6dzrh6paatvyrzl7ry3zm72zigf4ad.onion/", - "available": false, - "updated": "2024-01-31 09:08:18.372517", - "lastscrape": "2024-01-31 09:08:18.372501", + "available": true, + "updated": "2024-02-19 22:07:17.013834", + "lastscrape": "2024-02-19 22:07:17.013822", "enabled": true }, { @@ -595,9 +595,9 @@ "title": "TORRENT | CL0P^_- LEAKS", "version": 3, "slug": "http://toznnag5o3ambca56s2yacteu7q7x2avrfherzmz4nmujrjuib4iusad.onion", - "available": false, - "updated": "2024-01-17 15:09:01.363040", - "lastscrape": "2024-01-17 15:09:01.363029", + "available": true, + "updated": "2024-02-19 22:07:22.173763", + "lastscrape": "2024-02-19 22:07:22.173751", "enabled": true } ], @@ -710,8 +710,8 @@ "version": 3, "slug": "http://ransomocmou6mnbquqz44ewosbkjk3o5qjsl3orawojexfook2j7esad.onion/", "available": true, - "updated": "2024-01-31 11:08:35.107587", - "lastscrape": "2024-01-31 11:08:35.107576", + "updated": "2024-02-19 22:07:26.697059", + "lastscrape": "2024-02-19 22:07:26.697045", "enabled": true } ], @@ -901,9 +901,9 @@ "title": "Babuk - Leaks site", "version": 3, "slug": "http://nq4zyac4ukl4tykmidbzgdlvaboqeqsemkp4t35bzvjeve6zm2lqcjid.onion/", - "available": true, - "updated": "2024-01-31 11:08:41.027281", - "lastscrape": "2024-01-31 11:08:41.027270", + "available": false, + "updated": "2024-02-19 16:10:47.300190", + "lastscrape": "2024-02-19 16:10:47.300175", "enabled": true } ], @@ -926,8 +926,8 @@ "version": 3, "slug": "http://rnsm777cdsjrsdlbs4v5qoeppu3px6sb2igmh53jzrx7ipcrbjz5b2ad.onion/", "available": true, - "updated": "2024-01-31 11:08:50.199136", - "lastscrape": "2024-01-31 11:08:50.199121", + "updated": "2024-02-19 22:07:36.094451", + "lastscrape": "2024-02-19 22:07:36.094436", "enabled": true } ], @@ -960,8 +960,8 @@ "version": 3, "slug": "http://cuba4ikm4jakjgmkezytyawtdgr2xymvy6nvzgw5cglswg3si76icnqd.onion", "available": false, - "updated": "2024-01-30 05:09:11.870319", - "lastscrape": "2024-01-30 05:09:11.870307", + "updated": "2024-02-07 21:08:47.563286", + "lastscrape": "2024-02-07 21:08:47.563272", "enabled": true } ], @@ -1101,22 +1101,22 @@ }, { "fqdn": "aby6efzmp7jzbwgidgqc6ghxi2vwpo6d7eaood5xuoxutrfofsmzcjqd.onion", - "title": "Anonymous marketplace – Anonymous Marketplace + Se", + "title": "Anonymous marketplace | Anonymous Marketplace + Se", "version": 3, "slug": "http://aby6efzmp7jzbwgidgqc6ghxi2vwpo6d7eaood5xuoxutrfofsmzcjqd.onion", - "available": false, - "updated": "2024-01-31 04:11:32.968448", - "lastscrape": "2024-01-31 04:11:32.968436", + "available": true, + "updated": "2024-02-19 22:07:59.074634", + "lastscrape": "2024-02-19 22:07:59.074618", "enabled": true }, { "fqdn": "darklmmmfuonklpy6s3tmvk5mrcdi7iapaw6eka45esmoryiiuug6aid.onion", - "title": "Dark Leak Market", + "title": "Anonymous marketplace | Anonymous Marketplace + Se", "version": 3, "slug": "http://darklmmmfuonklpy6s3tmvk5mrcdi7iapaw6eka45esmoryiiuug6aid.onion", - "available": true, - "updated": "2024-01-31 11:09:49.222423", - "lastscrape": "2024-01-31 11:09:49.222411", + "available": false, + "updated": "2024-02-17 14:10:09.030494", + "lastscrape": "2024-02-17 14:10:09.030481", "enabled": true }, { @@ -1421,8 +1421,8 @@ "version": 3, "slug": "http://mmcbkgua72og66w4jz3qcxkkhefax754pg6iknmtfujvkt2j65ffraad.onion", "available": true, - "updated": "2024-01-31 11:10:08.931281", - "lastscrape": "2024-01-31 11:10:08.931266", + "updated": "2024-02-19 22:08:14.309947", + "lastscrape": "2024-02-19 22:08:14.309935", "enabled": true } ], @@ -1953,8 +1953,8 @@ "version": 3, "slug": "http://rampjcdlqvgkoz5oywutpo6ggl7g6tvddysustfl6qzhr5osr24xxqqd.onion", "available": true, - "updated": "2024-01-31 11:10:32.090259", - "lastscrape": "2024-01-31 11:10:32.090247", + "updated": "2024-02-19 22:08:24.195333", + "lastscrape": "2024-02-19 22:08:24.195320", "enabled": true }, { @@ -2058,9 +2058,9 @@ "title": null, "version": 3, "slug": "http://medusaxko7jxtrojdkxo66j7ck4q5tgktf7uqsqyfry4ebnxlcbkccyd.onion/api/search?company=&page=0", - "available": false, - "updated": "2024-01-31 10:11:08.782274", - "lastscrape": "2024-01-31 10:11:08.782260", + "available": true, + "updated": "2024-02-19 22:08:36.673013", + "lastscrape": "2024-02-19 22:08:36.673000", "enabled": true } ], @@ -2099,8 +2099,8 @@ "version": 0, "slug": "http://dwhyj2.top", "available": true, - "updated": "2024-01-31 11:11:43.506050", - "lastscrape": "2024-01-31 11:11:43.506037", + "updated": "2024-02-19 22:09:03.824675", + "lastscrape": "2024-02-19 22:09:03.824662", "enabled": true }, { @@ -2119,8 +2119,8 @@ "version": 0, "slug": "http://sn76920193ch.top", "available": true, - "updated": "2024-01-31 11:12:04.072939", - "lastscrape": "2024-01-31 11:12:04.072927", + "updated": "2024-02-19 22:09:23.813294", + "lastscrape": "2024-02-19 22:09:23.813280", "enabled": true }, { @@ -2129,8 +2129,8 @@ "version": 0, "slug": "https://snatchnews.top", "available": true, - "updated": "2024-01-31 11:12:19.031084", - "lastscrape": "2024-01-31 11:12:19.031071", + "updated": "2024-02-19 22:09:38.847488", + "lastscrape": "2024-02-19 22:09:38.847473", "enabled": true }, { @@ -2139,8 +2139,8 @@ "version": 0, "slug": "http://sntech2ch.top", "available": false, - "updated": "2023-12-20 14:12:40.073978", - "lastscrape": "2023-12-20 14:12:40.073966", + "updated": "2024-02-12 19:11:59.477798", + "lastscrape": "2024-02-12 19:11:59.477785", "enabled": true }, { @@ -2149,8 +2149,8 @@ "version": 0, "slug": "https://snatchteam.cc", "available": true, - "updated": "2024-01-31 11:12:49.672210", - "lastscrape": "2024-01-31 11:12:49.672196", + "updated": "2024-02-19 22:10:09.363359", + "lastscrape": "2024-02-19 22:10:09.363343", "enabled": true } ], @@ -2248,8 +2248,8 @@ "version": 0, "slug": "https://moses-staff.se/activities/", "available": true, - "updated": "2024-01-31 11:13:07.447193", - "lastscrape": "2024-01-31 11:13:07.447181", + "updated": "2024-02-19 22:10:26.168235", + "lastscrape": "2024-02-19 22:10:26.168224", "enabled": true } ], @@ -2419,8 +2419,8 @@ "version": 3, "slug": "http://alphvmmm27o3abo3r2mlmjrpdmzle3rykajqc5xsj7j7ejksbpsa36ad.onion/api/blog/all/0/6", "available": true, - "updated": "2024-01-31 11:13:25.391607", - "lastscrape": "2024-01-31 11:13:25.391594", + "updated": "2024-02-19 22:10:28.819062", + "lastscrape": "2024-02-19 22:10:28.819048", "enabled": true }, { @@ -2438,9 +2438,9 @@ "title": "404 Not Found", "version": 3, "slug": "http://vqifktlreqpudvulhbzmc5gocbeawl67uvs2pttswemdorbnhaddohyd.onion/search", - "available": false, - "updated": "2024-01-31 09:13:26.040179", - "lastscrape": "2024-01-31 09:13:26.040156", + "available": true, + "updated": "2024-02-19 22:10:34.053438", + "lastscrape": "2024-02-19 22:10:34.053423", "enabled": true }, { @@ -2449,8 +2449,8 @@ "version": 3, "slug": "http://alphvuzxyxv6ylumd2ngp46xzq3pw6zflomrghvxeuks6kklberrbmyd.onion/api/blog/brief/0/100", "available": true, - "updated": "2024-01-31 11:13:51.345242", - "lastscrape": "2024-01-31 11:13:51.345227", + "updated": "2024-02-19 22:10:37.166790", + "lastscrape": "2024-02-19 22:10:37.166776", "enabled": true } ], @@ -2474,8 +2474,8 @@ "version": 3, "slug": "http://7k4yyskpz3rxq5nyokf6ztbpywzbjtdfanweup3skctcxopmt7tq7eid.onion/databases.html", "available": false, - "updated": "2024-01-27 13:11:48.788792", - "lastscrape": "2024-01-27 13:11:48.788781", + "updated": "2024-02-18 12:11:35.162023", + "lastscrape": "2024-02-18 12:11:35.162008", "enabled": true } ], @@ -2802,8 +2802,8 @@ "version": 3, "slug": "http://ranionv3j2o7wrn3um6de33eccbchhg32mkgnnoi72enkpp7jc25h3ad.onion", "available": true, - "updated": "2024-01-31 11:14:41.769285", - "lastscrape": "2024-01-31 11:14:41.769274", + "updated": "2024-02-19 22:11:13.339417", + "lastscrape": "2024-02-19 22:11:13.339406", "enabled": true } ], @@ -2863,9 +2863,9 @@ "title": "Black Basta Blog", "version": 3, "slug": "http://stniiomyjliimcgkvdszvgen3eaaoz55hreqqx6o77yvmpwt7gklffqd.onion/", - "available": false, - "updated": "2024-01-31 10:14:59.712733", - "lastscrape": "2024-01-31 10:14:59.712721", + "available": true, + "updated": "2024-02-19 22:11:37.141584", + "lastscrape": "2024-02-19 22:11:37.141574", "enabled": true }, { @@ -2884,8 +2884,8 @@ "version": 3, "slug": "https://bastad5huzwkepdixedg2gekg7jk22ato24zyllp6lnjx7wdtyctgvyd.onion/", "available": true, - "updated": "2024-01-31 11:15:54.982642", - "lastscrape": "2024-01-31 11:15:54.982628", + "updated": "2024-02-19 22:12:13.549050", + "lastscrape": "2024-02-19 22:12:13.549037", "enabled": true } ], @@ -2956,8 +2956,8 @@ "version": 3, "slug": "http://zohlm7ahjwegcedoz7lrdrti7bvpofymcayotp744qhx6gjmxbuo2yid.onion/a", "available": true, - "updated": "2024-01-31 11:16:00.909047", - "lastscrape": "2024-01-31 11:16:00.909030", + "updated": "2024-02-19 22:12:16.631804", + "lastscrape": "2024-02-19 22:12:16.631789", "enabled": true } ], @@ -3024,72 +3024,72 @@ "locations": [ { "fqdn": "lockbitapt2d73krlbewgv27tquljgxr33xbwwsp6rkyieto7u4ncead.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt2d73krlbewgv27tquljgxr33xbwwsp6rkyieto7u4ncead.onion", "available": true, - "updated": "2024-01-31 11:16:30.584702", - "lastscrape": "2024-01-31 11:16:30.584688", + "updated": "2024-02-19 22:12:40.814245", + "lastscrape": "2024-02-19 22:12:40.814231", "enabled": true }, { "fqdn": "lockbitapt2yfbt7lchxejug47kmqvqqxvvjpqkmevv4l3azl3gy6pyd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt2yfbt7lchxejug47kmqvqqxvvjpqkmevv4l3azl3gy6pyd.onion", "available": true, - "updated": "2024-01-31 11:16:59.291500", - "lastscrape": "2024-01-31 11:16:59.291485", + "updated": "2024-02-19 22:13:06.927631", + "lastscrape": "2024-02-19 22:13:06.927614", "enabled": true }, { "fqdn": "lockbitapt34kvrip6xojylohhxrwsvpzdffgs5z4pbbsywnzsbdguqd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt34kvrip6xojylohhxrwsvpzdffgs5z4pbbsywnzsbdguqd.onion", "available": true, - "updated": "2024-01-31 11:17:37.141146", - "lastscrape": "2024-01-31 11:17:37.141135", + "updated": "2024-02-19 22:13:34.242039", + "lastscrape": "2024-02-19 22:13:34.242025", "enabled": true }, { "fqdn": "lockbitapt5x4zkjbcqmz6frdhecqqgadevyiwqxukksspnlidyvd7qd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt5x4zkjbcqmz6frdhecqqgadevyiwqxukksspnlidyvd7qd.onion", - "available": false, - "updated": "2024-01-31 08:19:13.334746", - "lastscrape": "2024-01-31 08:19:13.334728", + "available": true, + "updated": "2024-02-19 22:13:59.730159", + "lastscrape": "2024-02-19 22:13:59.730145", "enabled": true }, { "fqdn": "lockbitapt6vx57t3eeqjofwgcglmutr3a35nygvokja5uuccip4ykyd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt6vx57t3eeqjofwgcglmutr3a35nygvokja5uuccip4ykyd.onion", "available": true, - "updated": "2024-01-31 11:18:29.631261", - "lastscrape": "2024-01-31 11:18:29.631248", + "updated": "2024-02-19 22:14:25.701047", + "lastscrape": "2024-02-19 22:14:25.701034", "enabled": true }, { "fqdn": "lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", "available": true, - "updated": "2024-01-31 11:19:09.433685", - "lastscrape": "2024-01-31 11:19:09.433672", + "updated": "2024-02-19 22:14:51.144080", + "lastscrape": "2024-02-19 22:14:51.144068", "enabled": true }, { "fqdn": "lockbitaptawjl6udhpd323uehekiyatj6ftcxmkwe5sezs4fqgpjpid.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitaptawjl6udhpd323uehekiyatj6ftcxmkwe5sezs4fqgpjpid.onion", "available": true, - "updated": "2024-01-31 11:19:42.274622", - "lastscrape": "2024-01-31 11:19:42.274604", + "updated": "2024-02-19 22:15:16.374875", + "lastscrape": "2024-02-19 22:15:16.374864", "enabled": true }, { @@ -3098,28 +3098,28 @@ "version": 3, "slug": "http://lockbitaptbdiajqtplcrigzgdjprwugkkut63nbvy2d5r4w2agyekqd.onion", "available": true, - "updated": "2024-01-31 11:20:20.696504", - "lastscrape": "2024-01-31 11:20:20.696491", + "updated": "2024-02-19 22:15:41.007824", + "lastscrape": "2024-02-19 22:15:41.007809", "enabled": true }, { "fqdn": "lockbitaptc2iq4atewz2ise62q63wfktyrl4qtwuk5qax262kgtzjqd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitaptc2iq4atewz2ise62q63wfktyrl4qtwuk5qax262kgtzjqd.onion", "available": true, - "updated": "2024-01-31 11:20:50.758361", - "lastscrape": "2024-01-31 11:20:50.758350", + "updated": "2024-02-19 22:16:06.120550", + "lastscrape": "2024-02-19 22:16:06.120537", "enabled": true }, { "fqdn": "lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", - "title": "LockBit BLOG", + "title": null, "version": 3, "slug": "http://lockbitapt72iw55njgnqpymggskg5yp75ry7rirtdg4m7i42artsbqd.onion", "available": true, - "updated": "2024-01-31 11:21:24.284246", - "lastscrape": "2024-01-31 11:21:24.284236", + "updated": "2024-02-19 22:16:29.568527", + "lastscrape": "2024-02-19 22:16:29.568514", "enabled": true }, { @@ -3128,8 +3128,8 @@ "version": 3, "slug": "http://lockbitsupa7e3b4pkn4mgkgojrl5iqgx24clbzc4xm7i6jeetsia3qd.onion", "available": false, - "updated": "2024-01-31 06:21:26.428514", - "lastscrape": "2024-01-31 06:21:26.428501", + "updated": "2024-02-19 20:21:36.885840", + "lastscrape": "2024-02-19 20:21:36.885827", "enabled": true }, { @@ -3137,9 +3137,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupdwon76nzykzblcplixwts4n4zoecugz2bxabtapqvmzqqd.onion", - "available": true, - "updated": "2024-01-31 11:22:12.165343", - "lastscrape": "2024-01-31 11:22:12.165331", + "available": false, + "updated": "2024-02-19 20:21:58.060298", + "lastscrape": "2024-02-19 20:21:58.060287", "enabled": true }, { @@ -3148,8 +3148,8 @@ "version": 3, "slug": "http://lockbitsupn2h6be2cnqpvncyhj4rgmnwn44633hnzzmtxdvjoqlp7yd.onion", "available": false, - "updated": "2024-01-31 10:21:20.878273", - "lastscrape": "2024-01-31 10:21:20.878259", + "updated": "2024-02-19 20:22:24.313587", + "lastscrape": "2024-02-19 20:22:24.313573", "enabled": true }, { @@ -3157,9 +3157,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupo7vv5vcl3jxpsdviopwvasljqcstym6efhh6oze7c6xjad.onion", - "available": true, - "updated": "2024-01-31 11:23:04.168639", - "lastscrape": "2024-01-31 11:23:04.168625", + "available": false, + "updated": "2024-02-19 20:22:43.790067", + "lastscrape": "2024-02-19 20:22:43.790054", "enabled": true }, { @@ -3168,8 +3168,8 @@ "version": 3, "slug": "http://lockbitsupqfyacidr6upt6nhhyipujvaablubuevxj6xy3frthvr3yd.onion", "available": false, - "updated": "2024-01-31 10:22:10.222493", - "lastscrape": "2024-01-31 10:22:10.222479", + "updated": "2024-02-19 17:26:18.751047", + "lastscrape": "2024-02-19 17:26:18.751032", "enabled": true }, { @@ -3178,8 +3178,8 @@ "version": 3, "slug": "http://lockbitsupt7nr3fa6e7xyb73lk6bw6rcneqhoyblniiabj4uwvzapqd.onion", "available": false, - "updated": "2024-01-31 10:22:35.174910", - "lastscrape": "2024-01-31 10:22:35.174895", + "updated": "2024-02-19 20:23:29.309498", + "lastscrape": "2024-02-19 20:23:29.309485", "enabled": true }, { @@ -3187,9 +3187,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupuhswh4izvoucoxsbnotkmgq6durg7kficg6u33zfvq3oyd.onion/form", - "available": true, - "updated": "2024-01-31 11:24:12.651492", - "lastscrape": "2024-01-31 11:24:12.651478", + "available": false, + "updated": "2024-02-19 20:23:51.180800", + "lastscrape": "2024-02-19 20:23:51.180789", "enabled": true }, { @@ -3197,9 +3197,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupxcjntihbmat4rrh7ktowips2qzywh6zer5r3xafhviyhqd.onion/form", - "available": true, - "updated": "2024-01-31 11:24:40.141530", - "lastscrape": "2024-01-31 11:24:40.141517", + "available": false, + "updated": "2024-02-19 20:24:09.675574", + "lastscrape": "2024-02-19 20:24:09.675560", "enabled": true }, { @@ -3207,9 +3207,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsupq3g62dni2f36snrdb4n5qzqvovbtkt5xffw3draxk6gwqd.onion/form", - "available": true, - "updated": "2024-01-31 11:25:05.404918", - "lastscrape": "2024-01-31 11:25:05.404906", + "available": false, + "updated": "2024-02-19 20:24:29.949625", + "lastscrape": "2024-02-19 20:24:29.949612", "enabled": true }, { @@ -3218,8 +3218,8 @@ "version": 3, "slug": "http://lockbitfile2tcudkcqqt2ve6btssyvqwlizbpv5vz337lslmhff2uad.onion/", "available": true, - "updated": "2024-01-31 11:25:31.083389", - "lastscrape": "2024-01-31 11:25:31.083377", + "updated": "2024-02-19 22:20:11.262919", + "lastscrape": "2024-02-19 22:20:11.262906", "enabled": true }, { @@ -3228,8 +3228,8 @@ "version": 3, "slug": "http://lockbitnotexk2vnf2q2zwjefsl3hjsnk4u74vq4chxrqpjclfydk4ad.onion/", "available": true, - "updated": "2024-01-31 11:25:59.870775", - "lastscrape": "2024-01-31 11:25:59.870761", + "updated": "2024-02-19 22:20:31.417918", + "lastscrape": "2024-02-19 22:20:31.417905", "enabled": true }, { @@ -3237,9 +3237,9 @@ "title": "LockBit LOGIN", "version": 3, "slug": "http://lockbitsup4yezcd5enk5unncx3zcy7kw6wllyqmiyhvanjj352jayid.onion", - "available": true, - "updated": "2024-01-31 11:26:30.017065", - "lastscrape": "2024-01-31 11:26:30.017051", + "available": false, + "updated": "2024-02-19 20:25:55.258728", + "lastscrape": "2024-02-19 20:25:55.258713", "enabled": true } ], @@ -3368,8 +3368,8 @@ "version": 3, "slug": "https://omx5iqrdbsoitf3q4xexrqw5r5tfw7vp3vl3li3lfo7saabxazshnead.onion", "available": false, - "updated": "2024-01-31 04:28:38.053054", - "lastscrape": "2024-01-31 04:28:38.053039", + "updated": "2024-02-19 21:25:02.650839", + "lastscrape": "2024-02-19 21:25:02.650826", "enabled": true }, { @@ -3377,9 +3377,9 @@ "title": "Magazine", "version": 3, "slug": "https://3f7nxkjway3d223j27lyad7v5cgmyaifesycvmwq7i7cbs23lb6llryd.onion", - "available": false, - "updated": "2024-01-31 09:27:14.026550", - "lastscrape": "2024-01-31 09:27:14.026536", + "available": true, + "updated": "2024-02-19 22:21:52.737915", + "lastscrape": "2024-02-19 22:21:52.737903", "enabled": true }, { @@ -3430,8 +3430,8 @@ "version": 3, "slug": "http://bianlianlbc5an4kgnay3opdemgcryg2kpfcbgczopmm3dnbz3uaunad.onion/companies/", "available": true, - "updated": "2024-01-31 11:28:31.324681", - "lastscrape": "2024-01-31 11:28:31.324670", + "updated": "2024-02-19 22:22:13.026563", + "lastscrape": "2024-02-19 22:22:13.026553", "enabled": true } ], @@ -3453,8 +3453,8 @@ "version": 3, "slug": "http://omegalock5zxwbhswbisc42o2q2i54vdulyvtqqbudqousisjgc7j7yd.onion", "available": true, - "updated": "2024-01-31 11:28:45.258517", - "lastscrape": "2024-01-31 11:28:45.258504", + "updated": "2024-02-19 22:22:16.028887", + "lastscrape": "2024-02-19 22:22:16.028874", "enabled": true }, { @@ -3463,8 +3463,8 @@ "version": 0, "slug": "http://0mega.cc", "available": true, - "updated": "2024-01-31 11:28:52.550526", - "lastscrape": "2024-01-31 11:28:52.550512", + "updated": "2024-02-19 22:22:18.175958", + "lastscrape": "2024-02-19 22:22:18.175943", "enabled": true } ], @@ -3505,8 +3505,8 @@ "version": 3, "slug": "http://lockbit7z2jwcskxpbokpemdxmltipntwlkmidcll2qirbu7ykg46eyd.onion", "available": true, - "updated": "2024-01-31 11:29:03.946782", - "lastscrape": "2024-01-31 11:29:03.946772", + "updated": "2024-02-19 22:22:20.812441", + "lastscrape": "2024-02-19 22:22:20.812429", "enabled": true }, { @@ -3515,8 +3515,8 @@ "version": 3, "slug": "http://lockbit7z2mmiz3ryxafn5kapbvbbiywsxwovasfkgf5dqqp5kxlajad.onion", "available": true, - "updated": "2024-01-31 11:29:10.503172", - "lastscrape": "2024-01-31 11:29:10.503160", + "updated": "2024-02-19 22:22:23.385131", + "lastscrape": "2024-02-19 22:22:23.385118", "enabled": true }, { @@ -3525,8 +3525,8 @@ "version": 3, "slug": "http://lockbit7z2og4jlsmdy7dzty3g42eu3gh2sx2b6ywtvhrjtss7li4fyd.onion", "available": true, - "updated": "2024-01-31 11:29:20.177754", - "lastscrape": "2024-01-31 11:29:20.177743", + "updated": "2024-02-19 22:22:26.393958", + "lastscrape": "2024-02-19 22:22:26.393946", "enabled": true }, { @@ -3535,8 +3535,8 @@ "version": 3, "slug": "http://lockbit7z355oalq4hiy5p7de64l6rsqutwlvydqje56uvevcc57r6qd.onion", "available": true, - "updated": "2024-01-31 11:29:28.051388", - "lastscrape": "2024-01-31 11:29:28.051367", + "updated": "2024-02-19 22:22:29.870017", + "lastscrape": "2024-02-19 22:22:29.870005", "enabled": true }, { @@ -3545,8 +3545,8 @@ "version": 3, "slug": "http://lockbit7z36ynytxwjzuoao46ck7b3753gpedary3qvuizn3iczhe4id.onion", "available": true, - "updated": "2024-01-31 11:29:34.559237", - "lastscrape": "2024-01-31 11:29:34.559226", + "updated": "2024-02-19 22:22:34.417945", + "lastscrape": "2024-02-19 22:22:34.417933", "enabled": true }, { @@ -3555,8 +3555,8 @@ "version": 3, "slug": "http://lockbit7z37ntefjdbjextn6tmdkry4j546ejnru5cejeguitiopvhad.onion", "available": true, - "updated": "2024-01-31 11:29:42.761000", - "lastscrape": "2024-01-31 11:29:42.760989", + "updated": "2024-02-19 22:22:36.823674", + "lastscrape": "2024-02-19 22:22:36.823661", "enabled": true }, { @@ -3565,8 +3565,8 @@ "version": 3, "slug": "http://lockbit7z3azdoxdpqxzliszutufbc2fldagztdu47xyucp25p4xtqad.onion", "available": true, - "updated": "2024-01-31 11:29:51.856499", - "lastscrape": "2024-01-31 11:29:51.856488", + "updated": "2024-02-19 22:22:40.721277", + "lastscrape": "2024-02-19 22:22:40.721265", "enabled": true }, { @@ -3575,8 +3575,8 @@ "version": 3, "slug": "http://lockbit7z3ddvg5vuez2vznt73ljqgwx5tnuqaa2ye7lns742yiv2zyd.onion", "available": true, - "updated": "2024-01-31 11:30:05.771799", - "lastscrape": "2024-01-31 11:30:05.771788", + "updated": "2024-02-19 22:22:43.261791", + "lastscrape": "2024-02-19 22:22:43.261777", "enabled": true }, { @@ -3584,9 +3584,9 @@ "title": "LockBit - Leaked", "version": 3, "slug": "http://lockbit7z3hv7ev5knxbrhsvv2mmu2rddwqizdz4vwfvxt5izrq6zqqd.onion", - "available": false, - "updated": "2024-01-31 10:28:31.423422", - "lastscrape": "2024-01-31 10:28:31.423411", + "available": true, + "updated": "2024-02-19 22:22:46.393502", + "lastscrape": "2024-02-19 22:22:46.393489", "enabled": true }, { @@ -3595,8 +3595,8 @@ "version": 3, "slug": "http://lockbit7z3ujnkhxwahhjduh5me2updvzxewhhc5qvk2snxezoi5drad.onion", "available": true, - "updated": "2024-01-31 11:30:29.499618", - "lastscrape": "2024-01-31 11:30:29.499607", + "updated": "2024-02-19 22:22:49.231705", + "lastscrape": "2024-02-19 22:22:49.231693", "enabled": true }, { @@ -3605,8 +3605,8 @@ "version": 3, "slug": "http://lockbit7z4bsm63m3dagp5xglyacr4z4bwytkvkkwtn6enmuo5fi5iyd.onion", "available": true, - "updated": "2024-01-31 11:30:34.758680", - "lastscrape": "2024-01-31 11:30:34.758669", + "updated": "2024-02-19 22:22:51.633595", + "lastscrape": "2024-02-19 22:22:51.633582", "enabled": true }, { @@ -3615,8 +3615,8 @@ "version": 3, "slug": "http://lockbit7z4cgxvictidwfxpuiov4scdw34nxotmbdjyxpkvkg34mykyd.onion", "available": true, - "updated": "2024-01-31 11:30:49.903053", - "lastscrape": "2024-01-31 11:30:49.903042", + "updated": "2024-02-19 22:22:55.139949", + "lastscrape": "2024-02-19 22:22:55.139937", "enabled": true }, { @@ -3625,8 +3625,8 @@ "version": 3, "slug": "http://lockbit7z4k5zer5fbqi2vdq5sx2vuggatwyqvoodrkhubxftyrvncid.onion", "available": true, - "updated": "2024-01-31 11:30:58.293349", - "lastscrape": "2024-01-31 11:30:58.293338", + "updated": "2024-02-19 22:22:57.903677", + "lastscrape": "2024-02-19 22:22:57.903664", "enabled": true }, { @@ -3635,8 +3635,8 @@ "version": 3, "slug": "http://lockbit7z4ndl6thsct34yd47jrzdkpnfg3acfvpacuccb45pnars2ad.onion", "available": true, - "updated": "2024-01-31 11:31:03.510674", - "lastscrape": "2024-01-31 11:31:03.510663", + "updated": "2024-02-19 22:23:04.650399", + "lastscrape": "2024-02-19 22:23:04.650388", "enabled": true }, { @@ -3645,8 +3645,8 @@ "version": 3, "slug": "http://lockbit7z55tuwaflw2c7torcryobdvhkcgvivhflyndyvcrexafssad.onion", "available": true, - "updated": "2024-01-31 11:31:09.122797", - "lastscrape": "2024-01-31 11:31:09.122786", + "updated": "2024-02-19 22:23:07.666105", + "lastscrape": "2024-02-19 22:23:07.666093", "enabled": true }, { @@ -3655,8 +3655,8 @@ "version": 3, "slug": "http://lockbit7z57mkicfkuq44j6yrpu5finwvjllczkkp2uvdedsdonjztyd.onion", "available": true, - "updated": "2024-01-31 11:31:15.918515", - "lastscrape": "2024-01-31 11:31:15.918505", + "updated": "2024-02-19 22:23:13.745933", + "lastscrape": "2024-02-19 22:23:13.745921", "enabled": true }, { @@ -3665,8 +3665,8 @@ "version": 3, "slug": "http://lockbit7z5ehshj6gzpetw5kso3onts6ty7wrnneya5u4aj3vzkeoaqd.onion", "available": true, - "updated": "2024-01-31 11:31:22.612741", - "lastscrape": "2024-01-31 11:31:22.612731", + "updated": "2024-02-19 22:23:15.822015", + "lastscrape": "2024-02-19 22:23:15.822002", "enabled": true }, { @@ -3674,9 +3674,9 @@ "title": "LockBit - Leaked", "version": 3, "slug": "http://lockbit7z5hwf6ywfuzipoa42tjlmal3x5suuccngsamsgklww2xgyqd.onion", - "available": false, - "updated": "2024-01-31 10:29:55.293839", - "lastscrape": "2024-01-31 10:29:55.293828", + "available": true, + "updated": "2024-02-19 22:23:18.030377", + "lastscrape": "2024-02-19 22:23:18.030365", "enabled": true }, { @@ -3685,8 +3685,8 @@ "version": 3, "slug": "http://lockbit7z5ltrhzv46lsg447o3cx2637dloc3qt4ugd3gr2xdkkkeayd.onion", "available": true, - "updated": "2024-01-31 11:31:47.968364", - "lastscrape": "2024-01-31 11:31:47.968354", + "updated": "2024-02-19 22:23:20.921489", + "lastscrape": "2024-02-19 22:23:20.921477", "enabled": true }, { @@ -3695,8 +3695,8 @@ "version": 3, "slug": "http://lockbit7z6choojah4ipvdpzzfzxxchjbecnmtn4povk6ifdvx2dpnid.onion", "available": true, - "updated": "2024-01-31 11:31:56.517775", - "lastscrape": "2024-01-31 11:31:56.517765", + "updated": "2024-02-19 22:23:23.071827", + "lastscrape": "2024-02-19 22:23:23.071815", "enabled": true }, { @@ -3705,8 +3705,8 @@ "version": 3, "slug": "http://lockbit7z6dqziutocr43onmvpth32njp4abfocfauk2belljjpobxyd.onion", "available": true, - "updated": "2024-01-31 11:32:03.039368", - "lastscrape": "2024-01-31 11:32:03.039358", + "updated": "2024-02-19 22:23:26.529235", + "lastscrape": "2024-02-19 22:23:26.529223", "enabled": true }, { @@ -3715,8 +3715,8 @@ "version": 3, "slug": "http://lockbit7z6f3gu6rjvrysn5gjbsqj3hk3bvsg64ns6pjldqr2xhvhsyd.onion", "available": true, - "updated": "2024-01-31 11:32:18.922899", - "lastscrape": "2024-01-31 11:32:18.922889", + "updated": "2024-02-19 22:23:29.071128", + "lastscrape": "2024-02-19 22:23:29.071114", "enabled": true }, { @@ -3725,8 +3725,8 @@ "version": 3, "slug": "http://lockbit7z6qinyhhmibvycu5kwmcvgrbpvtztkvvmdce5zwtucaeyrqd.onion", "available": true, - "updated": "2024-01-31 11:32:23.641083", - "lastscrape": "2024-01-31 11:32:23.641072", + "updated": "2024-02-19 22:23:32.562391", + "lastscrape": "2024-02-19 22:23:32.562379", "enabled": true }, { @@ -3735,8 +3735,8 @@ "version": 3, "slug": "http://lockbit7z6rzyojiye437jp744d4uwtff7aq7df7gh2jvwqtv525c4yd.onion", "available": true, - "updated": "2024-01-31 11:32:29.798059", - "lastscrape": "2024-01-31 11:32:29.798049", + "updated": "2024-02-19 22:23:42.807664", + "lastscrape": "2024-02-19 22:23:42.807652", "enabled": true } ], @@ -3765,8 +3765,8 @@ "version": 3, "slug": "http://7ukmkdtyxdkdivtjad57klqnd3kdsmq6tp45rrsxqnu76zzv3jvitlqd.onion", "available": true, - "updated": "2024-01-31 11:32:54.301842", - "lastscrape": "2024-01-31 11:32:54.301829", + "updated": "2024-02-19 22:23:49.418939", + "lastscrape": "2024-02-19 22:23:49.418927", "enabled": true } ], @@ -3825,8 +3825,8 @@ "version": 3, "slug": "http://sbc2zv2qnz5vubwtx3aobfpkeao6l4igjegm3xx7tk5suqhjkp5jxtqd.onion", "available": true, - "updated": "2024-01-31 11:33:20.671264", - "lastscrape": "2024-01-31 11:33:20.671253", + "updated": "2024-02-19 22:24:08.648447", + "lastscrape": "2024-02-19 22:24:08.648434", "enabled": true }, { @@ -3844,9 +3844,9 @@ "title": "404 Not Found", "version": 3, "slug": "http://dk4mkfzqai6ure62oukzgtypedmwlfq57yj2fube7j5wsoi6tuia7nyd.onion/index.php", - "available": true, - "updated": "2024-01-31 11:33:47.480149", - "lastscrape": "2024-01-31 11:33:47.480137", + "available": false, + "updated": "2024-02-10 20:29:49.818637", + "lastscrape": "2024-02-10 20:29:49.818625", "enabled": true } ], @@ -3874,9 +3874,9 @@ "title": "Qilin blog", "version": 3, "slug": "http://kbsqoivihgdmwczmxkbovk7ss2dcynitwhhfu5yw725dboqo5kthfaad.onion", - "available": false, - "updated": "2024-01-31 05:32:39.346447", - "lastscrape": "2024-01-31 05:32:39.346437", + "available": true, + "updated": "2024-02-19 22:24:51.765264", + "lastscrape": "2024-02-19 22:24:51.765252", "enabled": true } ], @@ -3925,8 +3925,8 @@ "version": 3, "slug": "http://mblogci3rudehaagbryjznltdp33ojwzkq6hn2pckvjq33rycmzczpid.onion", "available": true, - "updated": "2024-01-31 11:34:15.616200", - "lastscrape": "2024-01-31 11:34:15.616186", + "updated": "2024-02-19 22:24:55.539393", + "lastscrape": "2024-02-19 22:24:55.539382", "enabled": true } ], @@ -4057,8 +4057,8 @@ "version": 3, "slug": "http://wtyafjyhwqrgo4a45wdvvwhen3cx4euie73qvlhkhvlrexljoyuklaad.onion", "available": true, - "updated": "2024-01-31 11:35:03.906451", - "lastscrape": "2024-01-31 11:35:03.906440", + "updated": "2024-02-19 22:25:36.333434", + "lastscrape": "2024-02-19 22:25:36.333422", "enabled": true } ], @@ -4096,9 +4096,9 @@ "title": "PLAY NEWS", "version": 3, "slug": "http://k7kg3jqxang3wh7hnmaiokchk7qoebupfgoik6rha6mjpzwupwtj25yd.onion/", - "available": true, - "updated": "2024-01-31 11:35:13.938719", - "lastscrape": "2024-01-31 11:35:13.938706", + "available": false, + "updated": "2024-02-19 21:30:12.422996", + "lastscrape": "2024-02-19 21:30:12.422984", "enabled": true }, { @@ -4107,8 +4107,8 @@ "version": 3, "slug": "http://mbrlkbtq5jonaqkurjwmxftytyn2ethqvbxfu4rgjbkkknndqwae6byd.onion/", "available": true, - "updated": "2024-01-31 11:35:42.955543", - "lastscrape": "2024-01-31 11:35:42.955532", + "updated": "2024-02-19 22:25:48.355871", + "lastscrape": "2024-02-19 22:25:48.355857", "enabled": true } ], @@ -4206,9 +4206,9 @@ "title": "Vendetta", "version": 3, "slug": "http://test.cuba4ikm4jakjgmkezytyawtdgr2xymvy6nvzgw5cglswg3si76icnqd.onion", - "available": true, - "updated": "2024-01-31 11:35:47.667231", - "lastscrape": "2024-01-31 11:35:47.667217", + "available": false, + "updated": "2024-02-08 10:33:48.262091", + "lastscrape": "2024-02-08 10:33:48.262076", "enabled": true } ], @@ -4227,8 +4227,8 @@ "version": 3, "slug": "http://contiuevxdgdhn3zl2kubpajtfgqq4ssj2ipv6ujw7fwhggev3rk6hqd.onion", "available": true, - "updated": "2024-01-31 11:35:56.523149", - "lastscrape": "2024-01-31 11:35:56.523135", + "updated": "2024-02-19 22:25:59.339516", + "lastscrape": "2024-02-19 22:25:59.339505", "enabled": true } ], @@ -4256,9 +4256,9 @@ "title": null, "version": 3, "slug": "http://z6wkgghzdliugvwinrp46m7i4xpmovjyygoitpicx7x2iqtihn7noxid.onion", - "available": false, - "updated": "2024-01-31 04:35:28.114291", - "lastscrape": "2024-01-31 04:35:28.114279", + "available": true, + "updated": "2024-02-19 22:26:14.716195", + "lastscrape": "2024-02-19 22:26:14.716179", "enabled": true } ], @@ -4297,8 +4297,8 @@ "version": 3, "slug": "http://3ev4metjirohtdpshsqlkrqcmxq6zu3d7obrdhglpy5jpbr7whmlfgqd.onion/static/data.js", "available": true, - "updated": "2024-01-31 11:37:03.586804", - "lastscrape": "2024-01-31 11:37:03.586789", + "updated": "2024-02-19 22:26:18.032297", + "lastscrape": "2024-02-19 22:26:18.032282", "enabled": true } ], @@ -4317,8 +4317,8 @@ "version": 3, "slug": "http://blogvl7tjyjvsfthobttze52w36wwiz34hrfcmorgvdzb6hikucb7aqd.onion/news.php?contentId=1", "available": true, - "updated": "2024-01-31 11:37:08.367601", - "lastscrape": "2024-01-31 11:37:08.367586", + "updated": "2024-02-19 22:26:21.454692", + "lastscrape": "2024-02-19 22:26:21.454679", "enabled": true } ], @@ -4337,8 +4337,8 @@ "version": 3, "slug": "http://p66slxmtum2ox4jpayco6ai3qfehd5urgrs4oximjzklxcol264driqd.onion/index.html", "available": true, - "updated": "2024-01-31 11:37:14.621068", - "lastscrape": "2024-01-31 11:37:14.621056", + "updated": "2024-02-19 22:26:26.313495", + "lastscrape": "2024-02-19 22:26:26.313482", "enabled": true } ], @@ -4357,8 +4357,8 @@ "version": 3, "slug": "https://akiral2iz6a7qgd3ayp3l6yub7xx2uep76idk3u2kollpj5z3z636bad.onion/n", "available": true, - "updated": "2024-01-31 11:37:31.854732", - "lastscrape": "2024-01-31 11:37:31.854716", + "updated": "2024-02-19 22:26:30.280917", + "lastscrape": "2024-02-19 22:26:30.280902", "enabled": true }, { @@ -4367,8 +4367,8 @@ "version": 3, "slug": "https://akiralkzxzq2dsrzsrvbr2xgbbu2wgsmxryd4csgfameg52n7efvr2id.onion/", "available": true, - "updated": "2024-01-31 11:37:40.538317", - "lastscrape": "2024-01-31 11:37:40.538303", + "updated": "2024-02-19 22:26:34.057827", + "lastscrape": "2024-02-19 22:26:34.057812", "enabled": true } ], @@ -4486,9 +4486,9 @@ "title": "Sign up", "version": 3, "slug": "http://znuzuy4hkjacew5y2q7mo63hufhzzjtsr2bkjetxqjibk4ctfl7jghyd.onion", - "available": false, - "updated": "2024-01-31 09:38:35.023253", - "lastscrape": "2024-01-31 09:38:35.023235", + "available": true, + "updated": "2024-02-19 22:27:29.621826", + "lastscrape": "2024-02-19 22:27:29.621811", "enabled": true }, { @@ -4497,8 +4497,8 @@ "version": 3, "slug": "http://krsbhaxbki6jr4zvwblvkaqzjkircj7cxf46qt3na5o5sj2hpikbupqd.onion/api?page=1", "available": true, - "updated": "2024-01-31 11:38:46.234092", - "lastscrape": "2024-01-31 11:38:46.234080", + "updated": "2024-02-19 22:27:44.444350", + "lastscrape": "2024-02-19 22:27:44.444336", "enabled": true } ], @@ -4556,9 +4556,9 @@ "title": "Home", "version": 3, "slug": "http://xb6q2aggycmlcrjtbjendcnnwpmmwbosqaugxsqb4nx6cmod3emy7sad.onion", - "available": false, - "updated": "2024-01-31 10:37:40.351379", - "lastscrape": "2024-01-31 10:37:40.351367", + "available": true, + "updated": "2024-02-19 22:28:26.268199", + "lastscrape": "2024-02-19 22:28:26.268186", "enabled": true } ], @@ -4577,8 +4577,8 @@ "version": 3, "slug": "http://malas2urovbyyavjzaezkt5ohljvyd5lt7vv7mnsgbf2y4bwlh72doqd.onion/posts/", "available": true, - "updated": "2024-01-31 11:39:31.066476", - "lastscrape": "2024-01-31 11:39:31.066462", + "updated": "2024-02-19 22:28:28.811696", + "lastscrape": "2024-02-19 22:28:28.811685", "enabled": true } ], @@ -4597,8 +4597,8 @@ "version": 3, "slug": "http://weg7sdx54bevnvulapqu6bpzwztryeflq3s23tegbmnhkbpqz637f2yd.onion", "available": true, - "updated": "2024-01-31 11:39:37.896784", - "lastscrape": "2024-01-31 11:39:37.896773", + "updated": "2024-02-19 22:28:32.477236", + "lastscrape": "2024-02-19 22:28:32.477223", "enabled": true } ], @@ -4679,8 +4679,8 @@ "version": 3, "slug": "http://rhysidafohrhyy2aszi7bm32tnjat5xri65fopcxkdfxhi4tidsg7cad.onion/archive.php", "available": true, - "updated": "2024-01-31 11:39:50.844804", - "lastscrape": "2024-01-31 11:39:50.844793", + "updated": "2024-02-19 22:28:37.774030", + "lastscrape": "2024-02-19 22:28:37.774019", "enabled": true }, { @@ -4689,8 +4689,8 @@ "version": 3, "slug": "http://rhysidafc6lm7qa2mkiukbezh7zuth3i4wof4mh2audkymscjm6yegad.onion/archive.php?last&auction", "available": true, - "updated": "2024-01-31 11:39:55.332120", - "lastscrape": "2024-01-31 11:39:55.332107", + "updated": "2024-02-19 22:28:39.528308", + "lastscrape": "2024-02-19 22:28:39.528294", "enabled": true } ], @@ -4739,8 +4739,8 @@ "version": 3, "slug": "https://cactusbloguuodvqjmnzlwetjlpj6aggc6iocwhuupb47laukux7ckid.onion", "available": true, - "updated": "2024-01-31 11:40:44.653993", - "lastscrape": "2024-01-31 11:40:44.653980", + "updated": "2024-02-19 22:29:12.272542", + "lastscrape": "2024-02-19 22:29:12.272532", "enabled": true } ], @@ -4758,9 +4758,9 @@ "title": "Please wait...", "version": 3, "slug": "http://knight3xppu263m7g4ag3xlit2qxpryjwueobh7vjdc3zrscqlfu3pqd.onion/search/", - "available": true, - "updated": "2024-01-31 11:40:52.317490", - "lastscrape": "2024-01-31 11:40:52.317478", + "available": false, + "updated": "2024-02-14 07:41:03.694144", + "lastscrape": "2024-02-14 07:41:03.694133", "enabled": true }, { @@ -4789,8 +4789,8 @@ "version": 3, "slug": "http://incbackrlasjesgpfu5brktfjknbqoahe2hhmqfhasc5fb56mtukn4yd.onion/api/blog/get-leaks", "available": true, - "updated": "2024-01-31 11:41:06.783400", - "lastscrape": "2024-01-31 11:41:06.783387", + "updated": "2024-02-19 22:29:25.612397", + "lastscrape": "2024-02-19 22:29:25.612381", "enabled": true }, { @@ -4799,8 +4799,8 @@ "version": 3, "slug": "http://incblog7vmuq7rktic73r4ha4j757m3ptym37tyvifzp2roedyyzzxid.onion", "available": true, - "updated": "2024-01-31 11:41:12.414793", - "lastscrape": "2024-01-31 11:41:12.414782", + "updated": "2024-02-19 22:29:28.898872", + "lastscrape": "2024-02-19 22:29:28.898860", "enabled": true }, { @@ -4808,9 +4808,9 @@ "title": null, "version": 0, "slug": "http://incbackend.top/api/blog/get-leaks", - "available": true, - "updated": "2024-01-31 11:41:17.613487", - "lastscrape": "2024-01-31 11:41:17.613476", + "available": false, + "updated": "2024-02-19 21:33:51.666968", + "lastscrape": "2024-02-19 21:33:51.666952", "enabled": true }, { @@ -4818,9 +4818,9 @@ "title": "INC Ransom", "version": 0, "slug": "http://incapt.blog/blog/leaks", - "available": true, - "updated": "2024-01-31 11:41:19.386350", - "lastscrape": "2024-01-31 11:41:19.386337", + "available": false, + "updated": "2024-02-07 06:44:54.883290", + "lastscrape": "2024-02-07 06:44:54.883277", "enabled": true } ], @@ -4859,8 +4859,8 @@ "version": 3, "slug": "http://cloak7jpvcb73rtx2ff7kaw2kholu7bdiivxpzbhlny4ybz75dpxckqd.onion", "available": true, - "updated": "2024-01-31 11:41:44.323106", - "lastscrape": "2024-01-31 11:41:44.323091", + "updated": "2024-02-19 22:30:12.318248", + "lastscrape": "2024-02-19 22:30:12.318233", "enabled": true } ], @@ -4879,8 +4879,8 @@ "version": 3, "slug": "http://f6amq3izzsgtna4vw24rpyhy3ofwazlgex2zqdssavevvkklmtudxjad.onion", "available": true, - "updated": "2024-01-31 11:41:50.282954", - "lastscrape": "2024-01-31 11:41:50.282941", + "updated": "2024-02-19 22:30:15.866092", + "lastscrape": "2024-02-19 22:30:15.866080", "enabled": true }, { @@ -4889,8 +4889,8 @@ "version": 0, "slug": "https://ransomed.vc", "available": true, - "updated": "2024-01-31 11:41:54.119511", - "lastscrape": "2024-01-31 11:41:54.119499", + "updated": "2024-02-19 22:30:16.922253", + "lastscrape": "2024-02-19 22:30:16.922240", "enabled": true } ], @@ -4918,9 +4918,9 @@ "title": "CiphBit", "version": 3, "slug": "http://ciphbitqyg26jor7eeo6xieyq7reouctefrompp6ogvhqjba7uo4xdid.onion", - "available": false, - "updated": "2024-01-31 09:42:04.660878", - "lastscrape": "2024-01-31 09:42:04.660856", + "available": true, + "updated": "2024-02-19 22:30:23.441494", + "lastscrape": "2024-02-19 22:30:23.441483", "enabled": true } ], @@ -4938,9 +4938,9 @@ "title": "ThreeAM Blog", "version": 3, "slug": "http://threeamkelxicjsaf2czjyz2lc4q3ngqkxhhlexyfcp2o6raw4rphyad.onion", - "available": false, - "updated": "2024-01-31 10:41:32.776685", - "lastscrape": "2024-01-31 10:41:32.776674", + "available": true, + "updated": "2024-02-19 22:30:26.370357", + "lastscrape": "2024-02-19 22:30:26.370346", "enabled": true } ], @@ -5003,8 +5003,8 @@ "version": 3, "slug": "https://hunters55rdxciehoqzwv7vgyv6nt37tbwax2reroyzxhou7my5ejyid.onion/api/public/companies", "available": false, - "updated": "2024-01-29 09:47:27.565225", - "lastscrape": "2024-01-29 09:47:27.565212", + "updated": "2024-02-18 09:37:07.965101", + "lastscrape": "2024-02-18 09:37:07.965086", "enabled": true }, { @@ -5012,9 +5012,9 @@ "title": "Loading...", "version": 3, "slug": "https://hunters33mmcwww7ek7q5ndahul6nmzmrsumfs6aenicbqon6mxfiqyd.onion/login", - "available": false, - "updated": "2024-01-30 18:43:31.102330", - "lastscrape": "2024-01-30 18:43:31.102317", + "available": true, + "updated": "2024-02-19 22:30:44.672277", + "lastscrape": "2024-02-19 22:30:44.672260", "enabled": true } ], @@ -5033,8 +5033,8 @@ "version": 3, "slug": "http://totos7fquprkecvcsl2jwy72v32glgkp2ejeqlnx5ynnxvbebgnletqd.onion/story/getAllStories", "available": true, - "updated": "2024-01-31 11:43:51.145878", - "lastscrape": "2024-01-31 11:43:51.145866", + "updated": "2024-02-19 22:30:47.846322", + "lastscrape": "2024-02-19 22:30:47.846306", "enabled": true }, { @@ -5043,8 +5043,8 @@ "version": 3, "slug": "http://meow6xanhzfci2gbkn3lmbqq7xjjufskkdfocqdngt3ltvzgqpsg5mid.onion", "available": true, - "updated": "2024-01-31 11:44:06.434058", - "lastscrape": "2024-01-31 11:44:06.434046", + "updated": "2024-02-19 22:30:49.491479", + "lastscrape": "2024-02-19 22:30:49.491466", "enabled": true } ], @@ -5102,9 +5102,9 @@ "title": null, "version": 3, "slug": "http://z3wqggtxft7id3ibr7srivv5gjof5fwg76slewnzwwakjuf3nlhukdid.onion/api/guest/blog/posts?archived=false", - "available": false, - "updated": "2024-01-31 10:43:17.834792", - "lastscrape": "2024-01-31 10:43:17.834778", + "available": true, + "updated": "2024-02-19 22:31:20.962208", + "lastscrape": "2024-02-19 22:31:20.962196", "enabled": true } ], @@ -5123,8 +5123,8 @@ "version": 0, "slug": "https://werewolves.pro/en/", "available": true, - "updated": "2024-01-31 11:45:05.628062", - "lastscrape": "2024-01-31 11:45:05.628053", + "updated": "2024-02-19 22:31:22.365683", + "lastscrape": "2024-02-19 22:31:22.365672", "enabled": true } ], @@ -5145,8 +5145,8 @@ "version": 0, "slug": "https://malekteam.ac", "available": true, - "updated": "2024-01-31 11:45:07.102401", - "lastscrape": "2024-01-31 11:45:07.102393", + "updated": "2024-02-19 22:31:23.936636", + "lastscrape": "2024-02-19 22:31:23.936623", "enabled": true }, { @@ -5155,8 +5155,8 @@ "version": 0, "slug": "http://195.14.123.2", "available": true, - "updated": "2024-01-31 11:45:07.940883", - "lastscrape": "2024-01-31 11:45:07.940875", + "updated": "2024-02-19 22:31:24.737062", + "lastscrape": "2024-02-19 22:31:24.737048", "enabled": true } ], @@ -5174,9 +5174,9 @@ "title": "Inane Right", "version": 3, "slug": "http://nv5lbsrr4rxmewzmpe25nnalowe4ga7ki6yfvit3wlpu7dfc36pyh4ad.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:13.636604", - "lastscrape": "2024-01-31 11:45:13.636593", + "available": false, + "updated": "2024-02-12 07:44:36.301290", + "lastscrape": "2024-02-12 07:44:36.301280", "enabled": true }, { @@ -5184,9 +5184,9 @@ "title": "Inane Right", "version": 3, "slug": "http://r2ad4ayrgpf7og673lhrw5oqyvqg4em2fpialk7l7gxkasvqkqow4qad.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:25.063064", - "lastscrape": "2024-01-31 11:45:25.063052", + "available": false, + "updated": "2024-02-12 07:44:52.684675", + "lastscrape": "2024-02-12 07:44:52.684662", "enabled": true }, { @@ -5194,9 +5194,9 @@ "title": "Inane Right", "version": 3, "slug": "http://gfksiwpsqudibondm6o2ipxymaonehq3l26qpgqr3nh4jvcyayvogcid.onion/Insane.html", - "available": true, - "updated": "2024-01-31 11:45:38.540416", - "lastscrape": "2024-01-31 11:45:38.540405", + "available": false, + "updated": "2024-02-12 07:44:57.617799", + "lastscrape": "2024-02-12 07:44:57.617789", "enabled": true } ], @@ -5215,8 +5215,8 @@ "version": 3, "slug": "http://noname2j6zkgnt7ftxsjju5tfd3s45s4i3egq5bqtl72kgum4ldc6qyd.onion", "available": true, - "updated": "2024-01-31 11:45:55.334767", - "lastscrape": "2024-01-31 11:45:55.334758", + "updated": "2024-02-19 22:31:44.620040", + "lastscrape": "2024-02-19 22:31:44.620030", "enabled": true } ], @@ -5238,8 +5238,50 @@ "version": 3, "slug": "http://3ytm3d25hfzvbylkxiwyqmpvzys5of7l4pbosm7ol7czlkplgukjq6yd.onion/atom.xml", "available": true, - "updated": "2024-01-31 09:44:46.571903", - "lastscrape": "2024-01-31 09:44:46.571887", + "updated": "2024-02-19 22:31:47.384607", + "lastscrape": "2024-02-19 22:31:47.384594", + "enabled": true + } + ], + "profile": [] + }, + { + "name": "ransomhub", + "captcha": false, + "parser": true, + "javascript_render": true, + "meta": null, + "locations": [ + { + "fqdn": "ransomxifxwc5eteopdobynonjctkxxvap77yqifu2emfbecgbqdw6qd.onion", + "title": "Index", + "version": 3, + "slug": "http://ransomxifxwc5eteopdobynonjctkxxvap77yqifu2emfbecgbqdw6qd.onion", + "available": true, + "updated": "2024-02-19 22:32:06.858660", + "lastscrape": "2024-02-19 22:32:06.858645", + "enabled": true + } + ], + "profile": [ + "4D598799696AD5399FABF7D40C4D1BE9F05D74CFB311047D7391AC0BF64BED47B56EEE66A528" + ] + }, + { + "name": "alphalocker", + "captcha": false, + "parser": true, + "javascript_render": false, + "meta": null, + "locations": [ + { + "fqdn": "mydatae2d63il5oaxxangwnid5loq2qmtsol2ozr6vtb7yfm5ypzo6id.onion", + "title": "--", + "version": 3, + "slug": "http://mydatae2d63il5oaxxangwnid5loq2qmtsol2ozr6vtb7yfm5ypzo6id.onion", + "available": true, + "updated": "2024-02-19 22:32:10.717355", + "lastscrape": "2024-02-19 22:32:10.717343", "enabled": true } ], From b666c4159a5d0d3668fa4a3c2f74994ddcba4f79 Mon Sep 17 00:00:00 2001 From: rbozburun Date: Mon, 26 Feb 2024 23:23:52 +0300 Subject: [PATCH 08/10] remote fix_blacklist pulled --- src/activitiesRansomData.json | 1495 +++++++++++++++++++++++++++++++++ 1 file changed, 1495 insertions(+) diff --git a/src/activitiesRansomData.json b/src/activitiesRansomData.json index d4235a4..35db80b 100644 --- a/src/activitiesRansomData.json +++ b/src/activitiesRansomData.json @@ -48678,5 +48678,1500 @@ "post_title": "sahchicago.org", "group_name": "lockbit3", "discovered": "2024-01-31 02:45:26.348346" + }, + { + "post_title": "http://www.northhill.org", + "group_name": "blacksuit", + "discovered": "2024-01-31 12:51:39.930062" + }, + { + "post_title": "Sefin", + "group_name": "akira", + "discovered": "2024-01-31 16:49:48.016322" + }, + { + "post_title": "LeClair Group", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:04.282701" + }, + { + "post_title": "SportsMEDIA Technology", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:05.536829" + }, + { + "post_title": "Galaxy Fireworks, Inc", + "group_name": "medusa", + "discovered": "2024-01-31 17:49:18.391058" + }, + { + "post_title": "Hydraflow", + "group_name": "alphv", + "discovered": "2024-01-31 18:47:09.987159" + }, + { + "post_title": "apeagers.au", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:41.578010" + }, + { + "post_title": "derrama.org.pe", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:44.708008" + }, + { + "post_title": "mnorch.org", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:50.080467" + }, + { + "post_title": "Primeimaging database for sale", + "group_name": "everest", + "discovered": "2024-02-01 01:00:18.239969" + }, + { + "post_title": "CNPC Peru S.A.", + "group_name": "rhysida", + "discovered": "2024-02-01 02:06:06.862360" + }, + { + "post_title": "Robert D. Clements Jr Law Group, LLLP", + "group_name": "bianlian", + "discovered": "2024-02-01 05:47:41.609894" + }, + { + "post_title": "Southwark Council", + "group_name": "meow", + "discovered": "2024-02-01 09:43:37.868205" + }, + { + "post_title": "bandcllp.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 10:44:55.771860" + }, + { + "post_title": "taloninternational.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 11:43:23.931373" + }, + { + "post_title": "etsolutions.com.mx", + "group_name": "threeam", + "discovered": "2024-02-01 11:43:34.845393" + }, + { + "post_title": "Borah Goldstein Alts chuler Nahins & Goid el", + "group_name": "akira", + "discovered": "2024-02-01 16:49:14.243876" + }, + { + "post_title": "manchesterfertility.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:26.905938" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:30.411918" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 20:48:01.452602" + }, + { + "post_title": "Data Broking Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:53.688350" + }, + { + "post_title": "OSINT Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:54.612232" + }, + { + "post_title": "Penetration Testing Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:55.442765" + }, + { + "post_title": "dms-imaging", + "group_name": "cuba", + "discovered": "2024-02-02 00:54:18.770967" + }, + { + "post_title": "Innovex Downhole Solutions", + "group_name": "play", + "discovered": "2024-02-02 00:54:36.522819" + }, + { + "post_title": "Tandem", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:26.801997" + }, + { + "post_title": "Law Office of Michael H Joseph", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:27.653954" + }, + { + "post_title": "lexcaribbean.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 13:40:44.520539" + }, + { + "post_title": "manitou-group.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 18:50:56.475105" + }, + { + "post_title": "Chaney, Couch, Callaway, Carter and Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:00.749932" + }, + { + "post_title": "Thomas LLP", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:01.737864" + }, + { + "post_title": "Digitel Venezuela", + "group_name": "medusa", + "discovered": "2024-02-02 20:46:55.568725" + }, + { + "post_title": "pbwtulsa.com", + "group_name": "lockbit3", + "discovered": "2024-02-03 10:47:49.041398" + }, + { + "post_title": "Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-03 14:49:56.026001" + }, + { + "post_title": "cxm.com", + "group_name": "lockbit3", + "discovered": "2024-02-04 14:53:11.959174" + }, + { + "post_title": "Cole, Cole, Easley and Sciba", + "group_name": "bianlian", + "discovered": "2024-02-04 14:53:18.078097" + }, + { + "post_title": "DOD contractors you are welcome in our chat.", + "group_name": "donutleaks", + "discovered": "2024-02-05 01:01:29.091614" + }, + { + "post_title": "logtainer.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:06.347461" + }, + { + "post_title": "philogen.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:08.569997" + }, + { + "post_title": "portline.pt", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:09.536611" + }, + { + "post_title": "prima.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:10.594814" + }, + { + "post_title": "semesco.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:07.235141" + }, + { + "post_title": "tgestiona.br", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:09.367337" + }, + { + "post_title": "ultraflexx.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:11.101910" + }, + { + "post_title": "GRTC Transit System", + "group_name": "bianlian", + "discovered": "2024-02-05 13:45:23.764982" + }, + { + "post_title": "ksa-architecture.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:32.478656" + }, + { + "post_title": "noe.wifi.at", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:34.487488" + }, + { + "post_title": "VCS Observation", + "group_name": "akira", + "discovered": "2024-02-05 16:42:56.046974" + }, + { + "post_title": "davis-french-associates.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:36.247382" + }, + { + "post_title": "hutchpaving.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:38.782412" + }, + { + "post_title": "http://tobaccofreekids.org", + "group_name": "blacksuit", + "discovered": "2024-02-05 17:46:50.921190" + }, + { + "post_title": "Vail-Summit Orthopaedics & Neurosurgery (VSON)", + "group_name": "alphv", + "discovered": "2024-02-05 18:50:43.265891" + }, + { + "post_title": "themisbourne.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 18:50:54.171029" + }, + { + "post_title": "www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-05 20:50:31.609895" + }, + { + "post_title": "Asecos", + "group_name": "blackbasta", + "discovered": "2024-02-05 21:43:46.607045" + }, + { + "post_title": "Albert Bartlett", + "group_name": "play", + "discovered": "2024-02-05 23:43:34.491635" + }, + { + "post_title": "Douglas County Libraries", + "group_name": "play", + "discovered": "2024-02-05 23:43:35.474786" + }, + { + "post_title": "Greenwich Leisure", + "group_name": "play", + "discovered": "2024-02-05 23:43:36.397641" + }, + { + "post_title": "Hannon Transport", + "group_name": "play", + "discovered": "2024-02-05 23:43:37.527051" + }, + { + "post_title": "Leaders Staffing", + "group_name": "play", + "discovered": "2024-02-05 23:43:38.489465" + }, + { + "post_title": "Mason Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:39.473554" + }, + { + "post_title": "McMillan Pazdan Smith", + "group_name": "play", + "discovered": "2024-02-05 23:43:40.701400" + }, + { + "post_title": "Northeastern Sheet Metal", + "group_name": "play", + "discovered": "2024-02-05 23:43:41.607174" + }, + { + "post_title": "Perry-McCall Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:42.650556" + }, + { + "post_title": "Premier Facility Management", + "group_name": "play", + "discovered": "2024-02-05 23:43:43.766593" + }, + { + "post_title": "Ready Mixed Concrete", + "group_name": "play", + "discovered": "2024-02-05 23:43:45.027198" + }, + { + "post_title": "Virgin Islands Lottery", + "group_name": "play", + "discovered": "2024-02-05 23:43:46.065386" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 08:41:13.613379" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 11:39:17.507661" + }, + { + "post_title": "ArpuPlus", + "group_name": "medusa", + "discovered": "2024-02-06 14:38:33.447511" + }, + { + "post_title": "Hbl Cpas, P.C.", + "group_name": "ransomhouse", + "discovered": "2024-02-06 15:38:37.673709" + }, + { + "post_title": "B Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:47.900991" + }, + { + "post_title": "Sciba", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:48.921809" + }, + { + "post_title": "Celeste", + "group_name": "akira", + "discovered": "2024-02-06 16:41:08.826387" + }, + { + "post_title": "AVer Information", + "group_name": "akira", + "discovered": "2024-02-06 16:41:09.704902" + }, + { + "post_title": "deltron.com", + "group_name": "abyss", + "discovered": "2024-02-06 19:43:18.744742" + }, + { + "post_title": "Shipleys LLP", + "group_name": "ransomhouse", + "discovered": "2024-02-07 00:58:46.279094" + }, + { + "post_title": "axsbolivia.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:48.225919" + }, + { + "post_title": "vimarequipment.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:56.102235" + }, + { + "post_title": "Anderco PTE LTD", + "group_name": "8base", + "discovered": "2024-02-07 00:59:03.707023" + }, + { + "post_title": "CERALP", + "group_name": "8base", + "discovered": "2024-02-07 00:59:04.775267" + }, + { + "post_title": "Harinck", + "group_name": "8base", + "discovered": "2024-02-07 00:59:06.470352" + }, + { + "post_title": "Karl Rieker GmbH and Co. KG", + "group_name": "8base", + "discovered": "2024-02-07 00:59:07.671488" + }, + { + "post_title": "PJ Green Inc", + "group_name": "8base", + "discovered": "2024-02-07 00:59:08.934928" + }, + { + "post_title": "PWS - The Laundry Company", + "group_name": "8base", + "discovered": "2024-02-07 00:59:09.838301" + }, + { + "post_title": "Precision Tune Auto Care", + "group_name": "8base", + "discovered": "2024-02-07 00:59:10.781951" + }, + { + "post_title": "Tetrosyl Group Limited", + "group_name": "8base", + "discovered": "2024-02-07 00:59:11.905895" + }, + { + "post_title": "Therme Laa Hotel and Silent Spa", + "group_name": "8base", + "discovered": "2024-02-07 00:59:12.798306" + }, + { + "post_title": "Worthen Industries", + "group_name": "8base", + "discovered": "2024-02-07 00:59:13.751416" + }, + { + "post_title": "YRW Limited - Chartered Accountants", + "group_name": "8base", + "discovered": "2024-02-07 00:59:14.469062" + }, + { + "post_title": "transaxle.com", + "group_name": "abyss", + "discovered": "2024-02-07 10:49:36.482639" + }, + { + "post_title": "TeraGo", + "group_name": "akira", + "discovered": "2024-02-07 16:52:09.733665" + }, + { + "post_title": "http://swbindinglaminating.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 16:52:15.202341" + }, + { + "post_title": "http://www.wmc-i.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 18:45:55.094484" + }, + { + "post_title": "Distecna", + "group_name": "akira", + "discovered": "2024-02-08 15:40:01.248369" + }, + { + "post_title": "originalfootwear.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:25.055289" + }, + { + "post_title": "perkinsmfg.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:26.087011" + }, + { + "post_title": "Jewish Home Lifecare", + "group_name": "alphv", + "discovered": "2024-02-08 19:40:20.633823" + }, + { + "post_title": "Ducont", + "group_name": "hunters", + "discovered": "2024-02-08 19:40:43.850366" + }, + { + "post_title": "water.cc", + "group_name": "lockbit3", + "discovered": "2024-02-08 20:49:28.747846" + }, + { + "post_title": "galbusera.it", + "group_name": "lockbit3", + "discovered": "2024-02-09 07:37:26.567740" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 08:35:46.155063" + }, + { + "post_title": "macqueeneq.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 09:36:25.115411" + }, + { + "post_title": "posen.com", + "group_name": "abyss", + "discovered": "2024-02-09 10:34:37.624311" + }, + { + "post_title": "bsaarchitects.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:36.111619" + }, + { + "post_title": "moneyadvicetrust.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:41.685062" + }, + { + "post_title": "seymourct.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:44.504843" + }, + { + "post_title": "northseayachtsupport.nl", + "group_name": "lockbit3", + "discovered": "2024-02-09 12:40:22.882357" + }, + { + "post_title": "Willis Lease Finance Corporation", + "group_name": "blackbasta", + "discovered": "2024-02-09 13:36:10.042532" + }, + { + "post_title": "grupomoraval.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:15.633802" + }, + { + "post_title": "verdimed.es", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:20.899398" + }, + { + "post_title": "cdtmedicus.pl", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:06.661566" + }, + { + "post_title": "indoramaventures.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:09.871485" + }, + { + "post_title": "maximumresearch.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:11.661612" + }, + { + "post_title": "soken-ce.co.jp", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:14.868476" + }, + { + "post_title": "oogp.com\\$11.4M\\USA\\63GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:27.058618" + }, + { + "post_title": "jaygroup.com\\$62.2M\\USA\\270GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:28.093013" + }, + { + "post_title": "alfiras.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 15:40:46.865821" + }, + { + "post_title": "Drost Kivlahan McMahon and O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:50.499230" + }, + { + "post_title": "Capozzi Adler, P.C.", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:51.322465" + }, + { + "post_title": "Grace Lutheran Foundation", + "group_name": "alphv", + "discovered": "2024-02-09 18:47:06.163834" + }, + { + "post_title": "magi-erp.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 18:47:13.548646" + }, + { + "post_title": "TechNet Kronoberg AB", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:17.808226" + }, + { + "post_title": "J.P. Original", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:18.955260" + }, + { + "post_title": "CTSI", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:20.567002" + }, + { + "post_title": "zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:32.512846" + }, + { + "post_title": "www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:34.159303" + }, + { + "post_title": "Pacific American Fish Company Inc.", + "group_name": "incransom", + "discovered": "2024-02-10 01:55:49.848134" + }, + { + "post_title": "maddockhenson", + "group_name": "alphv", + "discovered": "2024-02-10 10:34:19.213101" + }, + { + "post_title": "aisg-online.com", + "group_name": "lockbit3", + "discovered": "2024-02-10 10:34:23.298925" + }, + { + "post_title": "mranet.org", + "group_name": "abyss", + "discovered": "2024-02-10 16:41:13.538950" + }, + { + "post_title": "Avianor Aircraft", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:27.913947" + }, + { + "post_title": "Carespring Health Care", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:28.759434" + }, + { + "post_title": "Dalmahoy Hotel & Country Club", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:29.746689" + }, + { + "post_title": "Groupe Goyette", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:30.673343" + }, + { + "post_title": "Impact Energy Services", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:31.371374" + }, + { + "post_title": "SOPEM Tunisie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:32.446577" + }, + { + "post_title": "Benchmark Management Group", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:33.306278" + }, + { + "post_title": "Nastech", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.013669" + }, + { + "post_title": "Lancaster County Sheriff's Office", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.887872" + }, + { + "post_title": "Village of Skokie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:35.682279" + }, + { + "post_title": "www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-10 21:38:20.749206" + }, + { + "post_title": "lacolline-skincare.com", + "group_name": "lockbit3", + "discovered": "2024-02-11 08:36:18.710538" + }, + { + "post_title": "O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-11 11:34:48.375266" + }, + { + "post_title": "Amoskeag Network Consulting Group LLC", + "group_name": "medusa", + "discovered": "2024-02-11 14:39:43.549531" + }, + { + "post_title": "LILI'S BROWNIES", + "group_name": "8base", + "discovered": "2024-02-11 22:38:00.413343" + }, + { + "post_title": "Kadac Australia", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:46.600770" + }, + { + "post_title": "The Gainsborough Bath", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:47.599915" + }, + { + "post_title": "grotonschools.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:38.430567" + }, + { + "post_title": "jacksonvillebeach.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:40.096648" + }, + { + "post_title": "parkhomeassist.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:42.560867" + }, + { + "post_title": "robs.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:44.208009" + }, + { + "post_title": "camarotto.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:21.271199" + }, + { + "post_title": "dienerprecisionpumps.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:23.096860" + }, + { + "post_title": "envie.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:24.832649" + }, + { + "post_title": "isspol.gov", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:27.834646" + }, + { + "post_title": "lyon.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:30.004922" + }, + { + "post_title": "paltertonprimary.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:32.344287" + }, + { + "post_title": "sealco-leb.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:34.524463" + }, + { + "post_title": "vhprimary.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:36.578557" + }, + { + "post_title": "Freedom Munitions", + "group_name": "meow", + "discovered": "2024-02-12 08:45:50.843898" + }, + { + "post_title": "Allmetal Inc.", + "group_name": "meow", + "discovered": "2024-02-12 08:45:51.765754" + }, + { + "post_title": "Disaronno International", + "group_name": "meow", + "discovered": "2024-02-12 08:45:52.537065" + }, + { + "post_title": "cabc.com.ar", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:35.423717" + }, + { + "post_title": "fidcornelis.be", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:38.139743" + }, + { + "post_title": "plexustelerad.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:43.843546" + }, + { + "post_title": "silverairways.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:45.654644" + }, + { + "post_title": "textiles.org.tw", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:47.265094" + }, + { + "post_title": "Arlington Perinatal Associates", + "group_name": "meow", + "discovered": "2024-02-12 09:47:01.118351" + }, + { + "post_title": "Kreyenhop & Kluge", + "group_name": "hunters", + "discovered": "2024-02-12 10:49:57.810990" + }, + { + "post_title": "germaintoiture.fr", + "group_name": "lockbit3", + "discovered": "2024-02-12 12:55:10.101723" + }, + { + "post_title": "Lower Valley Energy, Inc.", + "group_name": "alphv", + "discovered": "2024-02-12 14:47:21.566215" + }, + { + "post_title": "Modern Kitchens ", + "group_name": "medusa", + "discovered": "2024-02-12 14:47:34.927293" + }, + { + "post_title": "SERCIDE", + "group_name": "alphv", + "discovered": "2024-02-12 16:43:39.136111" + }, + { + "post_title": "Rush Energy Services Inc [You have 48 hours]", + "group_name": "alphv", + "discovered": "2024-02-12 19:42:33.506797" + }, + { + "post_title": "tecasrl.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 21:40:36.296749" + }, + { + "post_title": "http://antunovich.com", + "group_name": "blacksuit", + "discovered": "2024-02-12 21:40:46.640868" + }, + { + "post_title": "garonproducts.com", + "group_name": "threeam", + "discovered": "2024-02-12 21:40:49.180786" + }, + { + "post_title": "elandenergy.com Eland Energy", + "group_name": "alphalocker", + "discovered": "2024-02-13 00:51:09.079290" + }, + { + "post_title": "YKP LTDA", + "group_name": "ransomhub", + "discovered": "2024-02-13 00:51:09.772057" + }, + { + "post_title": "Sanok Rubber Company Spólka Akcyjna", + "group_name": "akira", + "discovered": "2024-02-13 08:39:06.866914" + }, + { + "post_title": "Satse", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:14.308790" + }, + { + "post_title": "SOPEM", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:16.493197" + }, + { + "post_title": "auruminstitute.org", + "group_name": "lockbit3", + "discovered": "2024-02-13 10:40:08.635703" + }, + { + "post_title": "New Indy Containerboard", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:28.350810" + }, + { + "post_title": "Procopio", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:29.651377" + }, + { + "post_title": "Herrs", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:30.400395" + }, + { + "post_title": "Trans-Northern Pipelines", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:51.528400" + }, + { + "post_title": "ArcisGolf", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:52.306797" + }, + { + "post_title": "The Source", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:53.288531" + }, + { + "post_title": "doprastav.sk", + "group_name": "lockbit3", + "discovered": "2024-02-13 14:38:37.830416" + }, + { + "post_title": "universalservicesms.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 17:41:07.370625" + }, + { + "post_title": "Communication Federal Credit Union", + "group_name": "hunters", + "discovered": "2024-02-13 17:41:18.865732" + }, + { + "post_title": "rajawali.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 21:42:19.767565" + }, + { + "post_title": "motilaloswal.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 22:44:05.923814" + }, + { + "post_title": "Leonard’s Syrups", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:52.777834" + }, + { + "post_title": "Sanford, Pierson, Thone & Strean", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.004272" + }, + { + "post_title": "Global Rescue", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.768500" + }, + { + "post_title": "BTL", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:55.598485" + }, + { + "post_title": "Patrizia Pepe", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:57.379617" + }, + { + "post_title": "Constantia FFP", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:58.297588" + }, + { + "post_title": "Barber Emerson", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:59.128996" + }, + { + "post_title": "adioscancer.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 00:56:26.442986" + }, + { + "post_title": "mmiculinary.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 03:39:51.848519" + }, + { + "post_title": "giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:58.056462" + }, + { + "post_title": "www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:59.128461" + }, + { + "post_title": "ATB SA Ingénieurs-conseils SIA", + "group_name": "8base", + "discovered": "2024-02-14 04:43:32.630789" + }, + { + "post_title": "Institutional Casework, Inc", + "group_name": "8base", + "discovered": "2024-02-14 04:43:34.372784" + }, + { + "post_title": "UNIFER", + "group_name": "8base", + "discovered": "2024-02-14 04:43:35.982680" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3", + "discovered": "2024-02-14 05:43:26.917205" + }, + { + "post_title": "wsnelson.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 06:42:34.382976" + }, + { + "post_title": "Sindicato de Enfermería (SATSE)", + "group_name": "hunters", + "discovered": "2024-02-14 07:46:41.790025" + }, + { + "post_title": "kabat.pl", + "group_name": "lockbit3", + "discovered": "2024-02-14 08:44:13.452908" + }, + { + "post_title": "vanwingerden.com", + "group_name": "abyss", + "discovered": "2024-02-14 09:44:38.114838" + }, + { + "post_title": "https://www.falco.com/, http://www.falcoprc.com/, http://support.falcomex.com/, http://www", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:22.527828" + }, + { + "post_title": "https://www.americamovil.com/", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:23.593041" + }, + { + "post_title": "Nekoosa School Distr ict", + "group_name": "akira", + "discovered": "2024-02-14 16:45:37.199360" + }, + { + "post_title": "studiogalbusera.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 17:43:31.656734" + }, + { + "post_title": "ASA Electronics [2.7 TB]", + "group_name": "alphv", + "discovered": "2024-02-15 07:48:15.369146" + }, + { + "post_title": "centralepaysanne.lu", + "group_name": "lockbit3", + "discovered": "2024-02-15 09:54:59.223073" + }, + { + "post_title": "champion.com.co", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:30.170814" + }, + { + "post_title": "coreengg.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:31.701567" + }, + { + "post_title": "hatsinteriors.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:35.174126" + }, + { + "post_title": "sitrack.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:38.996052" + }, + { + "post_title": "pradiergranulats.fr", + "group_name": "lockbit3", + "discovered": "2024-02-15 11:55:00.671579" + }, + { + "post_title": "ASP Basilicata", + "group_name": "rhysida", + "discovered": "2024-02-15 12:52:32.053764" + }, + { + "post_title": "Rush Energy Services Inc [Time's up]", + "group_name": "alphv", + "discovered": "2024-02-15 13:49:08.332355" + }, + { + "post_title": "conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:21.975121" + }, + { + "post_title": "kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:23.021004" + }, + { + "post_title": "Advantage Orthopedic and Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-15 15:55:36.909256" + }, + { + "post_title": "Asam", + "group_name": "akira", + "discovered": "2024-02-15 16:49:40.104205" + }, + { + "post_title": "Schuster Trucking Company", + "group_name": "hunters", + "discovered": "2024-02-15 17:45:33.743960" + }, + { + "post_title": "DuBose Strapping", + "group_name": "play", + "discovered": "2024-02-15 18:53:40.834575" + }, + { + "post_title": "HR Ewell & Hy-tec", + "group_name": "play", + "discovered": "2024-02-15 18:53:41.737274" + }, + { + "post_title": "LD Davis", + "group_name": "play", + "discovered": "2024-02-15 18:53:42.667998" + }, + { + "post_title": "Mechanical Reps", + "group_name": "play", + "discovered": "2024-02-15 18:53:43.504379" + }, + { + "post_title": "MeerServices", + "group_name": "play", + "discovered": "2024-02-15 18:53:44.526693" + }, + { + "post_title": "Norman, Fox", + "group_name": "play", + "discovered": "2024-02-15 18:53:45.773002" + }, + { + "post_title": "Onclusive", + "group_name": "play", + "discovered": "2024-02-15 18:53:46.829288" + }, + { + "post_title": "SilverLining", + "group_name": "play", + "discovered": "2024-02-15 18:53:47.541160" + }, + { + "post_title": "von Hagen", + "group_name": "play", + "discovered": "2024-02-15 18:53:48.380182" + }, + { + "post_title": "Pierce", + "group_name": "bianlian", + "discovered": "2024-02-15 22:53:21.477551" + }, + { + "post_title": "St. Johns River Water Management District", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:12.699922" + }, + { + "post_title": "Griffin Dewatering", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:14.202272" + }, + { + "post_title": "theclosingagent.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 07:54:13.717089" + }, + { + "post_title": "Ribe-Groupe", + "group_name": "hunters", + "discovered": "2024-02-16 07:54:25.219441" + }, + { + "post_title": "Concello de Teo", + "group_name": "hunters", + "discovered": "2024-02-16 08:47:09.568174" + }, + { + "post_title": "spaldingssd.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:47.837668" + }, + { + "post_title": "tormetal.cl", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:49.165562" + }, + { + "post_title": "Pacifica", + "group_name": "blackbasta", + "discovered": "2024-02-16 12:38:54.213140" + }, + { + "post_title": "etisalat.ae", + "group_name": "lockbit3", + "discovered": "2024-02-16 14:51:57.409899" + }, + { + "post_title": "BRAM Auto Group", + "group_name": "akira", + "discovered": "2024-02-16 16:52:29.412035" + }, + { + "post_title": "Réseau Ribé", + "group_name": "hunters", + "discovered": "2024-02-16 17:54:33.848203" + }, + { + "post_title": "The Chas. E. Phipps", + "group_name": "medusa", + "discovered": "2024-02-16 22:52:42.856478" + }, + { + "post_title": "LoanDepot", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:46.818516" + }, + { + "post_title": "Prudential Financial", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:47.887716" + }, + { + "post_title": "CP Communications", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:03.845908" + }, + { + "post_title": "PSI", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:04.837682" + }, + { + "post_title": "Wapiti Energy", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:55.451029" + }, + { + "post_title": "BS&B Safety Systems L.L.C", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:56.663577" + }, + { + "post_title": "Chicago Zoological Society", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:57.526649" + }, + { + "post_title": "Aftrp", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:03.619959" + }, + { + "post_title": "Voice Technologies", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:04.573653" + }, + { + "post_title": "Tiete Automobile", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:06.193735" + }, + { + "post_title": "Greater Napanee", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:07.422713" + }, + { + "post_title": "ACS", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:08.409699" + }, + { + "post_title": "VSP Dental", + "group_name": "alphv", + "discovered": "2024-02-18 01:05:28.627117" + }, + { + "post_title": "bucher-strauss.ch", + "group_name": "lockbit3", + "discovered": "2024-02-18 14:44:27.030435" + }, + { + "post_title": "Bimbo Bakeries", + "group_name": "medusa", + "discovered": "2024-02-18 18:41:44.245288" + }, + { + "post_title": "carlfischer.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 21:35:08.534439" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 22:54:55.183234" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:48.182932" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:55.839595" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:56.811163" + }, + { + "post_title": "First Professional Services", + "group_name": "bianlian", + "discovered": "2024-02-19 10:50:35.559705" + }, + { + "post_title": "se.com\\$$33.5B\\France\\1.5TB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 12:44:15.724534" + }, + { + "post_title": "BandB Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:02.080364" + }, + { + "post_title": "Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:03.015026" + }, + { + "post_title": "soco.be", + "group_name": "lockbit3", + "discovered": "2024-02-19 19:48:28.225069" + }, + { + "post_title": "http://www.loransrl.net", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:27.821509" + }, + { + "post_title": "http://conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:28.830243" + }, + { + "post_title": "http://kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:30.240075" + }, + { + "post_title": "http://giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:31.302498" + }, + { + "post_title": "http://zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.115956" + }, + { + "post_title": "http://www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.947379" + }, + { + "post_title": "http://www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:33.883185" + }, + { + "post_title": "http://www.mordfin.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:34.816481" + }, + { + "post_title": "http:// neafidi.it", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:36.190623" + }, + { + "post_title": "http://www.projects-world.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.063801" + }, + { + "post_title": "http://www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.946740" + }, + { + "post_title": "http://www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:38.843441" + }, + { + "post_title": "http://www.halleonard.com.au", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:39.666402" + }, + { + "post_title": "http://https://www.molnar-bischof.de/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:40.439645" + }, + { + "post_title": "http://corinthcoke.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:41.448645" + }, + { + "post_title": "http://EPS.RS", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:42.241643" + }, + { + "post_title": "http://neurocnv.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:43.058652" + }, + { + "post_title": "http://www.warepet.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.067410" + }, + { + "post_title": "http://yanfeng.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.891706" + }, + { + "post_title": "http://haesungds.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:46.087979" } ] \ No newline at end of file From 4828f574993498bfa13734c0cb3509de40aacc4e Mon Sep 17 00:00:00 2001 From: rbozburun Date: Mon, 26 Feb 2024 23:24:20 +0300 Subject: [PATCH 09/10] updated --- src/activitiesRansomData.json | 1105 +++++++++++++++++++++++++++++++++ 1 file changed, 1105 insertions(+) diff --git a/src/activitiesRansomData.json b/src/activitiesRansomData.json index 35db80b..ca173ef 100644 --- a/src/activitiesRansomData.json +++ b/src/activitiesRansomData.json @@ -50173,5 +50173,1110 @@ "post_title": "http://haesungds.com", "group_name": "qilin", "discovered": "2024-02-19 22:32:46.087979" + }, + { + "post_title": "Press Releases", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:32.895980" + }, + { + "post_title": "LB Backend Leaks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:33.938626" + }, + { + "post_title": "Lockbitsupp", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:34.754863" + }, + { + "post_title": "Who is LockbitSupp?", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:36.107675" + }, + { + "post_title": "Lockbit Decryption Keys", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:37.096580" + }, + { + "post_title": "Recovery Tool", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:38.317190" + }, + { + "post_title": "US Indictments", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:39.192747" + }, + { + "post_title": "Sanctions", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:40.572137" + }, + { + "post_title": "Arrest in Poland", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:41.587166" + }, + { + "post_title": "Activity in Ukraine", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:42.601902" + }, + { + "post_title": "Report Cyber Attacks!", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:43.353386" + }, + { + "post_title": "Cyber Choices", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:44.234563" + }, + { + "post_title": "StealBit down!", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:45.102384" + }, + { + "post_title": "Affiliate infrastructure down", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:46.149785" + }, + { + "post_title": "Lockbit's Hackers exposed", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:47.234758" + }, + { + "post_title": "Prodaft", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:49.508517" + }, + { + "post_title": "Affiliate Leaks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:50.361099" + }, + { + "post_title": "Account Closures", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:51.461561" + }, + { + "post_title": "Lockbit's new encryptor", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:52.980146" + }, + { + "post_title": "Secureworks", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:54.030912" + }, + { + "post_title": "Lockbit Crypto", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:54.964808" + }, + { + "post_title": "Closure", + "group_name": "lockbit3", + "discovered": "2024-02-20 12:53:56.158497" + }, + { + "post_title": "Finlay Screening & Crushing Systems", + "group_name": "hunters", + "discovered": "2024-02-20 12:54:10.336076" + }, + { + "post_title": "advancedprosolutions.com\\$5M\\USA\\54GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-20 13:44:18.034771" + }, + { + "post_title": "Raocala", + "group_name": "everest", + "discovered": "2024-02-20 14:32:38.704949" + }, + { + "post_title": "River Delta Unified School District", + "group_name": "meow", + "discovered": "2024-02-20 18:45:25.964568" + }, + { + "post_title": "ad.bennetts.com.au", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ad.jamailconstruction.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ah-babelsberg.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "alhajery.com.kw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "arcelor-sztg.hu", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ats.lab", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "auras.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "barcelona.jbc.es", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bbst.clp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "billycraiginsurance.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bredinprat.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "bredinprat.fr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cachibi.com.co", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "castro.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cczstattonequities.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cepi.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ceratube.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cheyenne.k12.ok.us", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "christianvillage.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "cobbengr.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "comune.crispiano.ta.it", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.fehrs.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.keypoint.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "corp.kuwaitairways.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "coteg-toulouse.dom", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "crich.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dgimali.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dmn-vitalprev.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "domain.itsoft.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "dsoler.soler.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "edgoldner.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "edtec.biz", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "equisfg.efg", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "etggs.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "expeditors.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fmc.ar", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fsd.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fupite.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "fusesandliberty.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "genpl.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "gla.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "gov.oak-brook.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hinaka.corp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hkdm1.wik", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hlc.bike", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "holding.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "honsha.hanshin-dp.co.jp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hotelluzeiros.fla.br", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hsvgroup.com.vn", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "hxlife.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ikkgroup.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "incegd.com_inces.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "inces.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "intern.liceubarcelona.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "intranet.hoffsuemmer.de", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ismea.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "it-root.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "janspec.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "jps.cr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "kmalawfirm.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "knx.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "lapostermobile.fr", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "litto.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "logistia.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "magnar-eikeland.no", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "malle.clozdloop.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mandiantyellowpress.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "medman.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "meritservices.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mfidallas.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mkbrokers.fin", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "moci.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ms-hosted-tse.priv", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "murrays.cheese.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "mypolyplastics.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "northernins.ca", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "nwtf-ho.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "office.athesis.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "opt.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "optimissa.into", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "orchestra.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "plumascounty.countyofplumas.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "poultry.loc", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "prairie.prairiesedgecasino.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "prefimetal.int", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ptilhk.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "reust.ads", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "roma.enit", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "rosslare.com.hk2", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "sbc.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "securedoffers.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "sefnet.rj", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "smd.shimamura.gr.jp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "smjcorp.net", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "soenen-golfkarton.lan", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "spherechina.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "stairs.rintal.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "stocker.ora", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "teleprocorp.com.mx", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "terminal.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "tojin.com.tw", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "unified-it.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "vvrmc.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "whse.iibg.ca", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "wolfbergalvarez.corp", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "workcrossing.it", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "worldnetlogistics.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "wsretailers.com", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "ymcawashdc.org", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "zentrumdreilinden.ch", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "zgoda.ad", + "group_name": "lockbit3_fs", + "discovered": "2024-01-01 01:01:01.000000" + }, + { + "post_title": "westward360.com", + "group_name": "dragonforce", + "discovered": "2024-02-21 10:38:18.216526" + }, + { + "post_title": "compressionleasing.com", + "group_name": "dragonforce", + "discovered": "2024-02-21 10:38:18.249818" + }, + { + "post_title": "https://www.infinitiusa.com", + "group_name": "mogilevich", + "discovered": "2024-02-20 22:36:32.957405" + }, + { + "post_title": "Acies Srl", + "group_name": "8base", + "discovered": "2024-02-21 01:58:45.150889" + }, + { + "post_title": "Axel Johnson", + "group_name": "8base", + "discovered": "2024-02-21 01:58:46.253389" + }, + { + "post_title": "Helical Technology", + "group_name": "8base", + "discovered": "2024-02-21 01:58:47.666497" + }, + { + "post_title": "doneff.com", + "group_name": "threeam", + "discovered": "2024-02-21 07:40:00.030813" + }, + { + "post_title": "[EN]", + "group_name": "blackbasta", + "discovered": "2024-02-21 11:43:52.418567" + }, + { + "post_title": "Austen Consultants", + "group_name": "alphv", + "discovered": "2024-02-21 14:44:00.508466" + }, + { + "post_title": "Marchassociates", + "group_name": "bianlian", + "discovered": "2024-02-21 15:41:54.626943" + }, + { + "post_title": "HRTec Inc", + "group_name": "bianlian", + "discovered": "2024-02-21 15:41:55.802572" + }, + { + "post_title": "Rewards for Reporting", + "group_name": "lockbit3", + "discovered": "2024-02-21 16:43:02.495162" + }, + { + "post_title": "Desarrollo De Tecnol ogia y Sistemas Ltda", + "group_name": "akira", + "discovered": "2024-02-21 16:43:10.178353" + }, + { + "post_title": "Lancaster", + "group_name": "akira", + "discovered": "2024-02-21 16:43:12.353811" + }, + { + "post_title": "KHSS (You have 3 days)", + "group_name": "alphv", + "discovered": "2024-02-21 20:33:47.558940" + }, + { + "post_title": "FR arrest warrants", + "group_name": "lockbit3", + "discovered": "2024-02-21 20:33:51.105661" + }, + { + "post_title": "Worthen Industries [We're giving you one last chance to save your business]", + "group_name": "alphv", + "discovered": "2024-02-22 02:47:28.191606" + }, + { + "post_title": "ZircoDATA", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:39.889494" + }, + { + "post_title": "Dilweg", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:40.928589" + }, + { + "post_title": "Birchall Foodservice", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:41.587982" + }, + { + "post_title": "US Merchants", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:42.274257" + }, + { + "post_title": "Climatech Inc", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:43.086048" + }, + { + "post_title": "New York Law Firm with a National Presence", + "group_name": "blackbasta", + "discovered": "2024-02-22 09:37:43.875214" + }, + { + "post_title": "Hardeman County Community Health Center", + "group_name": "alphv", + "discovered": "2024-02-22 11:36:35.682324" + }, + { + "post_title": "PEER Consultants", + "group_name": "akira", + "discovered": "2024-02-22 13:40:10.119133" + }, + { + "post_title": "abcor.com.au", + "group_name": "threeam", + "discovered": "2024-02-22 13:40:16.525421" + }, + { + "post_title": "mtmrobotics.com", + "group_name": "threeam", + "discovered": "2024-02-22 13:40:17.391241" + }, + { + "post_title": "Quik Pawn Shop", + "group_name": "akira", + "discovered": "2024-02-22 16:48:08.561742" + }, + { + "post_title": "http://unique-relations.at", + "group_name": "qilin", + "discovered": "2024-02-22 17:43:03.625005" + }, + { + "post_title": "W???h?", + "group_name": "play", + "discovered": "2024-02-22 23:40:12.587621" + }, + { + "post_title": "C and J Industries, Inc.", + "group_name": "8base", + "discovered": "2024-02-23 01:57:52.611090" + }, + { + "post_title": "ANDFLA SRL", + "group_name": "alphv", + "discovered": "2024-02-23 10:43:29.833150" + }, + { + "post_title": "APEX - apexspedition.de", + "group_name": "monti", + "discovered": "2024-02-23 13:43:09.881679" + }, + { + "post_title": "H*********** *********y **********", + "group_name": "bianlian", + "discovered": "2024-02-23 14:38:48.186808" + }, + { + "post_title": "Pressco Technology", + "group_name": "medusa", + "discovered": "2024-02-23 15:45:48.204399" + }, + { + "post_title": "Acorn", + "group_name": "medusa", + "discovered": "2024-02-23 15:45:49.307646" + }, + { + "post_title": "Rapid Granulator", + "group_name": "ransomhouse", + "discovered": "2024-02-23 18:43:13.012597" + }, + { + "post_title": "remkes.nl\\$31.4M\\Netherlands\\190GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-23 18:43:25.048651" + }, + { + "post_title": "Family Health center", + "group_name": "alphv", + "discovered": "2024-02-23 21:45:36.717474" + }, + { + "post_title": "IJM Corporation", + "group_name": "hunters", + "discovered": "2024-02-23 21:45:52.104412" + }, + { + "post_title": "Welch's", + "group_name": "play", + "discovered": "2024-02-23 23:37:25.442087" + }, + { + "post_title": "Worthen Industries [FULL DATA]", + "group_name": "alphv", + "discovered": "2024-02-24 13:39:26.928623" + }, + { + "post_title": "AL SHEFA FARM", + "group_name": "ransomhub", + "discovered": "2024-02-24 13:39:42.973560" + }, + { + "post_title": "Spine West", + "group_name": "monti", + "discovered": "2024-02-24 14:40:49.679883" + }, + { + "post_title": "http://kinematica.ch", + "group_name": "qilin", + "discovered": "2024-02-24 16:40:14.393131" + }, + { + "post_title": "http://gcherrera.com", + "group_name": "qilin", + "discovered": "2024-02-24 16:40:15.383975" + }, + { + "post_title": "BM Catalysts bmcatalysts.co.uk", + "group_name": "alphalocker", + "discovered": "2024-02-25 10:10:46.495674" + }, + { + "post_title": "fbi.gov", + "group_name": "lockbit3_fs", + "discovered": "2024-02-24 21:53:43.666105" + }, + { + "post_title": "crbgroup.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:45.412895" + }, + { + "post_title": "equilend.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:46.437407" + }, + { + "post_title": "fbi.gov", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:47.374927" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:48.401092" + }, + { + "post_title": "magierp.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:49.517733" + }, + { + "post_title": "nationaldentex.com", + "group_name": "lockbit3new", + "discovered": "2024-02-24 21:53:50.634062" + }, + { + "post_title": "Wangkanai Group", + "group_name": "ransomhouse", + "discovered": "2024-02-24 22:41:34.599893" + }, + { + "post_title": "www.bombaygrills.com", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:32.269585" + }, + { + "post_title": "www.pcmarket.uz", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:35.277497" + }, + { + "post_title": "www.kai.id", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:36.202191" + }, + { + "post_title": "www.delia.pl", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:37.057639" + }, + { + "post_title": "www.calcomp.co.th", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:37.805204" + }, + { + "post_title": "www.Abelsantosyasoc.com.ar", + "group_name": "stormous", + "discovered": "2024-02-25 00:57:38.886896" + }, + { + "post_title": "Roncelli Plastics", + "group_name": "bianlian", + "discovered": "2024-02-25 00:57:42.684042" + }, + { + "post_title": "Dobrowski Stafford and Pierce", + "group_name": "bianlian", + "discovered": "2024-02-25 00:57:43.633942" + }, + { + "post_title": "dunaway.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 12:44:13.512650" + }, + { + "post_title": "http://www.potogoldcoffee.com", + "group_name": "ciphbit", + "discovered": "2024-02-25 17:40:40.633614" + }, + { + "post_title": "AL SHEFA FARM", + "group_name": "ransomhub", + "discovered": "2024-02-25 17:40:42.886146" + }, + { + "post_title": "apeagers.com.au", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:18.994519" + }, + { + "post_title": "groupe-idea.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:20.166274" + }, + { + "post_title": "igs-inc.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:21.538963" + }, + { + "post_title": "mcs360.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:22.758128" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:23.647773" + }, + { + "post_title": "stsaviationgroup.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 20:43:24.373564" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3new", + "discovered": "2024-02-25 22:40:09.681028" + }, + { + "post_title": "ernesthealth.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 11:39:50.609254" + }, + { + "post_title": "silganholdings.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 11:39:51.764310" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 12:41:47.403987" + }, + { + "post_title": "advancedprosolutions.com\\$5M\\USA\\54GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-26 15:39:58.575380" + }, + { + "post_title": "S+C Partners", + "group_name": "alphv", + "discovered": "2024-02-26 16:40:24.072082" + }, + { + "post_title": "Webber International University", + "group_name": "ransomhouse", + "discovered": "2024-02-26 16:40:27.633563" + }, + { + "post_title": "The Professional Liability Fund ", + "group_name": "medusa", + "discovered": "2024-02-26 16:40:34.543567" + }, + { + "post_title": "Southwest Industrial Sales", + "group_name": "medusa", + "discovered": "2024-02-26 16:40:35.341234" + }, + { + "post_title": "silganhodlings.com", + "group_name": "lockbit3new", + "discovered": "2024-02-26 16:40:47.874017" + }, + { + "post_title": "Bjuvs kommun", + "group_name": "akira", + "discovered": "2024-02-26 17:38:01.862506" + }, + { + "post_title": "https://www.bazaarvoice.com", + "group_name": "mogilevich", + "discovered": "2024-02-26 17:38:11.668034" } ] \ No newline at end of file From 7fbfcfe4ad1fc659b6ab7ddbdd89b6372652b61a Mon Sep 17 00:00:00 2001 From: rbozburun Date: Mon, 26 Feb 2024 23:25:03 +0300 Subject: [PATCH 10/10] pulling --- src/activitiesRansomData.json | 50177 ++++++++++++++++++++++++++++++++ 1 file changed, 50177 insertions(+) diff --git a/src/activitiesRansomData.json b/src/activitiesRansomData.json index ca173ef..cfdf61e 100644 --- a/src/activitiesRansomData.json +++ b/src/activitiesRansomData.json @@ -51279,4 +51279,50181 @@ "group_name": "mogilevich", "discovered": "2024-02-26 17:38:11.668034" } +] +[ + { + "post_title": "Windemuller", + "group_name": "lorenz", + "discovered": "2020-01-12 00:00:00.000000" + }, + { + "post_title": "Leaks Company Birch Communications inc.", + "group_name": "ragnarlocker", + "discovered": "2020-06-10 00:00:00.000000" + }, + { + "post_title": "Brunner Announce – Hello World !", + "group_name": "ragnarlocker", + "discovered": "2020-06-11 00:00:00.000000" + }, + { + "post_title": "Leakage from company Catania, Mahon & Rider, PLLC", + "group_name": "ragnarlocker", + "discovered": "2020-06-11 00:00:00.000000" + }, + { + "post_title": "Leaks from company EDP Group", + "group_name": "ragnarlocker", + "discovered": "2020-06-19 00:00:00.000000" + }, + { + "post_title": "Leaks from company Omniga GmbH & Co.", + "group_name": "ragnarlocker", + "discovered": "2020-06-19 00:00:00.000000" + }, + { + "post_title": "Astro Industries, Inc.", + "group_name": "ragnarlocker", + "discovered": "2020-06-22 00:00:00.000000" + }, + { + "post_title": "Bailey&Galyen Attorney at Law", + "group_name": "ragnarlocker", + "discovered": "2020-06-22 00:00:00.000000" + }, + { + "post_title": "GST Autoleather Company !", + "group_name": "ragnarlocker", + "discovered": "2020-06-22 00:00:00.000000" + }, + { + "post_title": "New leaks from SOLTEK PACIFIC", + "group_name": "ragnarlocker", + "discovered": "2020-06-22 00:00:00.000000" + }, + { + "post_title": "ST Engineering", + "group_name": "ragnarlocker", + "discovered": "2020-06-22 00:00:00.000000" + }, + { + "post_title": "Insignia Environmental company.", + "group_name": "ragnarlocker", + "discovered": "2020-07-13 00:00:00.000000" + }, + { + "post_title": "BIOLOGICAL E. Ltd. (BE) LEAK POST", + "group_name": "ragnarlocker", + "discovered": "2020-09-27 00:00:00.000000" + }, + { + "post_title": "Security breach of Campari Group network", + "group_name": "ragnarlocker", + "discovered": "2020-10-08 00:00:00.000000" + }, + { + "post_title": "Security breach of CAPCOM network", + "group_name": "ragnarlocker", + "discovered": "2020-10-20 00:00:00.000000" + }, + { + "post_title": "DASSAULT FALCON JET", + "group_name": "ragnarlocker", + "discovered": "2020-10-30 00:00:00.000000" + }, + { + "post_title": "Official appeal to DASSAULT FALCON JET", + "group_name": "ragnarlocker", + "discovered": "2020-11-01 00:00:00.000000" + }, + { + "post_title": "LEAK Post CAPCOM", + "group_name": "ragnarlocker", + "discovered": "2020-11-08 00:00:00.000000" + }, + { + "post_title": "LEAK post FINSA", + "group_name": "ragnarlocker", + "discovered": "2020-11-08 00:00:00.000000" + }, + { + "post_title": "Ragnar_Team Announce of Potential \"WallofShamer\"", + "group_name": "ragnarlocker", + "discovered": "2020-11-10 00:00:00.000000" + }, + { + "post_title": "New Files For Leak Campari Post", + "group_name": "ragnarlocker", + "discovered": "2020-11-30 00:00:00.000000" + }, + { + "post_title": "JMA Energy LEAK", + "group_name": "ragnarlocker", + "discovered": "2020-12-05 00:00:00.000000" + }, + { + "post_title": "Shasun Chemicals & Drugs Ltd. LEAK", + "group_name": "ragnarlocker", + "discovered": "2020-12-06 00:00:00.000000" + }, + { + "post_title": "LEAK Post Campari Group", + "group_name": "ragnarlocker", + "discovered": "2020-12-10 00:00:00.000000" + }, + { + "post_title": "New \"WallofShamer\" - East Coast Seafood Inc.", + "group_name": "ragnarlocker", + "discovered": "2020-12-10 00:00:00.000000" + }, + { + "post_title": "Updates with files in EastCoastSeafood Inc.", + "group_name": "ragnarlocker", + "discovered": "2020-12-10 00:00:00.000000" + }, + { + "post_title": "Advertising Material: Forest Construction Leaked", + "group_name": "ragnarlocker", + "discovered": "2020-12-12 00:00:00.000000" + }, + { + "post_title": "Attention, Dassault Falcon Jet updated", + "group_name": "ragnarlocker", + "discovered": "2020-12-13 00:00:00.000000" + }, + { + "post_title": "Cornerstone-BB Group Leaked", + "group_name": "ragnarlocker", + "discovered": "2020-12-14 00:00:00.000000" + }, + { + "post_title": "Kaye/Bassman International - New \"Wall of Shamer\"", + "group_name": "ragnarlocker", + "discovered": "2020-12-18 00:00:00.000000" + }, + { + "post_title": "Commport Communications", + "group_name": "lorenz", + "discovered": "2020-12-20 00:00:00.000000" + }, + { + "post_title": "New Data Leak post from Chemical company", + "group_name": "ragnarlocker", + "discovered": "2020-12-23 00:00:00.000000" + }, + { + "post_title": "Grupo SADA Leak", + "group_name": "ragnarlocker", + "discovered": "2020-12-24 00:00:00.000000" + }, + { + "post_title": "AvosLocker is officially online!", + "group_name": "avoslocker", + "discovered": "2021-01-01 00:00:00.000000" + }, + { + "post_title": "Multifeeder", + "group_name": "lorenz", + "discovered": "2021-01-10 00:00:00.000000" + }, + { + "post_title": "Ludwig Pfeiffer Leaked", + "group_name": "ragnarlocker", + "discovered": "2021-01-26 00:00:00.000000" + }, + { + "post_title": "Webhelp's company - XtraSource", + "group_name": "ragnarlocker", + "discovered": "2021-02-08 00:00:00.000000" + }, + { + "post_title": "The managementtrust", + "group_name": "lorenz", + "discovered": "2021-02-11 00:00:00.000000" + }, + { + "post_title": "Bases Conversion and Development Authority (BCDA)", + "group_name": "lorenz", + "discovered": "2021-04-01 00:00:00.000000" + }, + { + "post_title": "Tygavac ltd.", + "group_name": "lorenz", + "discovered": "2021-04-01 00:00:00.000000" + }, + { + "post_title": "Wolfe Eye Clinic", + "group_name": "lorenz", + "discovered": "2021-04-01 00:00:00.000000" + }, + { + "post_title": "Joy Cone", + "group_name": "lorenz", + "discovered": "2021-04-11 00:00:00.000000" + }, + { + "post_title": "DNS Toptech", + "group_name": "lorenz", + "discovered": "2021-04-13 00:00:00.000000" + }, + { + "post_title": "Airtech Advanced Materials Group", + "group_name": "lorenz", + "discovered": "2021-04-29 00:00:00.000000" + }, + { + "post_title": "NAVNIT GROUP", + "group_name": "xinglocker", + "discovered": "2021-04-29 00:00:00.000000" + }, + { + "post_title": "Pezzuto Group", + "group_name": "xinglocker", + "discovered": "2021-04-29 00:00:00.000000" + }, + { + "post_title": "Bridgelux, Inc.", + "group_name": "xinglocker", + "discovered": "2021-05-06 00:00:00.000000" + }, + { + "post_title": "GlobeMed Saudi", + "group_name": "xinglocker", + "discovered": "2021-05-06 00:00:00.000000" + }, + { + "post_title": "Washoe Tribe", + "group_name": "xinglocker", + "discovered": "2021-05-06 00:00:00.000000" + }, + { + "post_title": "Challenge Manufacturing Company", + "group_name": "lorenz", + "discovered": "2021-05-11 00:00:00.000000" + }, + { + "post_title": "Gulfeagle Supply", + "group_name": "xinglocker", + "discovered": "2021-05-11 00:00:00.000000" + }, + { + "post_title": "Desert Plastering LLC", + "group_name": "xinglocker", + "discovered": "2021-05-13 00:00:00.000000" + }, + { + "post_title": "CBN Logistic", + "group_name": "xinglocker", + "discovered": "2021-05-14 00:00:00.000000" + }, + { + "post_title": "LineStar", + "group_name": "xinglocker", + "discovered": "2021-05-14 00:00:00.000000" + }, + { + "post_title": "Solen A.S", + "group_name": "xinglocker", + "discovered": "2021-05-14 00:00:00.000000" + }, + { + "post_title": "OSF Healthcare System", + "group_name": "xinglocker", + "discovered": "2021-05-18 00:00:00.000000" + }, + { + "post_title": "Coastal Family Health Center", + "group_name": "xinglocker", + "discovered": "2021-05-24 00:00:00.000000" + }, + { + "post_title": "T.I.S. Group", + "group_name": "xinglocker", + "discovered": "2021-05-24 00:00:00.000000" + }, + { + "post_title": "ADATA LEAKED", + "group_name": "ragnarlocker", + "discovered": "2021-05-25 00:00:00.000000" + }, + { + "post_title": "NEW Links for ADATA", + "group_name": "ragnarlocker", + "discovered": "2021-05-26 00:00:00.000000" + }, + { + "post_title": "Sharafi Group Investments", + "group_name": "xinglocker", + "discovered": "2021-05-27 00:00:00.000000" + }, + { + "post_title": "Langs Building Supplies Pty Ltd", + "group_name": "lorenz", + "discovered": "2021-06-01 00:00:00.000000" + }, + { + "post_title": "AQUALUNG", + "group_name": "xinglocker", + "discovered": "2021-06-02 00:00:00.000000" + }, + { + "post_title": "Positive Promotions, Inc.", + "group_name": "xinglocker", + "discovered": "2021-06-02 00:00:00.000000" + }, + { + "post_title": "Greenwood Fabricating & Plating", + "group_name": "xinglocker", + "discovered": "2021-06-03 00:00:00.000000" + }, + { + "post_title": "New Leak GatewayPM", + "group_name": "ragnarlocker", + "discovered": "2021-06-05 00:00:00.000000" + }, + { + "post_title": "Software company Xoriant", + "group_name": "ragnarlocker", + "discovered": "2021-06-06 00:00:00.000000" + }, + { + "post_title": "Arabian Cargo Group", + "group_name": "avoslocker", + "discovered": "2021-06-13 00:00:00.000000" + }, + { + "post_title": "Heller Injury Lawyers", + "group_name": "avoslocker", + "discovered": "2021-06-13 00:00:00.000000" + }, + { + "post_title": "Geneva, Ohio", + "group_name": "avoslocker", + "discovered": "2021-06-18 00:00:00.000000" + }, + { + "post_title": "GATEWAY Property Management", + "group_name": "ragnarlocker", + "discovered": "2021-06-23 00:00:00.000000" + }, + { + "post_title": "Buchanan Hauling & Rigging", + "group_name": "lorenz", + "discovered": "2021-06-24 00:00:00.000000" + }, + { + "post_title": "Announcement: FTP", + "group_name": "ragnarlocker", + "discovered": "2021-07-01 00:00:00.000000" + }, + { + "post_title": "DiaSorin", + "group_name": "xinglocker", + "discovered": "2021-07-08 00:00:00.000000" + }, + { + "post_title": "MPS Credit Union", + "group_name": "lorenz", + "discovered": "2021-07-27 00:00:00.000000" + }, + { + "post_title": "Miller-Valentine Group", + "group_name": "lorenz", + "discovered": "2021-07-29 00:00:00.000000" + }, + { + "post_title": "Mauck & Baker", + "group_name": "avoslocker", + "discovered": "2021-08-05 00:00:00.000000" + }, + { + "post_title": "Sebastian", + "group_name": "lorenz", + "discovered": "2021-08-10 00:00:00.000000" + }, + { + "post_title": "J.Irwin Company", + "group_name": "xinglocker", + "discovered": "2021-08-17 00:00:00.000000" + }, + { + "post_title": "Gimmler Gruppe", + "group_name": "avoslocker", + "discovered": "2021-08-19 00:00:00.000000" + }, + { + "post_title": "SoftwareDesign Consulting Group", + "group_name": "avoslocker", + "discovered": "2021-08-19 00:00:00.000000" + }, + { + "post_title": "Artas Holding / Artas Insaat", + "group_name": "avoslocker", + "discovered": "2021-08-28 00:00:00.000000" + }, + { + "post_title": "Coghlin Electrical Contractors", + "group_name": "avoslocker", + "discovered": "2021-08-28 00:00:00.000000" + }, + { + "post_title": "Home in Brussels", + "group_name": "avoslocker", + "discovered": "2021-08-28 00:00:00.000000" + }, + { + "post_title": "On logistics Services Algeciras, S.L", + "group_name": "avoslocker", + "discovered": "2021-08-28 00:00:00.000000" + }, + { + "post_title": "Master Chemical", + "group_name": "avoslocker", + "discovered": "2021-08-29 00:00:00.000000" + }, + { + "post_title": "Moorfields NHS UK & Dubai", + "group_name": "avoslocker", + "discovered": "2021-09-01 00:00:00.000000" + }, + { + "post_title": "Potter Concrete", + "group_name": "avoslocker", + "discovered": "2021-09-01 00:00:00.000000" + }, + { + "post_title": "Pacific City Bank", + "group_name": "avoslocker", + "discovered": "2021-09-04 00:00:00.000000" + }, + { + "post_title": "Cornerstone Automation Systems, LLC", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "elitemate.com", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "hammer-poznan.p...", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "hancockassociat...", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "jockeyclub.org....", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "Maple Lodge Farms", + "group_name": "quantum", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "paramountme.com", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "snapmga.com", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "SVA Jean Rozé - sva-jeanroze.fr", + "group_name": "alphv", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "universalwindow...", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:46:53.997398" + }, + { + "post_title": "PRP diagnostic imaging", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:53.998475" + }, + { + "post_title": "JSW Steel USA", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:53.999550" + }, + { + "post_title": "SB Zantal Markt", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.000366" + }, + { + "post_title": "Dean and Fulkerson", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.001042" + }, + { + "post_title": "AGSO", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.001739" + }, + { + "post_title": "Mark A. O'neal and Associates", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.002392" + }, + { + "post_title": "Grushwitz", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.003056" + }, + { + "post_title": "Glen Dimplex Home Appliances", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.003724" + }, + { + "post_title": "Tri-signal Intergration", + "group_name": "suncrypt", + "discovered": "2021-09-09 23:46:54.004516" + }, + { + "post_title": "T-Mobile", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.072767" + }, + { + "post_title": "For Press", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.074002" + }, + { + "post_title": "Leiden University Hacked", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.075138" + }, + { + "post_title": "UtAir", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.076171" + }, + { + "post_title": "RockYou2021", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.077248" + }, + { + "post_title": "Beh Pardakht Mellat Cards", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.078223" + }, + { + "post_title": "Etoudplus.ir", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.079237" + }, + { + "post_title": "33M Bank Mellat – Iran", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.080558" + }, + { + "post_title": "CardPayPortal", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.081797" + }, + { + "post_title": "USA 280M", + "group_name": "arvinclub", + "discovered": "2021-09-09 23:46:54.083030" + }, + { + "post_title": "Accounts IQ", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.119301" + }, + { + "post_title": "Imperial Printing and Paper Box Mfg", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.120939" + }, + { + "post_title": "Inventec Appliances Corp", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.122190" + }, + { + "post_title": "Syndex", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.123550" + }, + { + "post_title": "LE VOLCAN", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.125417" + }, + { + "post_title": "Buckeye International Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.126570" + }, + { + "post_title": "Carlos Federspiel & Co SA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.127644" + }, + { + "post_title": "Johann Kupp GmbH & Co. KG", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.128729" + }, + { + "post_title": "Servilex Advocaten", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.129806" + }, + { + "post_title": "Ballas Capital Limited", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.130881" + }, + { + "post_title": "FEBANCOLOMBIA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.131963" + }, + { + "post_title": "Cube Audit Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.133166" + }, + { + "post_title": "Halwani Bros Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.134323" + }, + { + "post_title": "Rate Rabbit Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.135443" + }, + { + "post_title": "JetSJ", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.136546" + }, + { + "post_title": "Maryan beachwear group GmbH", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.137769" + }, + { + "post_title": "360 InStore", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.139068" + }, + { + "post_title": "PKMK law&finance s.r.o", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.140639" + }, + { + "post_title": "Solvere LLC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.142017" + }, + { + "post_title": "RINGSPANN GmbH", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.143324" + }, + { + "post_title": "AXA Group", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.144622" + }, + { + "post_title": "EVGA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.145890" + }, + { + "post_title": "Vistex", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.147121" + }, + { + "post_title": "Letton Percival", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.148302" + }, + { + "post_title": "SL Corporation", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.149501" + }, + { + "post_title": "Henry Oil & Gas", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.150712" + }, + { + "post_title": "PT Angkasa Pura I", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.151924" + }, + { + "post_title": "ACER FINANCE", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.153262" + }, + { + "post_title": "NIJMAN / ZEETANK International Transport Sp. z o. o.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.154668" + }, + { + "post_title": "MEGAPOLIS HOLDINGS (OVERSEAS) LIMITED", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.156158" + }, + { + "post_title": "DOCTUM PHARMACEUTICAL Κ. T. YIOKARIS & CO S.A.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.157773" + }, + { + "post_title": "ULTRACEUTICALS PTY LIMITED", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.159484" + }, + { + "post_title": "Coindu", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.160990" + }, + { + "post_title": "TAIWAN SURFACE MOUNTING TECHNOLOGY CORP.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.162379" + }, + { + "post_title": "Cinov Federation", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.163775" + }, + { + "post_title": "Glasbau Wiedemann GmbH", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.165064" + }, + { + "post_title": "Cocal", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.166442" + }, + { + "post_title": "SPINE & DISC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.167915" + }, + { + "post_title": "EUROMAIS - PEÇAS E PNEUS, LDA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.169316" + }, + { + "post_title": "Schepisi Communications", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.170705" + }, + { + "post_title": "LG Vina Chemical", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.172137" + }, + { + "post_title": "Diacom", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.173548" + }, + { + "post_title": "Construct", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.175389" + }, + { + "post_title": "MEDUNA vakuová kalírna s.r.o", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.176896" + }, + { + "post_title": "SC TECHNOSEAL SERVICES SRL", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.178466" + }, + { + "post_title": "Farrells", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.179911" + }, + { + "post_title": "CNE", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.181342" + }, + { + "post_title": "COMUNE DI VILLAFRANCA D'ASTI", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.182981" + }, + { + "post_title": "Newcomb Secondary College", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.184580" + }, + { + "post_title": "MUNICIPIO DE QUATRO BARRAS", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.186084" + }, + { + "post_title": "OLOMOUC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.187657" + }, + { + "post_title": "Cathar Games", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.189476" + }, + { + "post_title": "Partit Nazzjonalista", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.191395" + }, + { + "post_title": "Innovative Office Solutions LLC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.193136" + }, + { + "post_title": "ADUANAS Y SERVICIOS FORNESA SL", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.194654" + }, + { + "post_title": "Presque Isle Police Department", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.196138" + }, + { + "post_title": "CJ Selecta S/A", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.197613" + }, + { + "post_title": "Greatwide Truckload", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.199258" + }, + { + "post_title": "Hames Homes LLC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.200805" + }, + { + "post_title": "MSPharma", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.202337" + }, + { + "post_title": "Active Business & Technology", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.203854" + }, + { + "post_title": "Exedy Corporation", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.205372" + }, + { + "post_title": "BIANCHI VENDING", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.206880" + }, + { + "post_title": "Dicon Fiberoptics Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.208448" + }, + { + "post_title": "Logixal", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.209973" + }, + { + "post_title": "EROWA LTD", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.211478" + }, + { + "post_title": "DBMSC Steel", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.212911" + }, + { + "post_title": "Coburn Supply Company , Inc.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.214327" + }, + { + "post_title": "Aldes", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.215673" + }, + { + "post_title": "B.W. Wilson Paper", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.217036" + }, + { + "post_title": "MITCHAM INDUSTRIES INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.218541" + }, + { + "post_title": "HealthCare Global Enterprises Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.220207" + }, + { + "post_title": "ASBIS CZ, spol. s r.o.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.221732" + }, + { + "post_title": "Cambridge Weight Plan Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.223392" + }, + { + "post_title": "Grupo Prilux", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.225151" + }, + { + "post_title": "Município de Constância", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.226765" + }, + { + "post_title": "Indonesia Infrastructure Guarantee Fund", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.228442" + }, + { + "post_title": "BDhouse", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.230215" + }, + { + "post_title": "CERINNOV, UNIPESSOAL, LDA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.231882" + }, + { + "post_title": "ALIZON", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.233508" + }, + { + "post_title": "Gorzynski", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.235054" + }, + { + "post_title": "Millwright Regional Council of Ontario", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.236723" + }, + { + "post_title": "SOVRIN PLASTICS LIMITED", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.238451" + }, + { + "post_title": "BRIDGEWAY SENIOR HEALTHCARE", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.240080" + }, + { + "post_title": "Steel Art Signs Corp.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.241874" + }, + { + "post_title": "Targetcom", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.243563" + }, + { + "post_title": "Basque Center for Applied Mathematics-BCAM", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.245108" + }, + { + "post_title": "Mikro Trading", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.246680" + }, + { + "post_title": "Schneider & Branch", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.248321" + }, + { + "post_title": "Zhuhai Languan Electronic Technology Co., Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.249992" + }, + { + "post_title": "AlohaABA", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.251840" + }, + { + "post_title": "SISCONT", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.253656" + }, + { + "post_title": "La compagnie du SAV", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.255693" + }, + { + "post_title": "ANLEC R&D", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.257736" + }, + { + "post_title": "FUTURIMPLANTS", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.259618" + }, + { + "post_title": "Omni Manufacturing, Inc.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.261493" + }, + { + "post_title": "Doré Law Group P.C", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.263477" + }, + { + "post_title": "CASHMAG", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.265606" + }, + { + "post_title": "CELL Foods Inc.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.267746" + }, + { + "post_title": "Prefeitura Municipal de Saquarema", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.270110" + }, + { + "post_title": "Party Rental LTD", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.272300" + }, + { + "post_title": "VERIHA TRUCKING INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.274414" + }, + { + "post_title": "Grand Power Systems", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.276369" + }, + { + "post_title": "Carnegie Wave Energy", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.278245" + }, + { + "post_title": "JFC International (Europe)", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.280123" + }, + { + "post_title": "Mullins Food Products Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.282004" + }, + { + "post_title": "The Capital Medical Center", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.284077" + }, + { + "post_title": "UNIVERSAL ACCOUNTING SERVICES INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.286213" + }, + { + "post_title": "SVI ASSURANCES", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.288314" + }, + { + "post_title": "MundoFertil", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.290653" + }, + { + "post_title": "Elite Software Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.292980" + }, + { + "post_title": "BEE LINE LOGISTICS, INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.295043" + }, + { + "post_title": "KEITH MACHINERY CORP.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.297263" + }, + { + "post_title": "Hardy Buoys Smoked Fish Inc.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.299374" + }, + { + "post_title": "FBL Advogados", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.301398" + }, + { + "post_title": "Somerset ISD", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.303423" + }, + { + "post_title": "Groupe Qualinet Inc.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.305446" + }, + { + "post_title": "VAUGHN CONCRETE PRODUCTS, INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.307510" + }, + { + "post_title": "PT Asuransi Bintang Tbk", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.309600" + }, + { + "post_title": "American Heart of Poland Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.311787" + }, + { + "post_title": "Allanasons Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.313923" + }, + { + "post_title": "MK-Technik", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.315989" + }, + { + "post_title": "BIOREP TECHNOLOGIES, INC.", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.318341" + }, + { + "post_title": "Finalyse", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.320757" + }, + { + "post_title": "Marolles-en-Brie", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.323264" + }, + { + "post_title": "International Longshore & Warehouse Union", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.325683" + }, + { + "post_title": "Payzant Building Products Ltd", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.328540" + }, + { + "post_title": "Intensive Care On-Line Network , Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.330738" + }, + { + "post_title": "NetVigour Inc", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.332947" + }, + { + "post_title": "Garvin Promotion Group, LLC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.335218" + }, + { + "post_title": "AHT Global", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.337471" + }, + { + "post_title": "KOE", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.339854" + }, + { + "post_title": "Dade City Florida", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.342223" + }, + { + "post_title": "Monterey Bay Air Resources District", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.344531" + }, + { + "post_title": "National AIDS Control Council", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.346805" + }, + { + "post_title": "Brown Robert LLP", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.349203" + }, + { + "post_title": "American Bank Systems INC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.351970" + }, + { + "post_title": "Lonrho", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.354529" + }, + { + "post_title": "J.C. Cannistraro", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.357648" + }, + { + "post_title": "Golden Aluminum", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.360438" + }, + { + "post_title": "Sky Leasing, LLC", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.362903" + }, + { + "post_title": "EFCO forms", + "group_name": "avaddon", + "discovered": "2021-09-09 23:46:54.365433" + }, + { + "post_title": "UTILITYTRAILER.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.735001" + }, + { + "post_title": "AUROBINDO.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.749161" + }, + { + "post_title": "SGS-LAW.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.794003" + }, + { + "post_title": "RFF.ORG", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.817355" + }, + { + "post_title": "BOUTINEXPRESS.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.847096" + }, + { + "post_title": "PNCPA.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.901810" + }, + { + "post_title": "SIUMED.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.905649" + }, + { + "post_title": "COLORADO.EDU FILES PART4 PUBLISHED", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.914077" + }, + { + "post_title": "TRAVELSTORE.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.918060" + }, + { + "post_title": "COLORADO.EDU FILES PART1+2+3 PUBLISHED", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.934381" + }, + { + "post_title": "DURHAM.CA", + "group_name": "clop", + "discovered": "2021-09-09 23:46:54.980059" + }, + { + "post_title": "NIPRO.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.035839" + }, + { + "post_title": "YU.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.063555" + }, + { + "post_title": "SHELL.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.068004" + }, + { + "post_title": "UNIVERSITYOFCALIFORNIA.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.072297" + }, + { + "post_title": "RACETRAC.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.076522" + }, + { + "post_title": "STANFORD.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.080765" + }, + { + "post_title": "UMD.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.084993" + }, + { + "post_title": "MMOSER.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.094405" + }, + { + "post_title": "MARNELLCOMPANIES.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.103330" + }, + { + "post_title": "MIAMI.EDU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.113135" + }, + { + "post_title": "EDAG.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.136164" + }, + { + "post_title": "WRIGHT.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.162310" + }, + { + "post_title": "QUALYS.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.166404" + }, + { + "post_title": "KINZE.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.199828" + }, + { + "post_title": "NOWFOODS.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.203981" + }, + { + "post_title": "CSX.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.208008" + }, + { + "post_title": "FLAGSTAR.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.243003" + }, + { + "post_title": "CSAGROUP.ORG", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.275329" + }, + { + "post_title": "DANAHER.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.307702" + }, + { + "post_title": "STERIS.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.312132" + }, + { + "post_title": "CGG.COM FILES PART3 PUBLISHED", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.316071" + }, + { + "post_title": "TRANSPORT.NSW.GOV.AU", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.320439" + }, + { + "post_title": "BOMBARDIER.COM", + "group_name": "clop", + "discovered": "2021-09-09 23:46:55.325407" + }, + { + "post_title": "ensingerplastics.com", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.344645" + }, + { + "post_title": "South Carolina Legal Services breach", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.349375" + }, + { + "post_title": "lstaff.com / atworksprofessional / atworks.com", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.354072" + }, + { + "post_title": "Primo Water", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.359664" + }, + { + "post_title": "inocean.no / 2000 GB", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.364385" + }, + { + "post_title": "Hx5, LLC", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.368999" + }, + { + "post_title": "Daylesford - BHoldings - Bamford - The Wild Rabbit", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.373636" + }, + { + "post_title": "KASEYA ATTACK INFO", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.378430" + }, + { + "post_title": "kuk.de / KREBS + KIEFER / 500GB", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.383358" + }, + { + "post_title": "neroindustry.com", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.388352" + }, + { + "post_title": "Gosiger", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.393853" + }, + { + "post_title": "Möbelstadt Sommerlad", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.398657" + }, + { + "post_title": "Agile Property Holdings", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.403349" + }, + { + "post_title": "angstrom automotive group", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.408132" + }, + { + "post_title": "Iaffaldano, Shaw & Young LLP", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.412701" + }, + { + "post_title": "ENPOL LLC", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.417367" + }, + { + "post_title": "CEC Vibration Products", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.422526" + }, + { + "post_title": "Betenbough Homes", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.427712" + }, + { + "post_title": "Allen, Dyer, Doppelt, & Gilchrist, P.A.", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.432405" + }, + { + "post_title": "Apex America", + "group_name": "revil", + "discovered": "2021-09-09 23:46:55.436963" + }, + { + "post_title": "Orha Muvek", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.460174" + }, + { + "post_title": "Alispharm", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.465538" + }, + { + "post_title": "Tampa Tank INC", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.470418" + }, + { + "post_title": "InfraBuild", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.475437" + }, + { + "post_title": "Weir & Partners LLP / Part 2", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.480080" + }, + { + "post_title": "AIC STEEL", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.484884" + }, + { + "post_title": "Сompilation of lawyers France", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.489747" + }, + { + "post_title": "XEFI / Part 2", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.495468" + }, + { + "post_title": "Cabinet Remy Le Bonnois", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.500676" + }, + { + "post_title": "GROUPE CONFIANCE IMMOBILIER", + "group_name": "everest", + "discovered": "2021-09-09 23:46:55.505622" + }, + { + "post_title": "Decrypt", + "group_name": "ragnarok", + "discovered": "2021-09-09 23:46:55.528557" + }, + { + "post_title": "SOLWARE", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.548120" + }, + { + "post_title": "Hanwha Life Vietnam", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.553535" + }, + { + "post_title": "Duke Manufacturing Co.", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.559445" + }, + { + "post_title": "VIVEA", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.565251" + }, + { + "post_title": "Bob Poynter", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.570413" + }, + { + "post_title": "DEBTIN CONSULTANTS (PTY) LTD", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.575664" + }, + { + "post_title": "completeportables", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.580705" + }, + { + "post_title": "Milwaukee World Festival, Inc", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.585794" + }, + { + "post_title": "world-electronics", + "group_name": "conti", + "discovered": "2021-09-09 23:46:55.591232" + }, + { + "post_title": "My Cloud Star", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.613313" + }, + { + "post_title": "HPW", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.618740" + }, + { + "post_title": "HVAC Facility & Plant Maintenance Tools", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.625312" + }, + { + "post_title": "Danko Emergency Equipment", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.630514" + }, + { + "post_title": "FCS Financial", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.635576" + }, + { + "post_title": "Logansport Community School Corporation", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.640515" + }, + { + "post_title": "Karavan Trailers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.645572" + }, + { + "post_title": "WPSD Local 6", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.650742" + }, + { + "post_title": "LJ Hooker Aspley", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.657226" + }, + { + "post_title": "Famous Supply", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.663364" + }, + { + "post_title": "the NET - Northeast Tennessee Media Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.668509" + }, + { + "post_title": "Bulley", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.673567" + }, + { + "post_title": "Sarmad Steel", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.678704" + }, + { + "post_title": "Vermont Personal Injury Lawyers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.683692" + }, + { + "post_title": "Upstate HomeCare", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.689193" + }, + { + "post_title": "The Fashion Group International", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.694859" + }, + { + "post_title": "OHL Judlau", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.699938" + }, + { + "post_title": "Cyclone Steel", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.705046" + }, + { + "post_title": "Geotechnical Consultants Inc.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.709947" + }, + { + "post_title": "Hyper Microsystems", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.715093" + }, + { + "post_title": "St Bede's College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.719704" + }, + { + "post_title": "Buffalo Schools", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.724908" + }, + { + "post_title": "Aztec Events", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.730159" + }, + { + "post_title": "Alliance Architecture", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.735130" + }, + { + "post_title": "AFP Elevator", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.739880" + }, + { + "post_title": "Zane State College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.744328" + }, + { + "post_title": "Commack Fire Department", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.749307" + }, + { + "post_title": "ATC Transportation", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.755303" + }, + { + "post_title": "Zamora", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.761002" + }, + { + "post_title": "Children's Network of Southwest Florida", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.766309" + }, + { + "post_title": "Dayton Door Sales", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.771381" + }, + { + "post_title": "Drug Alcohol Testing and Screening Compliance in Texas", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.776537" + }, + { + "post_title": "Divorce Lawyer in Reading & Douglassville, PA", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.781802" + }, + { + "post_title": "Worldwide Oilfield Machine", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.787048" + }, + { + "post_title": "Affton School District", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.792719" + }, + { + "post_title": "Gering Public Schools", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.798352" + }, + { + "post_title": "Home Grown Grocery Food Supermarket", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.803516" + }, + { + "post_title": "JVSmith Companies", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.808575" + }, + { + "post_title": "Ciruli Brothers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.813455" + }, + { + "post_title": "Eagle Eye Produce", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.817930" + }, + { + "post_title": "Wiener Laboratorios", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.823273" + }, + { + "post_title": "Legacy Housing Corporation", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.828478" + }, + { + "post_title": "Aireko", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.833604" + }, + { + "post_title": "Grover Corparation", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.838941" + }, + { + "post_title": "Public Restroom Company", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.844407" + }, + { + "post_title": "Marlboro Pediatric Dentistry​", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.849650" + }, + { + "post_title": "Millersville University", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.854659" + }, + { + "post_title": "Immanuel Lutheran Church and School", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.860193" + }, + { + "post_title": "Modern Data Systems", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.865811" + }, + { + "post_title": "Upstate Home Care", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.871479" + }, + { + "post_title": "Levante UD", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.877231" + }, + { + "post_title": "Dale Operating Company", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.882865" + }, + { + "post_title": "Transam Carriers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.888836" + }, + { + "post_title": "Bridgeway Inc", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.895424" + }, + { + "post_title": "City of Covington Louisiana", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.901832" + }, + { + "post_title": "Western Flyer Express", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.907372" + }, + { + "post_title": "Forest City Fire Protection", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.912804" + }, + { + "post_title": "Woodholme Gastroenterology Associates", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.918144" + }, + { + "post_title": "Momentum Transportation", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.924074" + }, + { + "post_title": "Florence-Darlington Technical College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.930055" + }, + { + "post_title": "FirstCash Inc", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.935575" + }, + { + "post_title": "Tenderloin Housing Clinic", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.940896" + }, + { + "post_title": "Paysoft", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.946427" + }, + { + "post_title": "EBSU", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.952290" + }, + { + "post_title": "Repro X-Press", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.959180" + }, + { + "post_title": "BABB Security Systems", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.965549" + }, + { + "post_title": "Ogden Golf & Country Club", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.973555" + }, + { + "post_title": "OnLINE FM", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.980113" + }, + { + "post_title": "A Superior Towing", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.986573" + }, + { + "post_title": "La Châtaigneraie", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.993533" + }, + { + "post_title": "Baldwin Wallace University", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:55.999679" + }, + { + "post_title": "Blackhawk Mining", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.005418" + }, + { + "post_title": "Zionsville Community Schools", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.011210" + }, + { + "post_title": "IDS Online Store", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.016843" + }, + { + "post_title": "Dallas Production", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.023379" + }, + { + "post_title": "D.W. Haber & Son", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.029918" + }, + { + "post_title": "Esteyco", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.035765" + }, + { + "post_title": "American Industrial Felt & Supply, Inc", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.041383" + }, + { + "post_title": "ProSource Wholesale", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.047036" + }, + { + "post_title": "Lo Studio Bartoli & Arveda", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.052895" + }, + { + "post_title": "Prefeitura de Balneário Camboriú", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.059688" + }, + { + "post_title": "Syracuse New Times", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.065484" + }, + { + "post_title": "Siesacloud", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.073473" + }, + { + "post_title": "Plantaciones de Plátano", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.086664" + }, + { + "post_title": "Grant Supplies", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.097574" + }, + { + "post_title": "Viport", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.108522" + }, + { + "post_title": "Powerblanket", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.118994" + }, + { + "post_title": "Brain:IT", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.129467" + }, + { + "post_title": "Fairfax University of America", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.136198" + }, + { + "post_title": "Doak Shirreff Lawyers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.142948" + }, + { + "post_title": "Grand Annecy Agglomeration", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.149422" + }, + { + "post_title": "Cleveland Institute of Music", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.156631" + }, + { + "post_title": "Tucker Oil Company Inc.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.164024" + }, + { + "post_title": "Wolf Lake Industrial Center and Terminals", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.171507" + }, + { + "post_title": "Implanta Spa", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.179859" + }, + { + "post_title": "Peters Bosel Lawyers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.187808" + }, + { + "post_title": "Little Elm", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.197578" + }, + { + "post_title": "Flamingo Horticulture", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.205753" + }, + { + "post_title": "Prairie View A&M University", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.212562" + }, + { + "post_title": "Intecs group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.219597" + }, + { + "post_title": "Wisconsin Public Radio", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.227003" + }, + { + "post_title": "Jebco Agencies Inc.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.234054" + }, + { + "post_title": "Romanoff Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.240709" + }, + { + "post_title": "Neenan Company", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.247292" + }, + { + "post_title": "Bridgwater & Taunton College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.253750" + }, + { + "post_title": "The Bascom", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.261043" + }, + { + "post_title": "Blueknight Energy Partners", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.267961" + }, + { + "post_title": "Østre Toten Kommune Voksenopplring", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.274479" + }, + { + "post_title": "The FitzWimark School", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.280792" + }, + { + "post_title": "DFW Communications,Inc.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.286793" + }, + { + "post_title": "Palos Community Consolidated School District 118", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.293537" + }, + { + "post_title": "CCS", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.300286" + }, + { + "post_title": "Provenza Floors", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.306456" + }, + { + "post_title": "Salesianum School", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.312747" + }, + { + "post_title": "Brookfield Public Schools", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.318880" + }, + { + "post_title": "Thinkware", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.325738" + }, + { + "post_title": "Nama Khoi Municipality", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.332550" + }, + { + "post_title": "Finance Evolution", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.338607" + }, + { + "post_title": "Brickhaus", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.344904" + }, + { + "post_title": "Summit Appliance", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.351804" + }, + { + "post_title": "King Henrys", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.359487" + }, + { + "post_title": "Outwest Express LLC", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.366315" + }, + { + "post_title": "Serinus Energy Plc", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.372904" + }, + { + "post_title": "Mid-Florida Pathology", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.379587" + }, + { + "post_title": "Max. Aarts", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.385675" + }, + { + "post_title": "Torello Moving Strategies", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.392183" + }, + { + "post_title": "St. Mary School Hyde Park", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.398972" + }, + { + "post_title": "Overlake Obstetricians & Gynecologists,PC", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.405119" + }, + { + "post_title": "McKinney", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.411570" + }, + { + "post_title": "Grupo Infoar", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.417818" + }, + { + "post_title": "Bene Ficencia", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.425850" + }, + { + "post_title": "St. Margaret’s Hospice Care", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.432867" + }, + { + "post_title": "Riggins Company", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.439184" + }, + { + "post_title": "Merchant Taylors' School", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.445517" + }, + { + "post_title": "Dayliff", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.452733" + }, + { + "post_title": "Benchmark Family Services", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.460791" + }, + { + "post_title": "Tech 2000", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.467774" + }, + { + "post_title": "Mirai", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.474711" + }, + { + "post_title": "Rontis Medical", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.481307" + }, + { + "post_title": "Gemitchellco", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.487752" + }, + { + "post_title": "Affinity Education", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.494780" + }, + { + "post_title": "Mendes Júnior", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.501494" + }, + { + "post_title": "Bruce Turner", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.507938" + }, + { + "post_title": "Roughrider Internation Ltd.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.514457" + }, + { + "post_title": "Market Pioneer", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.521008" + }, + { + "post_title": "Hackney Council", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.528007" + }, + { + "post_title": "Ayuntamiento de Guadarrama", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.534317" + }, + { + "post_title": "Telhai", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.540831" + }, + { + "post_title": "CWF Group Inc.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.547560" + }, + { + "post_title": "Mongoldford", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.554779" + }, + { + "post_title": "Avelia", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.563182" + }, + { + "post_title": "Econocom", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.569637" + }, + { + "post_title": "Bakers S.A. Limited", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.576068" + }, + { + "post_title": "IQA", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.582562" + }, + { + "post_title": "Winters Independent School District", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.588901" + }, + { + "post_title": "Heartland", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.596099" + }, + { + "post_title": "ASE Bucuresti", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.602901" + }, + { + "post_title": "Rafaela Alimentos", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.609524" + }, + { + "post_title": "CASES", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.615861" + }, + { + "post_title": "Irish Farmers Journals", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.622589" + }, + { + "post_title": "Kuenne Gruppe", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.629736" + }, + { + "post_title": "West Central Foodservice", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.636082" + }, + { + "post_title": "Tor Vergata", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.642601" + }, + { + "post_title": "UCEL", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.649273" + }, + { + "post_title": "Myerscough College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.656377" + }, + { + "post_title": "MK Products", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.664019" + }, + { + "post_title": "Bosley", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.670962" + }, + { + "post_title": "ACE Glass", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.677891" + }, + { + "post_title": "The Teka Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.685253" + }, + { + "post_title": "Nonin Medical", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.693285" + }, + { + "post_title": "Grand Homes", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.700095" + }, + { + "post_title": "Assured Imaging", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.706786" + }, + { + "post_title": "Uxbridge College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.713448" + }, + { + "post_title": "The Seifert Logistics Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.720174" + }, + { + "post_title": "Upper Columbia Academy", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.728599" + }, + { + "post_title": "Dublin", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.735170" + }, + { + "post_title": "The CFC", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.741679" + }, + { + "post_title": "Lindenwold", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.748681" + }, + { + "post_title": "The Sixth Form Bolton", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.756715" + }, + { + "post_title": "The Dantherm Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.764288" + }, + { + "post_title": "Monty Holding Group", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.771226" + }, + { + "post_title": "Illinois Valley Community College", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.777890" + }, + { + "post_title": "Wichita Sheet Metal", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.784478" + }, + { + "post_title": "Alliance Building Services", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.791645" + }, + { + "post_title": "Marseille Provence", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.799163" + }, + { + "post_title": "John Hardy", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.805926" + }, + { + "post_title": "WHSE", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.812763" + }, + { + "post_title": "MCLINC", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.819608" + }, + { + "post_title": "Piedmont Orthopedics | OrthoAtlanta", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.828563" + }, + { + "post_title": "Q3 Academy", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.835492" + }, + { + "post_title": "The Masonic Home of Florida", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.842603" + }, + { + "post_title": "Groupe Lefebvre M.R.P.", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.850427" + }, + { + "post_title": "Cretsenbelledonne", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.859631" + }, + { + "post_title": "Grupocif", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.867381" + }, + { + "post_title": "Noorulislam", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.874668" + }, + { + "post_title": "Ribasalvarez", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.881386" + }, + { + "post_title": "HAC", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.888413" + }, + { + "post_title": "Aebel", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.895721" + }, + { + "post_title": "CDPO", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.902919" + }, + { + "post_title": "Pjfitzpatrick", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.910028" + }, + { + "post_title": "Saludladera", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.917140" + }, + { + "post_title": "Famisanar", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.924551" + }, + { + "post_title": "Poliview", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.931801" + }, + { + "post_title": "Oliviers", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.938389" + }, + { + "post_title": "Matthews", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.945073" + }, + { + "post_title": "Fincamex", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.952513" + }, + { + "post_title": "Allard", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.960415" + }, + { + "post_title": "Diamond Box", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.968871" + }, + { + "post_title": "Faic", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.975745" + }, + { + "post_title": "Liberty Linehaul", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.982663" + }, + { + "post_title": "Sacschool", + "group_name": "pysa", + "discovered": "2021-09-09 23:46:56.989804" + }, + { + "post_title": "The MADSACK Media Group. Part 2.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.013376" + }, + { + "post_title": "Tegut. Part 2.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.021275" + }, + { + "post_title": "Saipa Press. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.030055" + }, + { + "post_title": "TPG Internet. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.037373" + }, + { + "post_title": "Tegut. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.044774" + }, + { + "post_title": "The MADSACK Media Group. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.052582" + }, + { + "post_title": "Seven Seas. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.061015" + }, + { + "post_title": "Elliott Group / Cascade Engineering / Unitex Textile Rental Services. Teaser.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.069128" + }, + { + "post_title": "Grimmway Farms. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.076032" + }, + { + "post_title": "Atlanta Allergy & Asthma. Part 1.", + "group_name": "nefilim", + "discovered": "2021-09-09 23:46:57.082905" + }, + { + "post_title": "Nachi America Inc.", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.109103" + }, + { + "post_title": "FAPS Inc.", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.116444" + }, + { + "post_title": "Homeland Title", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.124023" + }, + { + "post_title": "Forrester Construction", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.138930" + }, + { + "post_title": "Enerstar Rentals & Services", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.146990" + }, + { + "post_title": "Gunnebo AB", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.154074" + }, + { + "post_title": "Makalot", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.162157" + }, + { + "post_title": "ECU Worldwide", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.169586" + }, + { + "post_title": "Laboratorios SMA S.A.C.", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.176772" + }, + { + "post_title": "Geotech Engineering and Testing", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.183770" + }, + { + "post_title": "MERSEN", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.191177" + }, + { + "post_title": "Wasserstorm", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.205123" + }, + { + "post_title": "Transtar1", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.212083" + }, + { + "post_title": "Amey plc", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.219059" + }, + { + "post_title": "Century 3, Inc.", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.227182" + }, + { + "post_title": "ThyssenKrupp System Engineering", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.234452" + }, + { + "post_title": "Memry Corporation", + "group_name": "mountlocker", + "discovered": "2021-09-09 23:46:57.241627" + }, + { + "post_title": "BridgeMill Athletic Club", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.289695" + }, + { + "post_title": "E.A. Gibson Shipbrokers", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.305419" + }, + { + "post_title": "spsr-law.com", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.316940" + }, + { + "post_title": "Arabian Computer Supplies co.", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.327554" + }, + { + "post_title": "4murs.com", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.336196" + }, + { + "post_title": "The Babuk team shares the position stated by the most famous hacktivist group.", + "group_name": "babuk", + "discovered": "2021-09-09 23:46:57.346780" + }, + { + "post_title": "American Megatrends International", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.377913" + }, + { + "post_title": "Gigabyte Technology", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.385769" + }, + { + "post_title": "Ermenegildo Zegna Holding", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.394561" + }, + { + "post_title": "Liberty Group & ForHousing", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.402808" + }, + { + "post_title": "Corporación Nacional de Telecomunicación", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.410386" + }, + { + "post_title": "Walsin", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.417555" + }, + { + "post_title": "WT Microelectronics", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.425382" + }, + { + "post_title": "Universal Assistance S.A.", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.433179" + }, + { + "post_title": "STEMCOR", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.440363" + }, + { + "post_title": "Wallace & Carey", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.447936" + }, + { + "post_title": "Samvardhana Motherson Peguform", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.455545" + }, + { + "post_title": "Nobiskrug", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.464411" + }, + { + "post_title": "Ajuntament de Castelló", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.471986" + }, + { + "post_title": "Consiglio Nazionale del Notariato", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.479596" + }, + { + "post_title": "Pertamina EP", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.487344" + }, + { + "post_title": "CalAmp (NASDAQ: CAMP)", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.495504" + }, + { + "post_title": "Soluzioni Infrastrutturali Telefoniche ed Elettriche S.p.A.", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.503122" + }, + { + "post_title": "Indura SA", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.511162" + }, + { + "post_title": "Vistra", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.520637" + }, + { + "post_title": "Ultrapar Participações S.A.", + "group_name": "ransomexx", + "discovered": "2021-09-09 23:46:57.528915" + }, + { + "post_title": "OTR Capital believes in simple and straightforward transactions, without hidden costs and", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.551054" + }, + { + "post_title": "AFTS supplies the preeminent Payment Processing, IRS 1031 Exchange, Data Processing, Invoi", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.559851" + }, + { + "post_title": "Rose Associates Mission Statement", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.569878" + }, + { + "post_title": "Datamatics is a technology company that builds intelligent solutions enabling data-driven", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.577525" + }, + { + "post_title": "First Coast Logistics Services, Inc. was founded in 1999. The Company's line of business i", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.585223" + }, + { + "post_title": "The Squamish Nation is comprised of descendants of the Coast Salish Aboriginal peoples who", + "group_name": "cuba", + "discovered": "2021-09-09 23:46:57.593413" + }, + { + "post_title": "Portnox - Network Security Solutions", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.616766" + }, + { + "post_title": "IAI - Israel Aerospace Industries", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.625624" + }, + { + "post_title": "Intel - Habana Labs", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.633494" + }, + { + "post_title": "InfiApps - Joyvoo", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.641152" + }, + { + "post_title": "INTER - InterElectric", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.649134" + }, + { + "post_title": "MT-LAW [Markman&Tomashin Law Firm]", + "group_name": "pay2key", + "discovered": "2021-09-09 23:46:57.658522" + }, + { + "post_title": "InTown Suites", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.689293" + }, + { + "post_title": "OUR NEW PARTNER - XING LOCKER! WELCOME TO NEW LEAKS WEBSITE! http://xingnewj6m4qytljhfwemn", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.699097" + }, + { + "post_title": "CREST Hotel & Suites", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.707798" + }, + { + "post_title": "Pezutto Group", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.716567" + }, + { + "post_title": "Southwest KIA", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.726214" + }, + { + "post_title": "HOYA Corporation", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.735044" + }, + { + "post_title": "Eduro Healthcare, LLC", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.742744" + }, + { + "post_title": "von Drehle Corporation", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.750407" + }, + { + "post_title": "Curbell Inc.", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.759562" + }, + { + "post_title": "Rogers Engineering & Manufacturing Co., Inc.", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.767787" + }, + { + "post_title": "Laboratorios SMA S.A.C.", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.775914" + }, + { + "post_title": "GEOTECH ENGINEERING & TESTING", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.783819" + }, + { + "post_title": "Mersen Group", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.792043" + }, + { + "post_title": "Wasserstorm", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.800916" + }, + { + "post_title": "FAPS Inc", + "group_name": "azroteam", + "discovered": "2021-09-09 23:46:57.808630" + }, + { + "post_title": "[CHINA] TCL China Star Optoelectronics Technology Co., Ltd", + "group_name": "lockdata", + "discovered": "2021-09-09 23:46:57.835415" + }, + { + "post_title": "[USA] Crary Industries Inc.", + "group_name": "lockdata", + "discovered": "2021-09-09 23:46:57.844024" + }, + { + "post_title": "[CZ] GORDIC spol. s r.o.", + "group_name": "lockdata", + "discovered": "2021-09-09 23:46:57.851974" + }, + { + "post_title": "[Saudi Arabia] Al Wefag Trading & Manufacturing", + "group_name": "lockdata", + "discovered": "2021-09-09 23:46:57.861472" + }, + { + "post_title": "[USA] OrthoCare, 700 Lake Ave, Ste 6, Manchester, New Hampshire, 03103", + "group_name": "lockdata", + "discovered": "2021-09-09 23:46:57.869876" + }, + { + "post_title": "2020/04", + "group_name": "blacktor", + "discovered": "2021-09-09 23:46:57.899846" + }, + { + "post_title": "Liquid Global liquid.com", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:57.942288" + }, + { + "post_title": "AT&T Database Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:57.960658" + }, + { + "post_title": "Pine Labs Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:57.977093" + }, + { + "post_title": "DreamHost Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:57.994990" + }, + { + "post_title": "Cognyte Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.012483" + }, + { + "post_title": "ADATA corporation Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.024209" + }, + { + "post_title": "AirIndia breach information of 4.5 million custome", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.048773" + }, + { + "post_title": "Dominos India Database Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.059990" + }, + { + "post_title": "Tata Communications Huge Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.070050" + }, + { + "post_title": "Upstox.com Huge Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.079840" + }, + { + "post_title": "SBI YONO APP DATABASE", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.089523" + }, + { + "post_title": "Astoria Company LLC data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.100942" + }, + { + "post_title": "Mobikwik Leaked Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.111619" + }, + { + "post_title": "Summit Credit Union Big Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.120236" + }, + { + "post_title": "Acer.com Leaked Data 100% Fresh", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.132721" + }, + { + "post_title": "Prime Minister of India Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.141428" + }, + { + "post_title": "533 Million facebook Users Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.150132" + }, + { + "post_title": "True Caller Indian Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.159681" + }, + { + "post_title": "Indiabulls SQL and Documents Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.171592" + }, + { + "post_title": "2480000 Airtel India Customers Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.180070" + }, + { + "post_title": "Jazz Mobile Pakistan Data Dump", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.190585" + }, + { + "post_title": "Beacon Health Solutions LLC Data", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.202284" + }, + { + "post_title": "Bigbasket.com De-Hashed data leaked sql db", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.210199" + }, + { + "post_title": "IDFC Bank Confidential Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.218167" + }, + { + "post_title": "Solar Winds Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.229398" + }, + { + "post_title": "American Bank Systems INC Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-09 23:46:58.237511" + }, + { + "post_title": "Trust Capital Funding", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.276837" + }, + { + "post_title": "Diamond Schmitt", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.288022" + }, + { + "post_title": "g-able.com", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.297281" + }, + { + "post_title": "Middleton Reutlinger", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.305864" + }, + { + "post_title": "tastefulselections & WFG", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.314725" + }, + { + "post_title": "Kaydon Corporation (SKF Group Brand)", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.323530" + }, + { + "post_title": "Pine Labs Pvt", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.332769" + }, + { + "post_title": "Network Telecom / Enreach", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.341085" + }, + { + "post_title": "hhcp.com", + "group_name": "blackmatter", + "discovered": "2021-09-09 23:46:58.351184" + }, + { + "post_title": "www.webstercare.com.au", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.381441" + }, + { + "post_title": "Wrgtexas.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.390854" + }, + { + "post_title": "Connelypartners.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.401860" + }, + { + "post_title": "Truckcentercompanies.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.410833" + }, + { + "post_title": "Uptownbakers.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.418993" + }, + { + "post_title": "Victrongroup.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.429503" + }, + { + "post_title": "CD Project data", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.439248" + }, + { + "post_title": "iRely LLC's Grand Failure", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.448156" + }, + { + "post_title": "nsuship.co.jp", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.456705" + }, + { + "post_title": "sklarwilton.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.466515" + }, + { + "post_title": "conferenceusa.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.474572" + }, + { + "post_title": "pdsec.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.483431" + }, + { + "post_title": "www.emmawillard.org", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.493058" + }, + { + "post_title": "www.coreslab.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.502532" + }, + { + "post_title": "www.crm.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.510705" + }, + { + "post_title": "webstercare.com.au", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.518878" + }, + { + "post_title": "neuro-logica.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.529077" + }, + { + "post_title": "Capstoneins.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.537568" + }, + { + "post_title": "Reconservices.com", + "group_name": "payloadbin", + "discovered": "2021-09-09 23:46:58.546252" + }, + { + "post_title": "Мы можем просто договориться", + "group_name": "groove", + "discovered": "2021-09-09 23:46:58.574161" + }, + { + "post_title": "Запатченные fortinet точки входа", + "group_name": "groove", + "discovered": "2021-09-09 23:46:58.585874" + }, + { + "post_title": "Мысли о смысле", + "group_name": "groove", + "discovered": "2021-09-09 23:46:58.597969" + }, + { + "post_title": "ludofact.de 50 GB data stolen", + "group_name": "groove", + "discovered": "2021-09-09 23:46:58.609430" + }, + { + "post_title": "russellwbho.co....", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:57:27.237679" + }, + { + "post_title": "pi-hf.com", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:57:27.246778" + }, + { + "post_title": "ofplaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:57:27.267563" + }, + { + "post_title": "envisioncu.com", + "group_name": "lockbit2", + "discovered": "2021-09-09 23:57:27.353666" + }, + { + "post_title": "Who is the real Bad Guys here? Or what recovery experts prefer to keep silent.", + "group_name": "ragnarlocker", + "discovered": "2021-09-09 23:57:27.693222" + }, + { + "post_title": "Vendrig Holding B.V.", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.146392" + }, + { + "post_title": "TURLA SRL", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.155976" + }, + { + "post_title": "Sanger & Altgelt Insurance Agents", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.165194" + }, + { + "post_title": "RPE CONTRACTING", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.174590" + }, + { + "post_title": "Riwega S.R.L.", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.184225" + }, + { + "post_title": "MOSS BROS GROUP", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.193359" + }, + { + "post_title": "JAMAC FROZEN FOODS", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.202410" + }, + { + "post_title": "Frank G. Love Envelopes, Inc.", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.211683" + }, + { + "post_title": "Grupo Herdez, S.A.B. de C.V. Holding Companies", + "group_name": "conti", + "discovered": "2021-09-09 23:57:28.220821" + }, + { + "post_title": "Украина и экстрадиции в США", + "group_name": "groove", + "discovered": "2021-09-10 00:34:49.268114" + }, + { + "post_title": "Одно интервью", + "group_name": "groove", + "discovered": "2021-09-10 00:34:49.276701" + }, + { + "post_title": "tovogomma.it", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.305867" + }, + { + "post_title": "royalporcelain....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.315222" + }, + { + "post_title": "suenco.co.th", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.323945" + }, + { + "post_title": "comebi.mx", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.332684" + }, + { + "post_title": "tesa46.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.341759" + }, + { + "post_title": "pikecountysheri...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.350848" + }, + { + "post_title": "callabsolute.co...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.359042" + }, + { + "post_title": "benner.com.br", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.367887" + }, + { + "post_title": "cheadlelaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.376798" + }, + { + "post_title": "hpe-konstanz.de", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.385281" + }, + { + "post_title": "remedios.lawyer", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.393579" + }, + { + "post_title": "soenen-golfkart...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.402126" + }, + { + "post_title": "odeffinancieras...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.409910" + }, + { + "post_title": "prototal.se", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.417445" + }, + { + "post_title": "denverhousing.o...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.424560" + }, + { + "post_title": "barolit.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.432540" + }, + { + "post_title": "autohausdaehn.d...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.440078" + }, + { + "post_title": "pulmuonewildwoo...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.447442" + }, + { + "post_title": "ch13bham.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.454750" + }, + { + "post_title": "seiei-ashd.co.j...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.462335" + }, + { + "post_title": "maximusinfoware...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.475931" + }, + { + "post_title": "pridepak.co.za", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.484848" + }, + { + "post_title": "overseas-ast.co...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.493510" + }, + { + "post_title": "hellmich-partne...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.502159" + }, + { + "post_title": "yakimacoop.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.510651" + }, + { + "post_title": "nutrix.co.th", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.519525" + }, + { + "post_title": "pro-beam.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.528104" + }, + { + "post_title": "e-button.com.tw", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.536884" + }, + { + "post_title": "brunsrealty.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.545389" + }, + { + "post_title": "softvision.com....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.553905" + }, + { + "post_title": "isoftstone.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.561884" + }, + { + "post_title": "nepgroup.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.570520" + }, + { + "post_title": "conmoto.de", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.579140" + }, + { + "post_title": "stetsonexpo.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.588674" + }, + { + "post_title": "bangkokair.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.597688" + }, + { + "post_title": "alta-electronic...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.606353" + }, + { + "post_title": "pla-pumpen.de", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.614661" + }, + { + "post_title": "servisistanbul....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.623056" + }, + { + "post_title": "fragerlaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.631992" + }, + { + "post_title": "faberinc.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.640580" + }, + { + "post_title": "delrantownship....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.649325" + }, + { + "post_title": "abecho.co.jp", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.657940" + }, + { + "post_title": "sdfeg.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.666585" + }, + { + "post_title": "ethiopianairlin...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.674788" + }, + { + "post_title": "beardowadams.co...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.683733" + }, + { + "post_title": "ceratube.ma", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.692285" + }, + { + "post_title": "garagedeckx.be", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.701213" + }, + { + "post_title": "lemonastere.ca", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.709393" + }, + { + "post_title": "livingflame.co....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.717084" + }, + { + "post_title": "selinerag.ch", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.724942" + }, + { + "post_title": "saleeprinting.c...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.732821" + }, + { + "post_title": "autoelectric.co...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.740435" + }, + { + "post_title": "en.mkb.bg", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.748172" + }, + { + "post_title": "meccalte.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.755715" + }, + { + "post_title": "jy-oilseal.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.763552" + }, + { + "post_title": "bpc.ao", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.771122" + }, + { + "post_title": "audit-treuhand....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.779338" + }, + { + "post_title": "accenture.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.787919" + }, + { + "post_title": "sabre.ca", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.795916" + }, + { + "post_title": "nusantararegas....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.804420" + }, + { + "post_title": "nwtf.org", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.813266" + }, + { + "post_title": "petrologiscanar...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.822486" + }, + { + "post_title": "esrmotors.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.831640" + }, + { + "post_title": "megawatts.com.s...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.840534" + }, + { + "post_title": "inlineplumbing....", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.849280" + }, + { + "post_title": "yamato-esulon.c...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.858309" + }, + { + "post_title": "jaccs.com.ph", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.867421" + }, + { + "post_title": "gdexpress.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.876674" + }, + { + "post_title": "dprotege.com.br", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.886293" + }, + { + "post_title": "gicinque.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.895883" + }, + { + "post_title": "verisilicon.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.904861" + }, + { + "post_title": "hitechpiping.ca", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.914037" + }, + { + "post_title": "yazaki-group.co...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.923131" + }, + { + "post_title": "mtgsrl.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.932918" + }, + { + "post_title": "cenco-zotti.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.949486" + }, + { + "post_title": "jginc.biz", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.961654" + }, + { + "post_title": "bennetts.com.au", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.977328" + }, + { + "post_title": "nutrifood.co.id", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:42.996776" + }, + { + "post_title": "ymcadc.org", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.009149" + }, + { + "post_title": "kmazuckert.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.023989" + }, + { + "post_title": "luzeirosfortale...", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.035752" + }, + { + "post_title": "lanexmfg.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.050287" + }, + { + "post_title": "otcqatar.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.062508" + }, + { + "post_title": "ccz.com.au", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.072126" + }, + { + "post_title": "cometgroup.be", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.082944" + }, + { + "post_title": "setg.at", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.097436" + }, + { + "post_title": "aquazzura.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.107436" + }, + { + "post_title": "colliganlaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 00:40:43.117694" + }, + { + "post_title": "https://www.nov...", + "group_name": "lockbit2", + "discovered": "2021-09-10 10:01:15.479497" + }, + { + "post_title": "gahesa.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 10:01:15.487547" + }, + { + "post_title": "cansmart.co.za", + "group_name": "lockbit2", + "discovered": "2021-09-10 10:01:15.495460" + }, + { + "post_title": "cimaser.com", + "group_name": "lockbit2", + "discovered": "2021-09-10 10:01:15.503454" + }, + { + "post_title": "hbfinanse.pl", + "group_name": "lockbit2", + "discovered": "2021-09-10 10:01:15.511776" + }, + { + "post_title": "Compilation of Many Breaches (COMB)", + "group_name": "arvinclub", + "discovered": "2021-09-10 18:06:00.267029" + }, + { + "post_title": "FOODLAND.COM", + "group_name": "clop", + "discovered": "2021-09-10 19:24:51.776829" + }, + { + "post_title": "Drug Alcohol Testing", + "group_name": "pysa", + "discovered": "2021-09-10 19:24:52.171501" + }, + { + "post_title": "erg.eu", + "group_name": "lockbit2", + "discovered": "2021-09-10 20:10:10.920845" + }, + { + "post_title": "novohamburgo.rs...", + "group_name": "lockbit2", + "discovered": "2021-09-10 20:10:10.929888" + }, + { + "post_title": "ASSU 2000", + "group_name": "conti", + "discovered": "2021-09-11 05:08:24.876744" + }, + { + "post_title": "ohiograting.com", + "group_name": "revil", + "discovered": "2021-09-11 09:10:59.922906" + }, + { + "post_title": "River City Construction", + "group_name": "blackmatter", + "discovered": "2021-09-11 12:11:51.524847" + }, + { + "post_title": "Primary Residential Mortgage inc. - Leaked", + "group_name": "ragnarlocker", + "discovered": "2021-09-11 14:12:28.887817" + }, + { + "post_title": "https://cimico....", + "group_name": "lockbit2", + "discovered": "2021-09-12 15:12:04.280082" + }, + { + "post_title": "HABI", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.404828" + }, + { + "post_title": "Woodlake Unified", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.414163" + }, + { + "post_title": "Haverhill High School", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.423150" + }, + { + "post_title": "Spartanburg & Pelham OB-GYN", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.431885" + }, + { + "post_title": "Grupo SAN", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.440641" + }, + { + "post_title": "Jesse Engineering Co", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.449488" + }, + { + "post_title": "One Community Health", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.458329" + }, + { + "post_title": "Betson Enterprises", + "group_name": "pysa", + "discovered": "2021-09-13 07:12:10.472658" + }, + { + "post_title": "robinwoodortho.com", + "group_name": "groove", + "discovered": "2021-09-13 09:12:02.493939" + }, + { + "post_title": "cimico.net", + "group_name": "lockbit2", + "discovered": "2021-09-13 12:10:50.201069" + }, + { + "post_title": "rlsblaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-13 15:11:26.414508" + }, + { + "post_title": "Andel", + "group_name": "everest", + "discovered": "2021-09-13 15:11:27.359131" + }, + { + "post_title": "Xmedicalpicture", + "group_name": "everest", + "discovered": "2021-09-13 15:11:27.368935" + }, + { + "post_title": "Southland", + "group_name": "everest", + "discovered": "2021-09-13 16:12:57.219333" + }, + { + "post_title": "Hörmanseder Stahlbau GmbH", + "group_name": "everest", + "discovered": "2021-09-13 17:15:41.552516" + }, + { + "post_title": "VIVA Formwork and Scaffolding", + "group_name": "everest", + "discovered": "2021-09-13 17:15:41.559778" + }, + { + "post_title": "Irish Pioneer works", + "group_name": "everest", + "discovered": "2021-09-13 18:12:43.653851" + }, + { + "post_title": "atstrack.com", + "group_name": "lockbit2", + "discovered": "2021-09-13 21:13:05.512819" + }, + { + "post_title": "miller-rose.com", + "group_name": "lockbit2", + "discovered": "2021-09-13 22:13:34.385253" + }, + { + "post_title": "FULL DATA LEAK of Primary Residential Mortgage, Inc. //", + "group_name": "ragnarlocker", + "discovered": "2021-09-14 15:10:34.580817" + }, + { + "post_title": "EQUITY TRANSPORTATION", + "group_name": "blackmatter", + "discovered": "2021-09-15 16:12:04.751751" + }, + { + "post_title": "Spiezle Architectural Group Inc.", + "group_name": "revil", + "discovered": "2021-09-16 08:14:25.659034" + }, + { + "post_title": "AMAX", + "group_name": "conti", + "discovered": "2021-09-16 16:12:12.462446" + }, + { + "post_title": "Steel Projects", + "group_name": "everest", + "discovered": "2021-09-17 00:16:12.262800" + }, + { + "post_title": "northwoods & spectrumfurniture", + "group_name": "blackmatter", + "discovered": "2021-09-17 09:13:52.733421" + }, + { + "post_title": "coldwellbankerh...", + "group_name": "lockbit2", + "discovered": "2021-09-17 18:11:01.954566" + }, + { + "post_title": "mitchellsternla...", + "group_name": "lockbit2", + "discovered": "2021-09-17 18:11:01.962761" + }, + { + "post_title": "Modern Testing Services", + "group_name": "blackmatter", + "discovered": "2021-09-17 18:11:03.480891" + }, + { + "post_title": "riscossa.it", + "group_name": "lockbit2", + "discovered": "2021-09-17 21:11:15.221679" + }, + { + "post_title": "Pulmuone Co., Ltd.", + "group_name": "blackmatter", + "discovered": "2021-09-18 00:16:47.399283" + }, + { + "post_title": "nrpa.org", + "group_name": "lockbit2", + "discovered": "2021-09-18 21:12:39.002722" + }, + { + "post_title": "abcp.org.br", + "group_name": "lockbit2", + "discovered": "2021-09-18 21:12:39.013249" + }, + { + "post_title": "agmfinancial.co...", + "group_name": "lockbit2", + "discovered": "2021-09-18 21:12:39.022923" + }, + { + "post_title": "novotech.com", + "group_name": "lockbit2", + "discovered": "2021-09-18 21:12:39.032681" + }, + { + "post_title": "northstarak.com", + "group_name": "lockbit2", + "discovered": "2021-09-18 21:12:39.042214" + }, + { + "post_title": "51talk.com", + "group_name": "lockbit2", + "discovered": "2021-09-19 09:11:23.616812" + }, + { + "post_title": "denark.com", + "group_name": "lockbit2", + "discovered": "2021-09-19 18:10:45.158213" + }, + { + "post_title": "grupowec.com", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.726055" + }, + { + "post_title": "ibes-gmbh.de", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.735919" + }, + { + "post_title": "dykman.com", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.745438" + }, + { + "post_title": "glenroy.com", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.755037" + }, + { + "post_title": "noone.com.au", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.765018" + }, + { + "post_title": "westernspirits....", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.774645" + }, + { + "post_title": "drsdoors.com", + "group_name": "lockbit2", + "discovered": "2021-09-20 04:09:40.784307" + }, + { + "post_title": "Bureau van Dijk(bvdinfo.com)", + "group_name": "arvinclub", + "discovered": "2021-09-20 07:11:06.740378" + }, + { + "post_title": "Eisvogel Hubert Bernegger GmbH", + "group_name": "blackmatter", + "discovered": "2021-09-20 11:10:36.157654" + }, + { + "post_title": "iiservz.com", + "group_name": "lockbit2", + "discovered": "2021-09-20 13:14:29.872551" + }, + { + "post_title": "marriott.com/ho...", + "group_name": "lockbit2", + "discovered": "2021-09-20 13:14:29.880934" + }, + { + "post_title": "ds.net.au", + "group_name": "lockbit2", + "discovered": "2021-09-20 13:14:29.889288" + }, + { + "post_title": "johncockerillin...", + "group_name": "lockbit2", + "discovered": "2021-09-20 13:14:29.897519" + }, + { + "post_title": "Actief-Jobmade", + "group_name": "blackmatter", + "discovered": "2021-09-20 13:14:31.438116" + }, + { + "post_title": "Citrocasa GmbH", + "group_name": "blackmatter", + "discovered": "2021-09-20 13:14:31.446938" + }, + { + "post_title": "Ellerboeck", + "group_name": "blackmatter", + "discovered": "2021-09-20 13:14:31.461496" + }, + { + "post_title": "Pramer Baustoffe GmbH", + "group_name": "blackmatter", + "discovered": "2021-09-20 13:14:31.479731" + }, + { + "post_title": "United Carton Industries Company Ltd", + "group_name": "ransomexx", + "discovered": "2021-09-20 15:11:43.371282" + }, + { + "post_title": "BCP Securities", + "group_name": "blackmatter", + "discovered": "2021-09-20 15:11:43.584718" + }, + { + "post_title": "CasagrandeGroup", + "group_name": "blackmatter", + "discovered": "2021-09-20 15:11:43.593129" + }, + { + "post_title": "JMclaughlin", + "group_name": "blackmatter", + "discovered": "2021-09-20 15:11:43.611038" + }, + { + "post_title": "Pines Ford Lincoln", + "group_name": "conti", + "discovered": "2021-09-20 16:13:33.812209" + }, + { + "post_title": "LA-Martiniquaise", + "group_name": "blackmatter", + "discovered": "2021-09-20 20:11:12.021043" + }, + { + "post_title": "aathonrton", + "group_name": "conti", + "discovered": "2021-09-20 23:10:30.742537" + }, + { + "post_title": "Bumper to Bumper Autoparts", + "group_name": "blackmatter", + "discovered": "2021-09-21 09:14:57.363063" + }, + { + "post_title": "SCREEN Holdings", + "group_name": "lorenz", + "discovered": "2021-09-21 14:13:05.837505" + }, + { + "post_title": "j-addington.com", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.524604" + }, + { + "post_title": "shop.jerryleigh...", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.536699" + }, + { + "post_title": "ebarc.adv.br", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.552102" + }, + { + "post_title": "wijnendeclerck....", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.562509" + }, + { + "post_title": "hoffsuemmer.de", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.574344" + }, + { + "post_title": "esopro.com", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.584800" + }, + { + "post_title": "drhrlaw.com", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.595263" + }, + { + "post_title": "hotelservicepro...", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.605826" + }, + { + "post_title": "jplegal.net", + "group_name": "lockbit2", + "discovered": "2021-09-22 04:11:35.665612" + }, + { + "post_title": "NASCO Industries", + "group_name": "conti", + "discovered": "2021-09-22 10:13:47.246046" + }, + { + "post_title": "PowerGrid Services", + "group_name": "conti", + "discovered": "2021-09-22 10:13:47.257099" + }, + { + "post_title": "Marans Weisz & Newman, LLC", + "group_name": "conti", + "discovered": "2021-09-22 18:11:24.008622" + }, + { + "post_title": "BÖWE SYSTEC", + "group_name": "conti", + "discovered": "2021-09-22 21:12:07.252725" + }, + { + "post_title": "Real Time", + "group_name": "conti", + "discovered": "2021-09-23 08:15:32.173306" + }, + { + "post_title": "tes-amm.com", + "group_name": "lockbit2", + "discovered": "2021-09-23 12:12:09.374067" + }, + { + "post_title": "robsonstreet.ca", + "group_name": "lockbit2", + "discovered": "2021-09-23 12:12:09.383306" + }, + { + "post_title": "https://www.buf...", + "group_name": "lockbit2", + "discovered": "2021-09-23 12:12:09.392428" + }, + { + "post_title": "www.daylewis.co...", + "group_name": "lockbit2", + "discovered": "2021-09-23 12:12:09.401397" + }, + { + "post_title": "Office Star Products", + "group_name": "conti", + "discovered": "2021-09-23 12:12:10.306584" + }, + { + "post_title": "sete.co.uk", + "group_name": "lockbit2", + "discovered": "2021-09-23 18:16:25.246475" + }, + { + "post_title": "buffingtonlawfi...", + "group_name": "lockbit2", + "discovered": "2021-09-23 18:16:25.259167" + }, + { + "post_title": "daylewis.co.uk", + "group_name": "lockbit2", + "discovered": "2021-09-23 18:16:25.267614" + }, + { + "post_title": "PeakLogix", + "group_name": "conti", + "discovered": "2021-09-23 20:09:52.183550" + }, + { + "post_title": "papierswhitebir...", + "group_name": "lockbit2", + "discovered": "2021-09-24 02:20:40.746973" + }, + { + "post_title": "franklinempire....", + "group_name": "lockbit2", + "discovered": "2021-09-24 02:20:40.755736" + }, + { + "post_title": "jaylon.com.au", + "group_name": "lockbit2", + "discovered": "2021-09-24 02:20:40.764411" + }, + { + "post_title": "IN2 Engineering", + "group_name": "conti", + "discovered": "2021-09-24 13:15:25.660744" + }, + { + "post_title": "IJmond Werkt", + "group_name": "conti", + "discovered": "2021-09-24 16:11:29.613312" + }, + { + "post_title": "Jakes Finer Foods", + "group_name": "conti", + "discovered": "2021-09-24 17:12:56.640268" + }, + { + "post_title": "Vera Wang Group", + "group_name": "conti", + "discovered": "2021-09-24 17:12:56.649612" + }, + { + "post_title": "Cedar Grove Composting", + "group_name": "conti", + "discovered": "2021-09-24 17:12:56.658787" + }, + { + "post_title": "Gigabyte Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-09-24 18:12:19.766415" + }, + { + "post_title": "dataspeed.it", + "group_name": "lockbit2", + "discovered": "2021-09-25 17:13:18.321018" + }, + { + "post_title": "peabodyproperti...", + "group_name": "lockbit2", + "discovered": "2021-09-25 17:13:18.331708" + }, + { + "post_title": "advantecmfs.com", + "group_name": "lockbit2", + "discovered": "2021-09-25 17:13:18.342117" + }, + { + "post_title": "scisairsecurity...", + "group_name": "lockbit2", + "discovered": "2021-09-25 17:13:18.352407" + }, + { + "post_title": "Amphenol Canada", + "group_name": "avoslocker", + "discovered": "2021-09-25 23:14:07.761235" + }, + { + "post_title": "Unified Technologies", + "group_name": "avoslocker", + "discovered": "2021-09-25 23:14:07.771002" + }, + { + "post_title": "Whitefish River First Nation", + "group_name": "avoslocker", + "discovered": "2021-09-25 23:14:07.783191" + }, + { + "post_title": "Huali Industrial Group", + "group_name": "avoslocker", + "discovered": "2021-09-25 23:14:07.794250" + }, + { + "post_title": "www.myyp.com", + "group_name": "payloadbin", + "discovered": "2021-09-25 23:14:09.402707" + }, + { + "post_title": "iibg.ca", + "group_name": "lockbit2", + "discovered": "2021-09-26 11:10:32.584584" + }, + { + "post_title": "Memory Express", + "group_name": "avoslocker", + "discovered": "2021-09-26 12:46:17.809549" + }, + { + "post_title": "RTI Surgical", + "group_name": "conti", + "discovered": "2021-09-26 15:13:00.101218" + }, + { + "post_title": "Unione Reno Galliera", + "group_name": "ransomexx", + "discovered": "2021-09-26 15:13:00.592285" + }, + { + "post_title": "WEST TREE SERVICE", + "group_name": "conti", + "discovered": "2021-09-27 14:12:02.005296" + }, + { + "post_title": "parcoinc", + "group_name": "conti", + "discovered": "2021-09-27 17:18:30.957206" + }, + { + "post_title": "Minjar Gold", + "group_name": "conti", + "discovered": "2021-09-27 20:43:31.982317" + }, + { + "post_title": "USA company", + "group_name": "lockbit2", + "discovered": "2021-09-28 05:41:05.122635" + }, + { + "post_title": "vlastuin.nl", + "group_name": "lockbit2", + "discovered": "2021-09-28 05:41:05.133617" + }, + { + "post_title": "anasia.com", + "group_name": "lockbit2", + "discovered": "2021-09-28 05:41:05.142350" + }, + { + "post_title": "https://www.wor...", + "group_name": "lockbit2", + "discovered": "2021-09-28 06:48:26.655626" + }, + { + "post_title": "TaxLeaf Corporate", + "group_name": "conti", + "discovered": "2021-09-28 13:21:28.729592" + }, + { + "post_title": "alderking.com", + "group_name": "lockbit2", + "discovered": "2021-09-28 13:41:57.774157" + }, + { + "post_title": "wortmann.de", + "group_name": "lockbit2", + "discovered": "2021-09-28 13:41:57.784859" + }, + { + "post_title": "PRECREDIT", + "group_name": "everest", + "discovered": "2021-09-28 14:40:43.764050" + }, + { + "post_title": "Grupo GSS", + "group_name": "conti", + "discovered": "2021-09-28 18:45:05.095984" + }, + { + "post_title": "DataXsport", + "group_name": "conti", + "discovered": "2021-09-28 20:43:58.162679" + }, + { + "post_title": "hoistcrane.com", + "group_name": "lockbit2", + "discovered": "2021-09-28 21:15:12.600252" + }, + { + "post_title": "crystalvalley", + "group_name": "blackmatter", + "discovered": "2021-09-29 01:35:35.733052" + }, + { + "post_title": "rabbalshedekraf...", + "group_name": "lockbit2", + "discovered": "2021-09-29 02:46:17.060167" + }, + { + "post_title": "sheraton.marrio...", + "group_name": "lockbit2", + "discovered": "2021-09-29 02:46:17.126664" + }, + { + "post_title": "amista.cz", + "group_name": "lockbit2", + "discovered": "2021-09-29 14:43:32.072018" + }, + { + "post_title": "Fimmick CRM Honk Kong (www.fimmick.com)", + "group_name": "revil", + "discovered": "2021-09-30 07:48:36.895586" + }, + { + "post_title": "calsoft.com", + "group_name": "payloadbin", + "discovered": "2021-09-30 08:15:57.464747" + }, + { + "post_title": "Fimmick CRM Hong Kong (www.fimmick.com)", + "group_name": "revil", + "discovered": "2021-09-30 10:15:09.108169" + }, + { + "post_title": "calsoft", + "group_name": "payloadbin", + "discovered": "2021-09-30 11:47:25.747952" + }, + { + "post_title": "geda-produkte.d...", + "group_name": "lockbit2", + "discovered": "2021-09-30 13:22:01.191311" + }, + { + "post_title": "transrendufense...", + "group_name": "lockbit2", + "discovered": "2021-09-30 16:16:40.930508" + }, + { + "post_title": "texasacehvac.co...", + "group_name": "lockbit2", + "discovered": "2021-09-30 16:16:40.939511" + }, + { + "post_title": "nitropiso.com.m...", + "group_name": "lockbit2", + "discovered": "2021-09-30 16:16:40.948405" + }, + { + "post_title": "fugybat.fr", + "group_name": "lockbit2", + "discovered": "2021-09-30 16:16:40.957254" + }, + { + "post_title": "newhotel.com", + "group_name": "lockbit2", + "discovered": "2021-09-30 16:16:40.966100" + }, + { + "post_title": "calautomotive.com", + "group_name": "payloadbin", + "discovered": "2021-09-30 21:47:37.861887" + }, + { + "post_title": "Gershman Mortgage", + "group_name": "conti", + "discovered": "2021-09-30 22:19:31.399949" + }, + { + "post_title": "houstonestatepl...", + "group_name": "lockbit2", + "discovered": "2021-10-01 01:42:10.007835" + }, + { + "post_title": "Ronmor Holdings", + "group_name": "revil", + "discovered": "2021-10-01 09:12:21.395876" + }, + { + "post_title": "Kes", + "group_name": "everest", + "discovered": "2021-10-01 16:13:27.245510" + }, + { + "post_title": "JVCKenwood Case", + "group_name": "conti", + "discovered": "2021-10-01 16:13:27.279053" + }, + { + "post_title": "brident.com/en-...", + "group_name": "lockbit2", + "discovered": "2021-10-01 16:51:40.020542" + }, + { + "post_title": "chipsaway.at", + "group_name": "lockbit2", + "discovered": "2021-10-01 16:51:40.030514" + }, + { + "post_title": "E.M.I.T. Aviati...", + "group_name": "lockbit2", + "discovered": "2021-10-01 16:51:40.040340" + }, + { + "post_title": "adlinktech.com", + "group_name": "lockbit2", + "discovered": "2021-10-01 16:51:40.050108" + }, + { + "post_title": "yankey.com.tw", + "group_name": "lockbit2", + "discovered": "2021-10-02 12:50:03.989666" + }, + { + "post_title": "dcaa.gov.ae", + "group_name": "lockbit2", + "discovered": "2021-10-02 12:50:03.999087" + }, + { + "post_title": "wormingtonlegal...", + "group_name": "lockbit2", + "discovered": "2021-10-02 12:50:04.008341" + }, + { + "post_title": "riviana.com", + "group_name": "lockbit2", + "discovered": "2021-10-02 12:50:04.017556" + }, + { + "post_title": "Align Technology", + "group_name": "conti", + "discovered": "2021-10-02 20:17:38.150676" + }, + { + "post_title": "estampa.com.pa", + "group_name": "lockbit2", + "discovered": "2021-10-03 09:47:04.102422" + }, + { + "post_title": "aktieinvest.se", + "group_name": "lockbit2", + "discovered": "2021-10-03 09:47:04.111730" + }, + { + "post_title": "nuevomundosa.co...", + "group_name": "lockbit2", + "discovered": "2021-10-03 09:47:04.120897" + }, + { + "post_title": "rivercityrental...", + "group_name": "lockbit2", + "discovered": "2021-10-03 18:21:21.622973" + }, + { + "post_title": "ZKTeco USA", + "group_name": "blackmatter", + "discovered": "2021-10-04 07:15:16.112751" + }, + { + "post_title": "Charles Crown Financial Ltd", + "group_name": "bonacigroup", + "discovered": "2021-10-04 09:45:12.217905" + }, + { + "post_title": "Ward Arcuri Foley & Dwyer | Law Firm", + "group_name": "bonacigroup", + "discovered": "2021-10-04 09:45:12.227292" + }, + { + "post_title": "Matic Transport", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.242194" + }, + { + "post_title": "Goss Dodge Chrysler Ram Jeep", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.251477" + }, + { + "post_title": "GEO-Alpinbau", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.260747" + }, + { + "post_title": "The Plastic Forming Company", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.269975" + }, + { + "post_title": "BOSCA S.p.A", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.279083" + }, + { + "post_title": "AZA chili", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.290143" + }, + { + "post_title": "Clay County Clerk", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.299337" + }, + { + "post_title": "Aluflexpack", + "group_name": "blackbyte", + "discovered": "2021-10-04 09:45:12.308648" + }, + { + "post_title": "YASH Technologies. Part 1.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.328065" + }, + { + "post_title": "SI Group. Part 1.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.337504" + }, + { + "post_title": "Align Technology. Part 2.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.346836" + }, + { + "post_title": "The next leak will be of a multi billion dollar cosmetics and fragrance company.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.356240" + }, + { + "post_title": "Align Technology. Part 1.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.365493" + }, + { + "post_title": "Saurer. Part 1.", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.374705" + }, + { + "post_title": "Our first post", + "group_name": "karma", + "discovered": "2021-10-04 09:45:12.384002" + }, + { + "post_title": "Ocean View Nursing & Rehabilitation", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.524862" + }, + { + "post_title": "Associated Solutions", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.534256" + }, + { + "post_title": "HMCC", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.545226" + }, + { + "post_title": "Adore Fashions", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.554503" + }, + { + "post_title": "Jurysync", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.563797" + }, + { + "post_title": "St Benet Biscop", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.573083" + }, + { + "post_title": "ITS, Inc.", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.582371" + }, + { + "post_title": "Ardagh Group", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.591695" + }, + { + "post_title": "Instituto Mixto de Ayuda Social", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.601004" + }, + { + "post_title": "Santélys", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.610314" + }, + { + "post_title": "Consolidated High School District 230", + "group_name": "pysa", + "discovered": "2021-10-04 09:45:13.619607" + }, + { + "post_title": "Verhoff Machine & Welding", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.848501" + }, + { + "post_title": "Transports Verlhac et Fils", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.858334" + }, + { + "post_title": "ASISMED S.A.", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.867663" + }, + { + "post_title": "Pierce Property Management, Inc.", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.876550" + }, + { + "post_title": "VIASHOPPING", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.885495" + }, + { + "post_title": "ORLANDO IMPORT-EXPORT 2001 SRL", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.894377" + }, + { + "post_title": "I'M CORPORATION(SUZHOU)CO.,LTD", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.903719" + }, + { + "post_title": "TOA ELECTRIC INDUSTRIAL CO., LTD.", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.912467" + }, + { + "post_title": "Van Dijk De Jongh Notarissen", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.921239" + }, + { + "post_title": "GLOBAL PROTEIN", + "group_name": "spook", + "discovered": "2021-10-04 10:12:29.930004" + }, + { + "post_title": "Farmers Cooperative Elevator", + "group_name": "blackbyte", + "discovered": "2021-10-04 14:13:35.035864" + }, + { + "post_title": "Tom Lange Company, Inc.", + "group_name": "blackbyte", + "discovered": "2021-10-04 14:13:35.046852" + }, + { + "post_title": "Sashida warehouse CO., Ltd", + "group_name": "spook", + "discovered": "2021-10-04 16:52:30.952984" + }, + { + "post_title": "U.S. GOV", + "group_name": "everest", + "discovered": "2021-10-05 00:54:46.923431" + }, + { + "post_title": "Legendary, Inc.", + "group_name": "spook", + "discovered": "2021-10-05 05:38:40.458861" + }, + { + "post_title": "wenco S. A.", + "group_name": "conti", + "discovered": "2021-10-05 08:44:54.638582" + }, + { + "post_title": "https://barreau...", + "group_name": "lockbit2", + "discovered": "2021-10-05 09:10:17.887379" + }, + { + "post_title": "EMPIRICAL-RESEARCH.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.169278" + }, + { + "post_title": "BRPRINTERS.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.291475" + }, + { + "post_title": "BPATPA.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.304935" + }, + { + "post_title": "BLUEBONNETNUTRITION.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.351711" + }, + { + "post_title": "SUNSETHCS.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.522902" + }, + { + "post_title": "STORAFILE.CO.UK", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.679075" + }, + { + "post_title": "GENESISNET.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:05.863072" + }, + { + "post_title": "COMPASSNRG.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.082796" + }, + { + "post_title": "KLEINBERGLANGE.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.199466" + }, + { + "post_title": "WDMANOR.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.309683" + }, + { + "post_title": "MMALTZAN.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.321753" + }, + { + "post_title": "COULSONGROUP.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.332824" + }, + { + "post_title": "KSSENTERPRISES.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.346122" + }, + { + "post_title": "PARAGONGRI.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.439451" + }, + { + "post_title": "PENBENS.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.568331" + }, + { + "post_title": "GOABCO.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.580235" + }, + { + "post_title": "ZUCCHETTIKOS.IT", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.591536" + }, + { + "post_title": "RMICO.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.602717" + }, + { + "post_title": "VALLEYTRUCKANDTRACTOR.COM", + "group_name": "clop", + "discovered": "2021-10-05 10:09:06.626158" + }, + { + "post_title": "https://moonnur...", + "group_name": "lockbit2", + "discovered": "2021-10-05 12:10:53.101402" + }, + { + "post_title": "barreaudecharle...", + "group_name": "lockbit2", + "discovered": "2021-10-05 12:10:53.114998" + }, + { + "post_title": "Cock Foods Co., Ltd.", + "group_name": "spook", + "discovered": "2021-10-05 12:47:18.707151" + }, + { + "post_title": "Berexco LLC", + "group_name": "conti", + "discovered": "2021-10-05 14:30:19.040359" + }, + { + "post_title": "moonnurseries.c...", + "group_name": "lockbit2", + "discovered": "2021-10-05 16:49:28.717442" + }, + { + "post_title": "maisonlaprise.c...", + "group_name": "lockbit2", + "discovered": "2021-10-05 18:14:53.903875" + }, + { + "post_title": "COURTOISE MOTORS", + "group_name": "spook", + "discovered": "2021-10-05 18:44:38.358845" + }, + { + "post_title": "transdev.com", + "group_name": "lockbit2", + "discovered": "2021-10-05 22:42:17.091697" + }, + { + "post_title": "MOLNÁRBETON Kft.", + "group_name": "spook", + "discovered": "2021-10-06 19:11:23.568799" + }, + { + "post_title": "sides.fr", + "group_name": "lockbit2", + "discovered": "2021-10-06 19:41:47.110131" + }, + { + "post_title": "Atlas Financial Holdings, Inc. - Leaked", + "group_name": "ragnarlocker", + "discovered": "2021-10-06 19:41:47.785033" + }, + { + "post_title": "Syniverse Data Leak", + "group_name": "darkleakmarket", + "discovered": "2021-10-07 02:24:44.786159" + }, + { + "post_title": "Epik Domain registrar and web host", + "group_name": "darkleakmarket", + "discovered": "2021-10-07 02:51:52.476895" + }, + { + "post_title": "Indian Aadhar data & software.", + "group_name": "darkleakmarket", + "discovered": "2021-10-07 02:51:52.563405" + }, + { + "post_title": "Gestão Contabilidade Empresarial", + "group_name": "spook", + "discovered": "2021-10-07 08:45:55.177531" + }, + { + "post_title": "Join us on RAMP", + "group_name": "revil", + "discovered": "2021-10-07 09:47:02.431284" + }, + { + "post_title": "kacyumara.com.b...", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.223510" + }, + { + "post_title": "isvo.it", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.234781" + }, + { + "post_title": "reust.ch", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.245941" + }, + { + "post_title": "weyers-architek...", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.256920" + }, + { + "post_title": "generalplumbing...", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.267961" + }, + { + "post_title": "atsgruppo.eu", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.279015" + }, + { + "post_title": "sapphiredentalc...", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.289984" + }, + { + "post_title": "jaykaltrading.c...", + "group_name": "lockbit2", + "discovered": "2021-10-07 18:13:25.300850" + }, + { + "post_title": "parkertide.com", + "group_name": "lockbit2", + "discovered": "2021-10-07 20:41:44.076791" + }, + { + "post_title": "cobabebrothers....", + "group_name": "lockbit2", + "discovered": "2021-10-07 23:13:23.611085" + }, + { + "post_title": "La SECAN", + "group_name": "spook", + "discovered": "2021-10-08 03:11:25.611286" + }, + { + "post_title": "ECKERD PERU S.A, INKAFARMA, MIFARMA", + "group_name": "revil", + "discovered": "2021-10-08 07:43:54.293890" + }, + { + "post_title": "Kern Glass and Aluminum Company", + "group_name": "spook", + "discovered": "2021-10-08 09:43:48.099275" + }, + { + "post_title": "Tilia GmbH. TILIA GROUP", + "group_name": "xinglocker", + "discovered": "2021-10-08 13:49:53.514157" + }, + { + "post_title": "dusa.com.ve", + "group_name": "lockbit2", + "discovered": "2021-10-08 14:48:45.937123" + }, + { + "post_title": "Kurier", + "group_name": "spook", + "discovered": "2021-10-09 01:36:00.518080" + }, + { + "post_title": "TV FUEGO", + "group_name": "spook", + "discovered": "2021-10-09 08:14:35.389056" + }, + { + "post_title": "Audras & Delaunois", + "group_name": "spook", + "discovered": "2021-10-09 14:48:04.291927" + }, + { + "post_title": "watermarkbeachr...", + "group_name": "lockbit2", + "discovered": "2021-10-09 20:15:24.028708" + }, + { + "post_title": "aisc-airbus.com", + "group_name": "lockbit2", + "discovered": "2021-10-09 20:15:24.039895" + }, + { + "post_title": "weber-betonpump...", + "group_name": "lockbit2", + "discovered": "2021-10-09 20:15:24.050969" + }, + { + "post_title": "Sbc Studio", + "group_name": "spook", + "discovered": "2021-10-10 05:45:50.812287" + }, + { + "post_title": "CABINET FONT GUILLOT", + "group_name": "spook", + "discovered": "2021-10-10 15:17:08.133024" + }, + { + "post_title": "ceoempowers.org", + "group_name": "lockbit2", + "discovered": "2021-10-10 20:11:30.521439" + }, + { + "post_title": "hybuilding.com....", + "group_name": "lockbit2", + "discovered": "2021-10-10 22:19:57.538650" + }, + { + "post_title": "nofeurope.com", + "group_name": "lockbit2", + "discovered": "2021-10-10 22:19:57.550055" + }, + { + "post_title": "Ferretti International", + "group_name": "spook", + "discovered": "2021-10-11 16:05:12.149919" + }, + { + "post_title": "VKP", + "group_name": "spook", + "discovered": "2021-10-11 18:29:04.207467" + }, + { + "post_title": "Paris Society", + "group_name": "spook", + "discovered": "2021-10-12 03:01:58.042727" + }, + { + "post_title": "Neofidelys", + "group_name": "spook", + "discovered": "2021-10-12 04:04:02.321996" + }, + { + "post_title": "riversidetwp.or...", + "group_name": "lockbit2", + "discovered": "2021-10-12 12:19:19.571549" + }, + { + "post_title": "cera", + "group_name": "lockbit2", + "discovered": "2021-10-12 12:19:19.878220" + }, + { + "post_title": "Distribuidora de Industrias Nacionales", + "group_name": "blackbyte", + "discovered": "2021-10-12 15:24:50.295070" + }, + { + "post_title": "planitox.com.br", + "group_name": "lockbit2", + "discovered": "2021-10-12 18:21:28.986832" + }, + { + "post_title": "Princess Yachts International", + "group_name": "spook", + "discovered": "2021-10-13 03:04:34.596222" + }, + { + "post_title": "hitrac-engineer...", + "group_name": "lockbit2", + "discovered": "2021-10-13 11:59:00.160449" + }, + { + "post_title": "wolfbergalvarez...", + "group_name": "lockbit2", + "discovered": "2021-10-13 11:59:00.172898" + }, + { + "post_title": "Statcomm", + "group_name": "blackbyte", + "discovered": "2021-10-15 00:31:05.383532" + }, + { + "post_title": "Medical Designs", + "group_name": "blackbyte", + "discovered": "2021-10-15 00:31:05.398147" + }, + { + "post_title": "DACOLL.CO.UK FILES ", + "group_name": "clop", + "discovered": "2021-10-15 00:31:07.192486" + }, + { + "post_title": "STRATISVISUALS.COM", + "group_name": "clop", + "discovered": "2021-10-15 00:31:07.354216" + }, + { + "post_title": "PTT Exploration and Production - 720GB", + "group_name": "revil", + "discovered": "2021-10-15 00:31:08.040931" + }, + { + "post_title": "alwatania.sa", + "group_name": "lockbit2", + "discovered": "2021-10-15 04:09:00.011237" + }, + { + "post_title": "wataniaind.com", + "group_name": "lockbit2", + "discovered": "2021-10-15 04:09:00.022629" + }, + { + "post_title": "uvisionuav.com", + "group_name": "lockbit2", + "discovered": "2021-10-15 04:09:00.034151" + }, + { + "post_title": "wmlaw.com.au", + "group_name": "lockbit2", + "discovered": "2021-10-15 04:09:00.045086" + }, + { + "post_title": "sb-kc.com", + "group_name": "lockbit2", + "discovered": "2021-10-15 13:10:58.621617" + }, + { + "post_title": "uslogic.com", + "group_name": "lockbit2", + "discovered": "2021-10-16 08:05:58.436102" + }, + { + "post_title": "valleyregionalt...", + "group_name": "lockbit2", + "discovered": "2021-10-16 08:05:58.447972" + }, + { + "post_title": "Apex Filling Systems", + "group_name": "spook", + "discovered": "2021-10-16 09:05:08.703501" + }, + { + "post_title": "espera.com", + "group_name": "lockbit2", + "discovered": "2021-10-16 10:05:53.067478" + }, + { + "post_title": "NOF CORPORATION", + "group_name": "spook", + "discovered": "2021-10-16 14:07:38.544456" + }, + { + "post_title": "www.lockslaw.com", + "group_name": "payloadbin", + "discovered": "2021-10-16 14:07:41.027207" + }, + { + "post_title": "cassini-technol...", + "group_name": "lockbit2", + "discovered": "2021-10-16 18:08:16.379632" + }, + { + "post_title": "ferrolabella.co...", + "group_name": "lockbit2", + "discovered": "2021-10-17 17:22:41.920735" + }, + { + "post_title": "Crowder Construction Company", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.846109" + }, + { + "post_title": "Real Time Consultants, Inc", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.858592" + }, + { + "post_title": "SEIU Local 888", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.870493" + }, + { + "post_title": "Graff Diamonds", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.882332" + }, + { + "post_title": "EXAIR", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.894094" + }, + { + "post_title": "Galloway Research Service", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.905876" + }, + { + "post_title": "Nakisa", + "group_name": "conti", + "discovered": "2021-10-17 21:42:54.922875" + }, + { + "post_title": "Grupo Vía", + "group_name": "spook", + "discovered": "2021-10-18 05:17:27.703144" + }, + { + "post_title": "atento.com", + "group_name": "lockbit2", + "discovered": "2021-10-18 10:23:30.016642" + }, + { + "post_title": "JVCKenwood", + "group_name": "conti", + "discovered": "2021-10-18 18:20:01.344974" + }, + { + "post_title": "Toos Asphalt Company", + "group_name": "spook", + "discovered": "2021-10-18 18:52:50.780793" + }, + { + "post_title": "Hall Technologies Inc", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:46.978987" + }, + { + "post_title": "InfoSync IT Solutions", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:46.991281" + }, + { + "post_title": "CreateInfor", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.003261" + }, + { + "post_title": "Campus Sacre Coeur Wien Gymnasium", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.015255" + }, + { + "post_title": "Price Davis LLC", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.027274" + }, + { + "post_title": "QPharma", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.039114" + }, + { + "post_title": "Western Urethane", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.051105" + }, + { + "post_title": "Our Lady's Abingdon", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.063232" + }, + { + "post_title": "Lesk Engineering", + "group_name": "pysa", + "discovered": "2021-10-18 20:21:47.074686" + }, + { + "post_title": "Page Automation", + "group_name": "spook", + "discovered": "2021-10-19 02:32:06.873973" + }, + { + "post_title": "All County Surveying Inc", + "group_name": "spook", + "discovered": "2021-10-19 04:17:58.906919" + }, + { + "post_title": "dawsoncountyne.org", + "group_name": "payloadbin", + "discovered": "2021-10-19 12:18:38.452473" + }, + { + "post_title": "GENERALE PREFABBRICATI SPA", + "group_name": "blackbyte", + "discovered": "2021-10-19 14:14:51.009733" + }, + { + "post_title": "BOLTONUSA.COM", + "group_name": "clop", + "discovered": "2021-10-19 18:19:43.743005" + }, + { + "post_title": "ABSOLUTERESULTS.COM", + "group_name": "clop", + "discovered": "2021-10-19 18:19:43.755696" + }, + { + "post_title": "North Island", + "group_name": "spook", + "discovered": "2021-10-19 18:49:19.466913" + }, + { + "post_title": "Società Italiana degli Autori ed Editori", + "group_name": "everest", + "discovered": "2021-10-20 06:51:15.458122" + }, + { + "post_title": "zgoda.net", + "group_name": "lockbit2", + "discovered": "2021-10-20 09:51:33.470341" + }, + { + "post_title": "Creative Extruded Products", + "group_name": "conti", + "discovered": "2021-10-20 10:51:25.847286" + }, + { + "post_title": "Glenbrook Automotive Group", + "group_name": "conti", + "discovered": "2021-10-20 11:21:11.158867" + }, + { + "post_title": "TONLYELE.COM", + "group_name": "clop", + "discovered": "2021-10-20 15:22:40.335242" + }, + { + "post_title": "thefoxhillclub....", + "group_name": "lockbit2", + "discovered": "2021-10-20 18:53:26.713923" + }, + { + "post_title": "www.continental...", + "group_name": "lockbit2", + "discovered": "2021-10-21 08:56:56.810925" + }, + { + "post_title": "https://www.gro...", + "group_name": "lockbit2", + "discovered": "2021-10-21 11:57:59.036350" + }, + { + "post_title": "https://www.mer...", + "group_name": "lockbit2", + "discovered": "2021-10-21 11:57:59.048647" + }, + { + "post_title": "https://www.pea...", + "group_name": "lockbit2", + "discovered": "2021-10-21 11:57:59.060712" + }, + { + "post_title": "SSMSJUSTICE.COM", + "group_name": "clop", + "discovered": "2021-10-21 13:06:42.997014" + }, + { + "post_title": "bataviacontaine...", + "group_name": "lockbit2", + "discovered": "2021-10-21 15:28:13.382259" + }, + { + "post_title": "radium.com.tw", + "group_name": "lockbit2", + "discovered": "2021-10-21 15:28:13.394276" + }, + { + "post_title": "groeflinag.ch", + "group_name": "lockbit2", + "discovered": "2021-10-21 15:28:13.406149" + }, + { + "post_title": "meritresources....", + "group_name": "lockbit2", + "discovered": "2021-10-21 15:28:13.418515" + }, + { + "post_title": "continentalcoun...", + "group_name": "lockbit2", + "discovered": "2021-10-21 15:28:13.432919" + }, + { + "post_title": "urbis.com.hk", + "group_name": "lockbit2", + "discovered": "2021-10-21 16:34:59.053357" + }, + { + "post_title": "The National Math and Science Initiative", + "group_name": "conti", + "discovered": "2021-10-21 18:00:53.217142" + }, + { + "post_title": "www.datastorage...", + "group_name": "lockbit2", + "discovered": "2021-10-22 02:19:10.541937" + }, + { + "post_title": "selinigroup.it", + "group_name": "lockbit2", + "discovered": "2021-10-22 02:19:10.553815" + }, + { + "post_title": "trivalleypc.com", + "group_name": "groove", + "discovered": "2021-10-22 02:38:42.231840" + }, + { + "post_title": "wnj.com", + "group_name": "lockbit2", + "discovered": "2021-10-22 08:56:03.285285" + }, + { + "post_title": "srstlaw.com", + "group_name": "lockbit2", + "discovered": "2021-10-22 08:56:03.300430" + }, + { + "post_title": "datastorageip.c...", + "group_name": "lockbit2", + "discovered": "2021-10-22 10:20:17.995066" + }, + { + "post_title": "hagerstownpd.org", + "group_name": "groove", + "discovered": "2021-10-22 15:56:41.159476" + }, + { + "post_title": "Announcement. ReviLives.", + "group_name": "conti", + "discovered": "2021-10-22 16:59:20.503187" + }, + { + "post_title": "Weiss Properties", + "group_name": "pysa", + "discovered": "2021-10-22 16:59:20.544313" + }, + { + "post_title": "Ruskin Community High School", + "group_name": "pysa", + "discovered": "2021-10-22 16:59:20.556170" + }, + { + "post_title": "Townley Grammar School", + "group_name": "pysa", + "discovered": "2021-10-22 16:59:20.567979" + }, + { + "post_title": "Albireo Energy", + "group_name": "conti", + "discovered": "2021-10-22 17:52:25.170334" + }, + { + "post_title": "Revil", + "group_name": "arvinclub", + "discovered": "2021-10-22 20:50:10.942741" + }, + { + "post_title": "therecord.media 30k USD", + "group_name": "groove", + "discovered": "2021-10-23 10:53:48.469794" + }, + { + "post_title": "Про русских в США", + "group_name": "groove", + "discovered": "2021-10-23 10:53:48.481704" + }, + { + "post_title": "DiGioia Gray & Associates, LLC", + "group_name": "blackbyte", + "discovered": "2021-10-23 15:55:49.261916" + }, + { + "post_title": "episcopalretirement.com Возможна утечка", + "group_name": "groove", + "discovered": "2021-10-23 17:04:08.394683" + }, + { + "post_title": "Reliable Parts", + "group_name": "conti", + "discovered": "2021-10-23 18:21:49.155227" + }, + { + "post_title": "Vaughn Industries", + "group_name": "conti", + "discovered": "2021-10-23 18:21:49.170075" + }, + { + "post_title": "Schimberg Co.", + "group_name": "conti", + "discovered": "2021-10-23 18:21:49.185035" + }, + { + "post_title": "Beedie", + "group_name": "conti", + "discovered": "2021-10-23 18:52:19.509439" + }, + { + "post_title": "Sykes Cottages", + "group_name": "conti", + "discovered": "2021-10-23 19:20:50.111807" + }, + { + "post_title": "madejwrobel.pl", + "group_name": "lockbit2", + "discovered": "2021-10-23 19:53:31.843038" + }, + { + "post_title": "DCI, Inc.", + "group_name": "conti", + "discovered": "2021-10-23 19:53:33.779561" + }, + { + "post_title": "Ideal Printers", + "group_name": "conti", + "discovered": "2021-10-23 19:53:33.796479" + }, + { + "post_title": "Grupo Alter", + "group_name": "conti", + "discovered": "2021-10-23 19:53:33.809225" + }, + { + "post_title": "Porto Seguro", + "group_name": "conti", + "discovered": "2021-10-23 20:20:43.310198" + }, + { + "post_title": "Artsana", + "group_name": "conti", + "discovered": "2021-10-23 20:57:56.159772" + }, + { + "post_title": "Obeikan Investment Group", + "group_name": "conti", + "discovered": "2021-10-23 20:57:56.174870" + }, + { + "post_title": "vidisha.kvs.ac.in", + "group_name": "arvinclub", + "discovered": "2021-10-24 04:20:10.174672" + }, + { + "post_title": "SPF Precut Lumber", + "group_name": "conti", + "discovered": "2021-10-24 07:21:21.338259" + }, + { + "post_title": "rockportmusic.o...", + "group_name": "lockbit2", + "discovered": "2021-10-24 09:29:29.861791" + }, + { + "post_title": "galaxybuilders....", + "group_name": "lockbit2", + "discovered": "2021-10-24 09:29:29.874532" + }, + { + "post_title": "Digicel Group", + "group_name": "ransomexx", + "discovered": "2021-10-24 21:49:13.019740" + }, + { + "post_title": "https://www.med...", + "group_name": "lockbit2", + "discovered": "2021-10-25 09:25:26.772228" + }, + { + "post_title": "Enviroplas", + "group_name": "conti", + "discovered": "2021-10-25 14:27:22.042563" + }, + { + "post_title": "Barnes Professional Eye Care", + "group_name": "conti", + "discovered": "2021-10-25 14:27:22.056797" + }, + { + "post_title": "SAN CARLO GRUPPO ALIMENTARE SPA", + "group_name": "conti", + "discovered": "2021-10-25 14:55:06.999492" + }, + { + "post_title": "MINT Investments", + "group_name": "blackbyte", + "discovered": "2021-10-25 17:04:58.677213" + }, + { + "post_title": "https://www.cti...", + "group_name": "lockbit2", + "discovered": "2021-10-25 17:04:58.919630" + }, + { + "post_title": "Pfertner GmbH Immobilienverwaltung", + "group_name": "conti", + "discovered": "2021-10-25 17:58:29.239268" + }, + { + "post_title": "Motor Appliance Corporation", + "group_name": "pysa", + "discovered": "2021-10-25 17:58:29.271675" + }, + { + "post_title": "Suntide Commercial Realty", + "group_name": "pysa", + "discovered": "2021-10-25 17:58:29.286529" + }, + { + "post_title": "Cenikor", + "group_name": "pysa", + "discovered": "2021-10-25 17:58:29.299113" + }, + { + "post_title": "Höerskool Labori Paarl", + "group_name": "pysa", + "discovered": "2021-10-25 17:58:29.314122" + }, + { + "post_title": "delete", + "group_name": "lockbit2", + "discovered": "2021-10-25 20:55:42.838974" + }, + { + "post_title": "cti.group", + "group_name": "lockbit2", + "discovered": "2021-10-25 23:26:13.276409" + }, + { + "post_title": "mediacrush.co.i...", + "group_name": "lockbit2", + "discovered": "2021-10-25 23:26:13.290444" + }, + { + "post_title": "laserexcel.com", + "group_name": "lockbit2", + "discovered": "2021-10-26 01:43:45.009138" + }, + { + "post_title": "https://ville-s...", + "group_name": "lockbit2", + "discovered": "2021-10-26 10:27:02.169326" + }, + { + "post_title": "dunndev.com", + "group_name": "lockbit2", + "discovered": "2021-10-26 10:27:02.183241" + }, + { + "post_title": "idline.fr", + "group_name": "lockbit2", + "discovered": "2021-10-26 13:56:16.771645" + }, + { + "post_title": "Wayne Automatic Fire Sprinklers, Inc.", + "group_name": "xinglocker", + "discovered": "2021-10-26 13:56:17.766530" + }, + { + "post_title": "Ideal Living", + "group_name": "conti", + "discovered": "2021-10-26 14:26:52.786653" + }, + { + "post_title": "SMARTERASP.NET", + "group_name": "clop", + "discovered": "2021-10-26 14:54:39.031905" + }, + { + "post_title": "le-inc.com", + "group_name": "lockbit2", + "discovered": "2021-10-26 17:24:15.559964" + }, + { + "post_title": "Medical Healthcare Solutions, Inc", + "group_name": "conti", + "discovered": "2021-10-26 17:59:18.263901" + }, + { + "post_title": "ville-saintaffr...", + "group_name": "lockbit2", + "discovered": "2021-10-26 23:49:51.828710" + }, + { + "post_title": "lawyersforemplo...", + "group_name": "lockbit2", + "discovered": "2021-10-27 08:59:06.850873" + }, + { + "post_title": "SLIMSTOCK.COM", + "group_name": "clop", + "discovered": "2021-10-27 13:56:06.657015" + }, + { + "post_title": "NATUS.COM", + "group_name": "clop", + "discovered": "2021-10-27 14:54:20.240699" + }, + { + "post_title": "QUANTUMGROUP.COM", + "group_name": "clop", + "discovered": "2021-10-27 15:55:56.162437" + }, + { + "post_title": "tedia.com", + "group_name": "lockbit2", + "discovered": "2021-10-27 17:59:46.420776" + }, + { + "post_title": "http://www.movi...", + "group_name": "lockbit2", + "discovered": "2021-10-27 21:24:25.553702" + }, + { + "post_title": "movingstation.c...", + "group_name": "lockbit2", + "discovered": "2021-10-28 02:38:14.499264" + }, + { + "post_title": "www.psomagen.co...", + "group_name": "lockbit2", + "discovered": "2021-10-28 06:54:17.812791" + }, + { + "post_title": "stehimpuls.de", + "group_name": "lockbit2", + "discovered": "2021-10-28 08:57:12.760369" + }, + { + "post_title": "www.parkhotel.m...", + "group_name": "lockbit2", + "discovered": "2021-10-28 08:57:12.774256" + }, + { + "post_title": "pandol.com", + "group_name": "lockbit2", + "discovered": "2021-10-28 13:28:19.973414" + }, + { + "post_title": "H Hotels Collection", + "group_name": "blackbyte", + "discovered": "2021-10-28 13:52:00.876859" + }, + { + "post_title": "katzmanproduce....", + "group_name": "lockbit2", + "discovered": "2021-10-28 17:59:10.132352" + }, + { + "post_title": "roadrebel.com", + "group_name": "lockbit2", + "discovered": "2021-10-28 17:59:10.147017" + }, + { + "post_title": "parkhotel.mk", + "group_name": "lockbit2", + "discovered": "2021-10-28 17:59:10.167737" + }, + { + "post_title": "psomagen.com", + "group_name": "lockbit2", + "discovered": "2021-10-28 17:59:10.181900" + }, + { + "post_title": "amina-treuhand....", + "group_name": "lockbit2", + "discovered": "2021-10-28 19:02:18.478659" + }, + { + "post_title": "rijeka-airport....", + "group_name": "lockbit2", + "discovered": "2021-10-29 15:25:47.967154" + }, + { + "post_title": "Marketing Alliance Group", + "group_name": "conti", + "discovered": "2021-10-29 19:53:24.392972" + }, + { + "post_title": "Los Gatos Tomato Products", + "group_name": "conti", + "discovered": "2021-10-29 21:25:52.991836" + }, + { + "post_title": "Major Wire Industries", + "group_name": "conti", + "discovered": "2021-10-29 21:25:53.013513" + }, + { + "post_title": "ILLUM", + "group_name": "conti", + "discovered": "2021-10-29 21:25:53.037546" + }, + { + "post_title": "Perrin", + "group_name": "conti", + "discovered": "2021-10-29 21:25:53.059161" + }, + { + "post_title": "Acorn Stairlifts", + "group_name": "conti", + "discovered": "2021-10-29 21:25:53.080873" + }, + { + "post_title": "Я не пью виски но с ним бы выпил", + "group_name": "groove", + "discovered": "2021-10-30 10:25:18.268983" + }, + { + "post_title": "logi-cv.com", + "group_name": "lockbit2", + "discovered": "2021-10-30 16:28:26.545540" + }, + { + "post_title": "LINICAL doesn't care about digital hygiene", + "group_name": "ragnarlocker", + "discovered": "2021-10-30 18:59:02.091617" + }, + { + "post_title": "logcabinhomes.c...", + "group_name": "lockbit2", + "discovered": "2021-10-31 13:27:48.933651" + }, + { + "post_title": "Napili Kai Foundation Gallery", + "group_name": "blackbyte", + "discovered": "2021-10-31 14:57:41.518102" + }, + { + "post_title": "Power Plumbing", + "group_name": "conti", + "discovered": "2021-11-01 00:30:27.976566" + }, + { + "post_title": "Finite Recruitment", + "group_name": "conti", + "discovered": "2021-11-01 08:26:32.630780" + }, + { + "post_title": "www.radium.com....", + "group_name": "lockbit2", + "discovered": "2021-11-01 13:23:45.339444" + }, + { + "post_title": "promo.parker.co...", + "group_name": "lockbit2", + "discovered": "2021-11-01 13:23:45.354627" + }, + { + "post_title": "comune.gonzaga....", + "group_name": "lockbit2", + "discovered": "2021-11-01 13:23:45.368889" + }, + { + "post_title": "https://gvalue....", + "group_name": "lockbit2", + "discovered": "2021-11-01 13:23:45.389313" + }, + { + "post_title": "morganskenderia...", + "group_name": "lockbit2", + "discovered": "2021-11-01 17:04:47.582291" + }, + { + "post_title": "bdtaid.com", + "group_name": "lockbit2", + "discovered": "2021-11-01 17:04:47.598314" + }, + { + "post_title": "immodelaet.be", + "group_name": "lockbit2", + "discovered": "2021-11-01 17:04:47.616309" + }, + { + "post_title": "Southland Holdings", + "group_name": "conti", + "discovered": "2021-11-02 01:11:23.894461" + }, + { + "post_title": "dtstechnical.ca", + "group_name": "lockbit2", + "discovered": "2021-11-02 06:27:44.727988" + }, + { + "post_title": "wpdn.net", + "group_name": "lockbit2", + "discovered": "2021-11-02 06:27:44.742779" + }, + { + "post_title": "gvalue.com", + "group_name": "lockbit2", + "discovered": "2021-11-02 06:27:44.780589" + }, + { + "post_title": "benefitexpress", + "group_name": "conti", + "discovered": "2021-11-02 18:29:37.933116" + }, + { + "post_title": "socage", + "group_name": "conti", + "discovered": "2021-11-02 18:56:45.638781" + }, + { + "post_title": "Graff Diamonds - Announcement", + "group_name": "conti", + "discovered": "2021-11-02 20:55:54.991154" + }, + { + "post_title": "tornel.com.mx", + "group_name": "lockbit2", + "discovered": "2021-11-02 22:20:05.467151" + }, + { + "post_title": "Regence Footwear", + "group_name": "blackbyte", + "discovered": "2021-11-03 13:25:49.474008" + }, + { + "post_title": "PVR Ltd.", + "group_name": "quantum", + "discovered": "2021-11-04 03:43:14.914255" + }, + { + "post_title": "TILIA GROUP", + "group_name": "quantum", + "discovered": "2021-11-04 03:43:14.943178" + }, + { + "post_title": "groweeisen.com", + "group_name": "lockbit2", + "discovered": "2021-11-04 13:51:33.800125" + }, + { + "post_title": "Armour Transportation Systems", + "group_name": "blackmatter", + "discovered": "2021-11-04 16:05:45.490240" + }, + { + "post_title": "Home State Bank", + "group_name": "blackmatter", + "discovered": "2021-11-04 16:05:45.540701" + }, + { + "post_title": "Jobbers Meat Packing Co., Inc.", + "group_name": "blackmatter", + "discovered": "2021-11-04 16:05:45.563379" + }, + { + "post_title": "Keycentrix", + "group_name": "blackmatter", + "discovered": "2021-11-04 16:05:45.582038" + }, + { + "post_title": "National Beverage", + "group_name": "blackmatter", + "discovered": "2021-11-04 16:05:45.602653" + }, + { + "post_title": "ARM CHINA", + "group_name": "conti", + "discovered": "2021-11-04 19:20:40.613379" + }, + { + "post_title": "Announcement", + "group_name": "conti", + "discovered": "2021-11-04 20:23:50.144612" + }, + { + "post_title": "Outdoor Venture Corporation (OVC)", + "group_name": "suncrypt", + "discovered": "2021-11-05 00:30:42.288134" + }, + { + "post_title": "plumascounty.us", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.672805" + }, + { + "post_title": "waclighting.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.692003" + }, + { + "post_title": "waveridernurser...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.707479" + }, + { + "post_title": "cepimanagement....", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.722554" + }, + { + "post_title": "logistia.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.737734" + }, + { + "post_title": "fandi.fr", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.753343" + }, + { + "post_title": "arrowheadadvanc...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.768642" + }, + { + "post_title": "optimumdesign.c...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.784371" + }, + { + "post_title": "mym.com.pe", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.799884" + }, + { + "post_title": "trueblueenviron...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.815556" + }, + { + "post_title": "owenscarolina.c...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.831604" + }, + { + "post_title": "mcmanislaw.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.847644" + }, + { + "post_title": "interfor.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.863332" + }, + { + "post_title": "rttax.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.878889" + }, + { + "post_title": "besttaxfiler.co...", + "group_name": "lockbit2", + "discovered": "2021-11-06 07:33:07.894479" + }, + { + "post_title": "MCH-GROUP.COM", + "group_name": "clop", + "discovered": "2021-11-06 07:33:09.737408" + }, + { + "post_title": "ENESCO.COM FILES FILES PART1 - Chase, Creative\\Rainbow Mountain PUBLISHED", + "group_name": "clop", + "discovered": "2021-11-06 07:33:09.831853" + }, + { + "post_title": "M3 Inc.", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.895847" + }, + { + "post_title": "THE METRO GROUP, INC.", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.911681" + }, + { + "post_title": "MUTUAL MATERIALS", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.927105" + }, + { + "post_title": "Bochane Groep", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.942622" + }, + { + "post_title": "EZ Loader", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.958059" + }, + { + "post_title": "lkma", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.973430" + }, + { + "post_title": "STAR REFRIGERATION LIMITED", + "group_name": "conti", + "discovered": "2021-11-06 07:33:10.988916" + }, + { + "post_title": "Agricorp Company", + "group_name": "conti", + "discovered": "2021-11-06 07:33:11.004408" + }, + { + "post_title": "PORTALP", + "group_name": "conti", + "discovered": "2021-11-06 09:51:57.651502" + }, + { + "post_title": "autolaundrysyst...", + "group_name": "lockbit2", + "discovered": "2021-11-06 12:58:15.787825" + }, + { + "post_title": "VIENNA INSURANCE GROUP", + "group_name": "conti", + "discovered": "2021-11-06 12:58:18.702882" + }, + { + "post_title": "cilentospa.it", + "group_name": "lockbit2", + "discovered": "2021-11-06 19:54:33.313830" + }, + { + "post_title": "HUDSON BROTHERS Construction Company", + "group_name": "conti", + "discovered": "2021-11-06 19:54:36.297616" + }, + { + "post_title": "eban.com", + "group_name": "lockbit2", + "discovered": "2021-11-06 21:21:06.013455" + }, + { + "post_title": "nurihiko.co.jp", + "group_name": "lockbit2", + "discovered": "2021-11-06 21:21:06.032403" + }, + { + "post_title": "INDIAN CREEK", + "group_name": "conti", + "discovered": "2021-11-06 21:48:16.732362" + }, + { + "post_title": "DALLOYAU", + "group_name": "conti", + "discovered": "2021-11-06 22:20:57.225329" + }, + { + "post_title": "chatrium.com", + "group_name": "lockbit2", + "discovered": "2021-11-07 03:45:56.298844" + }, + { + "post_title": "Royale.co.uk", + "group_name": "lockbit2", + "discovered": "2021-11-07 03:45:56.314507" + }, + { + "post_title": "MEYER CORPORATION", + "group_name": "conti", + "discovered": "2021-11-07 03:45:58.853590" + }, + { + "post_title": "TRINA SOLAR", + "group_name": "conti", + "discovered": "2021-11-07 03:45:58.868539" + }, + { + "post_title": "eberlesrl.com", + "group_name": "lockbit2", + "discovered": "2021-11-07 08:55:55.970819" + }, + { + "post_title": "JEAN FLOC’H", + "group_name": "conti", + "discovered": "2021-11-07 08:55:59.274632" + }, + { + "post_title": "ARGOS CONNECT ENERGY", + "group_name": "conti", + "discovered": "2021-11-08 01:02:46.493667" + }, + { + "post_title": "Universitat Autònoma de Barcelona", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.534184" + }, + { + "post_title": "Ferrara", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.548617" + }, + { + "post_title": "City of Bridgeport, WV", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.567624" + }, + { + "post_title": "Diputación de Segovia", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.583048" + }, + { + "post_title": "ProActive Works", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.598733" + }, + { + "post_title": "Family Dentist Newbury", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.613772" + }, + { + "post_title": "Florida Heart Associates", + "group_name": "pysa", + "discovered": "2021-11-08 14:17:49.628134" + }, + { + "post_title": "Metaenergia", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.750121" + }, + { + "post_title": "Raj Transport Inc.", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.768329" + }, + { + "post_title": "Thunderbird Adventist Academy", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.785944" + }, + { + "post_title": "Astera Software", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.804450" + }, + { + "post_title": "Jalasoft", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.822501" + }, + { + "post_title": "AECOM", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.839859" + }, + { + "post_title": "Vision Source", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.856218" + }, + { + "post_title": "Community Brands", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.874277" + }, + { + "post_title": "Family Dental Health", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.891992" + }, + { + "post_title": "Alternatives, Inc.", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.909513" + }, + { + "post_title": "Bryant Industrial Services", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.926686" + }, + { + "post_title": "Capitol Beauty School", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.942926" + }, + { + "post_title": "MPRL E&P", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.959755" + }, + { + "post_title": "Department of Justice and Constitutional Development", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.977175" + }, + { + "post_title": "Niemi Bil i LuleÃ¥", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:34.994171" + }, + { + "post_title": "Emi Jay", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.011307" + }, + { + "post_title": "Pitts Baptist Church", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.028617" + }, + { + "post_title": "Gulfport MS", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.044471" + }, + { + "post_title": "La Bodega", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.060806" + }, + { + "post_title": "Comstock Johnson Architects", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.077494" + }, + { + "post_title": "EHS", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.093407" + }, + { + "post_title": "MVS Mailers", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.109928" + }, + { + "post_title": "Garner Dental Group", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.126143" + }, + { + "post_title": "Property Damage Restoration", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.142203" + }, + { + "post_title": "Westvale Primary School", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.158416" + }, + { + "post_title": "Hickory Veterinary Hospital", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.174822" + }, + { + "post_title": "Lucton School", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.192685" + }, + { + "post_title": "SWL", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.210248" + }, + { + "post_title": "ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.227496" + }, + { + "post_title": "Eason Horticultural Resources", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.245032" + }, + { + "post_title": "The Leschaco Group", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.262600" + }, + { + "post_title": "Nordic Pharma", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.280162" + }, + { + "post_title": "Rockbridge and Bath County", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.297340" + }, + { + "post_title": "Dr Schneider", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.314391" + }, + { + "post_title": "Stratford Land", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.332017" + }, + { + "post_title": "Schmincke Künstlerfarben", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.349562" + }, + { + "post_title": "Premier Energy", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.366672" + }, + { + "post_title": "Emkay Food Sales", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.384481" + }, + { + "post_title": "Woodchurch High School", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.402091" + }, + { + "post_title": "Westmont Helena", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.419542" + }, + { + "post_title": "CarpenterProjects", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.436831" + }, + { + "post_title": "Las Vegas Cancer Center", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.453634" + }, + { + "post_title": "Fly Arik Air", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.470282" + }, + { + "post_title": "Bayonet", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.487329" + }, + { + "post_title": "itimCloud", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.503462" + }, + { + "post_title": "CHRYSO", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.523311" + }, + { + "post_title": "Skatetown", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.539285" + }, + { + "post_title": "UEMOA", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.555865" + }, + { + "post_title": "R.E. Pedrotti Co.", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.575557" + }, + { + "post_title": "Rusty Hardin & Associates", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.591273" + }, + { + "post_title": "Kent County Council", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.608213" + }, + { + "post_title": "The Skinners Kent Academy", + "group_name": "pysa", + "discovered": "2021-11-08 18:46:35.626229" + }, + { + "post_title": "abiom.nl", + "group_name": "lockbit2", + "discovered": "2021-11-08 22:44:46.984438" + }, + { + "post_title": "cool-pak.com", + "group_name": "lockbit2", + "discovered": "2021-11-08 22:44:47.001125" + }, + { + "post_title": "ONTEC Automation", + "group_name": "conti", + "discovered": "2021-11-08 23:45:04.235313" + }, + { + "post_title": "evolvedevelopme...", + "group_name": "lockbit2", + "discovered": "2021-11-09 08:51:19.753951" + }, + { + "post_title": "gunninglafazia....", + "group_name": "lockbit2", + "discovered": "2021-11-09 13:23:18.086616" + }, + { + "post_title": "Hutt", + "group_name": "conti", + "discovered": "2021-11-09 15:21:16.498085" + }, + { + "post_title": "transaher.es Pa...", + "group_name": "lockbit2", + "discovered": "2021-11-09 17:22:34.936688" + }, + { + "post_title": "abvalve.com", + "group_name": "lockbit2", + "discovered": "2021-11-09 19:20:28.692798" + }, + { + "post_title": "breslowstarling...", + "group_name": "lockbit2", + "discovered": "2021-11-09 19:20:28.708506" + }, + { + "post_title": "Electra Link", + "group_name": "conti", + "discovered": "2021-11-09 19:20:31.843664" + }, + { + "post_title": "betsaisonparago...", + "group_name": "lockbit2", + "discovered": "2021-11-09 20:47:17.474713" + }, + { + "post_title": "EQUITY Bank", + "group_name": "conti", + "discovered": "2021-11-10 03:44:46.627687" + }, + { + "post_title": "thinkcaspian.co...", + "group_name": "lockbit2", + "discovered": "2021-11-10 10:46:13.973484" + }, + { + "post_title": "comfacundi.com....", + "group_name": "lockbit2", + "discovered": "2021-11-10 10:46:13.991181" + }, + { + "post_title": "cardigos.com", + "group_name": "lockbit2", + "discovered": "2021-11-10 17:21:42.421925" + }, + { + "post_title": "home.hktdc.com", + "group_name": "lockbit2", + "discovered": "2021-11-10 17:21:42.443684" + }, + { + "post_title": "ideaitaliausa.c...", + "group_name": "lockbit2", + "discovered": "2021-11-10 17:21:42.461719" + }, + { + "post_title": "daviscrump.com", + "group_name": "lockbit2", + "discovered": "2021-11-10 17:49:37.376183" + }, + { + "post_title": "Cabinet Remy Le Bonnois / Data on sale", + "group_name": "everest", + "discovered": "2021-11-11 08:20:43.839751" + }, + { + "post_title": "Greymouse VA PTY Ltd", + "group_name": "conti", + "discovered": "2021-11-11 11:17:29.016497" + }, + { + "post_title": "Axio", + "group_name": "conti", + "discovered": "2021-11-11 17:20:49.801971" + }, + { + "post_title": "Axiсorp GMBH", + "group_name": "conti", + "discovered": "2021-11-11 19:19:10.057631" + }, + { + "post_title": "Cogan Wire and Metal Products Ltd", + "group_name": "conti", + "discovered": "2021-11-11 19:49:32.866812" + }, + { + "post_title": "Orgill, Inc.", + "group_name": "conti", + "discovered": "2021-11-11 19:49:32.883159" + }, + { + "post_title": "VISTRA", + "group_name": "conti", + "discovered": "2021-11-11 19:49:32.899419" + }, + { + "post_title": "rintal.com", + "group_name": "lockbit2", + "discovered": "2021-11-12 16:22:44.332077" + }, + { + "post_title": "COMMUNAUTÉ DE COMMUNES PAYS D’APT LUBERON", + "group_name": "conti", + "discovered": "2021-11-12 16:55:58.081995" + }, + { + "post_title": "http://bsg-llp....", + "group_name": "lockbit2", + "discovered": "2021-11-12 22:17:26.998760" + }, + { + "post_title": "barfieldinc.com", + "group_name": "lockbit2", + "discovered": "2021-11-12 22:17:27.014942" + }, + { + "post_title": "bsg-llp.com", + "group_name": "lockbit2", + "discovered": "2021-11-12 23:14:51.847778" + }, + { + "post_title": "mfitexas.com", + "group_name": "lockbit2", + "discovered": "2021-11-13 07:43:47.787928" + }, + { + "post_title": "era.org.uk", + "group_name": "lockbit2", + "discovered": "2021-11-13 07:43:47.803884" + }, + { + "post_title": "The Glass House", + "group_name": "blackbyte", + "discovered": "2021-11-13 08:19:18.670300" + }, + { + "post_title": "ASPECT STUDIOS ASIA PTY LTD", + "group_name": "blackbyte", + "discovered": "2021-11-13 08:19:18.687183" + }, + { + "post_title": "Visage Imaging", + "group_name": "blackbyte", + "discovered": "2021-11-13 08:19:18.703719" + }, + { + "post_title": "Cabinet Remy Le Bonnois / Data on sale / Charlie Hebdo", + "group_name": "everest", + "discovered": "2021-11-13 18:45:14.039291" + }, + { + "post_title": "Società Italiana degli Autori ed Editori / Data on sale", + "group_name": "everest", + "discovered": "2021-11-13 18:45:14.055211" + }, + { + "post_title": "Police Brazil", + "group_name": "everest", + "discovered": "2021-11-15 08:44:28.258983" + }, + { + "post_title": "cloudpros.com", + "group_name": "lockbit2", + "discovered": "2021-11-15 09:51:16.560039" + }, + { + "post_title": "Williams & Rowe Company, Inc.", + "group_name": "blackbyte", + "discovered": "2021-11-15 16:10:55.084548" + }, + { + "post_title": "Purifoy Chevrolet Co.", + "group_name": "blackbyte", + "discovered": "2021-11-15 16:10:55.465531" + }, + { + "post_title": "Emery Jensen Distribution", + "group_name": "blackbyte", + "discovered": "2021-11-15 16:10:55.684522" + }, + { + "post_title": "Canada West Land", + "group_name": "blackbyte", + "discovered": "2021-11-15 16:10:55.931075" + }, + { + "post_title": "Component Assembly Systems", + "group_name": "lorenz", + "discovered": "2021-11-15 16:10:56.370474" + }, + { + "post_title": "Aisha Steel-ASML", + "group_name": "conti", + "discovered": "2021-11-16 10:17:31.567627" + }, + { + "post_title": "LOGROS S.A.", + "group_name": "conti", + "discovered": "2021-11-16 10:17:32.001891" + }, + { + "post_title": "Unione dei Comuni Terre di Pianura", + "group_name": "ransomexx", + "discovered": "2021-11-16 10:17:34.305306" + }, + { + "post_title": "Marymount Manhattan College", + "group_name": "conti", + "discovered": "2021-11-16 13:15:27.519680" + }, + { + "post_title": "pkf.com.au", + "group_name": "lockbit2", + "discovered": "2021-11-16 13:55:50.503174" + }, + { + "post_title": "HARTMANN FINANCIAL ADVISORS LLC", + "group_name": "conti", + "discovered": "2021-11-16 18:56:29.030956" + }, + { + "post_title": "essextec.com", + "group_name": "lockbit2", + "discovered": "2021-11-16 19:56:54.660685" + }, + { + "post_title": "JAFTEX Corporation", + "group_name": "conti", + "discovered": "2021-11-16 19:56:58.125824" + }, + { + "post_title": "General RV Center", + "group_name": "conti", + "discovered": "2021-11-17 00:17:26.052165" + }, + { + "post_title": "royole.com", + "group_name": "lockbit2", + "discovered": "2021-11-17 12:12:49.321746" + }, + { + "post_title": "btc-alpha.com", + "group_name": "lockbit2", + "discovered": "2021-11-17 12:12:49.677172" + }, + { + "post_title": "reiss-beck.de", + "group_name": "lockbit2", + "discovered": "2021-11-17 18:12:10.776726" + }, + { + "post_title": "peschl-ultravio...", + "group_name": "lockbit2", + "discovered": "2021-11-17 18:12:11.147205" + }, + { + "post_title": "hanshin-dp.co.j...", + "group_name": "lockbit2", + "discovered": "2021-11-17 18:12:11.436153" + }, + { + "post_title": "ipbridge.co.jp", + "group_name": "lockbit2", + "discovered": "2021-11-17 18:12:11.798108" + }, + { + "post_title": "FTI Group", + "group_name": "conti", + "discovered": "2021-11-18 05:54:34.285080" + }, + { + "post_title": "Area Energy & Electric", + "group_name": "conti", + "discovered": "2021-11-18 13:04:27.031118" + }, + { + "post_title": "HELSA Group International", + "group_name": "conti", + "discovered": "2021-11-19 00:18:46.703377" + }, + { + "post_title": "duncandisabilit...", + "group_name": "lockbit2", + "discovered": "2021-11-19 15:17:10.930760" + }, + { + "post_title": "a1ssi.com", + "group_name": "lockbit2", + "discovered": "2021-11-19 15:17:11.185963" + }, + { + "post_title": "Herman & Kittle Properties Inc.", + "group_name": "suncrypt", + "discovered": "2021-11-19 17:04:05.328327" + }, + { + "post_title": "Hospitality Furnishings & Design Inc.", + "group_name": "suncrypt", + "discovered": "2021-11-19 17:04:05.538587" + }, + { + "post_title": "Not Yet Kameraden!", + "group_name": "conti", + "discovered": "2021-11-19 21:59:06.643798" + }, + { + "post_title": "MINISTRY OF ECONOMY AND FINANCE Peru", + "group_name": "everest", + "discovered": "2021-11-20 11:56:53.670736" + }, + { + "post_title": "apower.com.sg", + "group_name": "lockbit2", + "discovered": "2021-11-20 23:12:07.493638" + }, + { + "post_title": "consortiumlegal...", + "group_name": "lockbit2", + "discovered": "2021-11-21 13:24:55.337156" + }, + { + "post_title": "evans.co.id", + "group_name": "lockbit2", + "discovered": "2021-11-21 13:24:55.560638" + }, + { + "post_title": "telemovil.com.s...", + "group_name": "lockbit2", + "discovered": "2021-11-21 13:24:55.811527" + }, + { + "post_title": "siix.co.jp", + "group_name": "lockbit2", + "discovered": "2021-11-21 13:24:56.037031" + }, + { + "post_title": "systematicatec....", + "group_name": "lockbit2", + "discovered": "2021-11-21 14:58:21.625258" + }, + { + "post_title": "adhhealth.com - more then 1.2Tb data leaaked", + "group_name": "lv", + "discovered": "2021-11-22 03:41:15.119728" + }, + { + "post_title": "mecfond.com", + "group_name": "lockbit2", + "discovered": "2021-11-22 03:59:09.434761" + }, + { + "post_title": "docol.com.br - more then 1.5TB data leaked", + "group_name": "lv", + "discovered": "2021-11-22 03:59:15.250623" + }, + { + "post_title": "redsrugby.com.au - more then 300GB data leaked", + "group_name": "lv", + "discovered": "2021-11-22 03:59:15.506832" + }, + { + "post_title": "Charlie Hebdo", + "group_name": "everest", + "discovered": "2021-11-22 13:03:18.341681" + }, + { + "post_title": "DKS Deutsch Kerrigan LLP", + "group_name": "conti", + "discovered": "2021-11-22 13:03:18.669967" + }, + { + "post_title": "jadecorp", + "group_name": "conti", + "discovered": "2021-11-22 13:03:18.876782" + }, + { + "post_title": "roteritaly.com", + "group_name": "lockbit2", + "discovered": "2021-11-22 15:56:41.218041" + }, + { + "post_title": "wnrllc.com", + "group_name": "lockbit2", + "discovered": "2021-11-22 17:04:59.486828" + }, + { + "post_title": "kankakeetitle.c...", + "group_name": "lockbit2", + "discovered": "2021-11-22 17:04:59.662219" + }, + { + "post_title": "planters-oil.ne...", + "group_name": "lockbit2", + "discovered": "2021-11-22 17:04:59.843561" + }, + { + "post_title": "fluidsealingpro...", + "group_name": "lockbit2", + "discovered": "2021-11-22 17:05:00.034292" + }, + { + "post_title": "reigroup.com", + "group_name": "lv", + "discovered": "2021-11-22 17:17:59.920121" + }, + { + "post_title": "MCP Services LLC", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:09.998609" + }, + { + "post_title": "RocTechnologies", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:10.283111" + }, + { + "post_title": "Starline", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:10.543577" + }, + { + "post_title": "AISD", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:10.801058" + }, + { + "post_title": "Stoningtonschools", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:11.057185" + }, + { + "post_title": "Flagship", + "group_name": "sabbath", + "discovered": "2021-11-22 22:41:11.270369" + }, + { + "post_title": "centerspacehome...", + "group_name": "lockbit2", + "discovered": "2021-11-23 11:15:00.942272" + }, + { + "post_title": "INOXPA", + "group_name": "blackbyte", + "discovered": "2021-11-23 13:05:29.139200" + }, + { + "post_title": "Goodwill of Central and Coastal Virginia, Inc.", + "group_name": "blackbyte", + "discovered": "2021-11-23 13:05:29.570395" + }, + { + "post_title": "Argentina GOV", + "group_name": "everest", + "discovered": "2021-11-23 13:05:33.268104" + }, + { + "post_title": "scotttesting.com - MORE THEN 2.5TB DATA LEAKED", + "group_name": "lv", + "discovered": "2021-11-23 19:55:51.509778" + }, + { + "post_title": "Team Computers Ltd. - Leak", + "group_name": "ragnarlocker", + "discovered": "2021-11-23 21:55:54.414288" + }, + { + "post_title": "mtradeasia.com", + "group_name": "lockbit2", + "discovered": "2021-11-23 22:57:22.954460" + }, + { + "post_title": "Società Italiana degli Autori ed Editori / Information updated", + "group_name": "everest", + "discovered": "2021-11-23 23:57:24.095260" + }, + { + "post_title": "ALPSRX.COM - MORE THEN 150GB DATA LEAKED", + "group_name": "lv", + "discovered": "2021-11-23 23:57:26.208153" + }, + { + "post_title": "jurelus.de", + "group_name": "lockbit2", + "discovered": "2021-11-24 03:12:59.048413" + }, + { + "post_title": "lawrencegroup.n...", + "group_name": "lockbit2", + "discovered": "2021-11-24 08:13:58.370183" + }, + { + "post_title": "atlas.ind.br", + "group_name": "lockbit2", + "discovered": "2021-11-24 16:16:09.122869" + }, + { + "post_title": "EDAN.COM", + "group_name": "clop", + "discovered": "2021-11-25 16:00:25.088087" + }, + { + "post_title": "mpusd.net", + "group_name": "lockbit2", + "discovered": "2021-11-25 22:13:41.444769" + }, + { + "post_title": "IVEQI.Com", + "group_name": "lockbit2", + "discovered": "2021-11-25 22:13:41.744968" + }, + { + "post_title": "ardebolassessor...", + "group_name": "lockbit2", + "discovered": "2021-11-25 22:13:42.005896" + }, + { + "post_title": "vicksburgha.org", + "group_name": "lockbit2", + "discovered": "2021-11-25 22:13:42.226715" + }, + { + "post_title": "inlad.com", + "group_name": "lockbit2", + "discovered": "2021-11-26 01:16:21.135765" + }, + { + "post_title": "Acne Studios", + "group_name": "conti", + "discovered": "2021-11-26 05:55:29.306948" + }, + { + "post_title": "iveqi.com", + "group_name": "lockbit2", + "discovered": "2021-11-26 09:12:15.740128" + }, + { + "post_title": "lenzcontractors...", + "group_name": "lockbit2", + "discovered": "2021-11-26 15:13:40.061361" + }, + { + "post_title": "SWIRESPO.COM", + "group_name": "clop", + "discovered": "2021-11-26 17:16:44.697908" + }, + { + "post_title": "nextech-asia.co...", + "group_name": "lockbit2", + "discovered": "2021-11-27 01:16:06.786220" + }, + { + "post_title": "hsvgroup.talent...", + "group_name": "lockbit2", + "discovered": "2021-11-27 01:16:07.182855" + }, + { + "post_title": "effectual.com", + "group_name": "lockbit2", + "discovered": "2021-11-27 01:16:07.399230" + }, + { + "post_title": "telepro.com.mx", + "group_name": "lockbit2", + "discovered": "2021-11-27 01:16:08.110628" + }, + { + "post_title": "Black Friday has arrived", + "group_name": "everest", + "discovered": "2021-11-27 15:15:38.716417" + }, + { + "post_title": "afcx.co", + "group_name": "arvinclub", + "discovered": "2021-11-28 08:58:45.692485" + }, + { + "post_title": "DUNMORE", + "group_name": "conti", + "discovered": "2021-11-28 11:58:17.648945" + }, + { + "post_title": "Cadence Aerospace", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:03.363583" + }, + { + "post_title": "Match MG", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:03.810942" + }, + { + "post_title": "Landmark Builders", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:04.219498" + }, + { + "post_title": "Bock, Hatch, Lewis & Oppenheim, LLC", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:04.622967" + }, + { + "post_title": "Daylesford Organic", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:04.828991" + }, + { + "post_title": "Arbitech", + "group_name": "snatch", + "discovered": "2021-11-29 00:13:05.259426" + }, + { + "post_title": "Ishida", + "group_name": "snatch", + "discovered": "2021-11-29 00:29:01.818374" + }, + { + "post_title": "Salinen Austria", + "group_name": "snatch", + "discovered": "2021-11-29 00:29:02.433173" + }, + { + "post_title": "APG Neuros", + "group_name": "snatch", + "discovered": "2021-11-29 00:29:02.697806" + }, + { + "post_title": "Amtech Corporation", + "group_name": "snatch", + "discovered": "2021-11-29 00:29:03.091311" + }, + { + "post_title": "Calibrus", + "group_name": "midas", + "discovered": "2021-11-29 00:29:03.379199" + }, + { + "post_title": "Texas Enterprises, Inc (TEI)", + "group_name": "midas", + "discovered": "2021-11-29 00:29:03.884615" + }, + { + "post_title": "G.E.W. CORPORATION LIMITED", + "group_name": "midas", + "discovered": "2021-11-29 01:00:41.099664" + }, + { + "post_title": "Pellisard", + "group_name": "midas", + "discovered": "2021-11-29 01:00:41.373644" + }, + { + "post_title": "Trendico GmbH", + "group_name": "midas", + "discovered": "2021-11-29 01:00:41.603154" + }, + { + "post_title": "Consult Three Architects", + "group_name": "midas", + "discovered": "2021-11-29 01:00:41.824396" + }, + { + "post_title": "Haiti Meat Processing SA", + "group_name": "midas", + "discovered": "2021-11-29 01:00:42.071012" + }, + { + "post_title": "Xiamen Naier Electronics Co., Ltd.", + "group_name": "midas", + "discovered": "2021-11-29 01:00:42.362070" + }, + { + "post_title": "Shanghai Cyeco Environmental Technology Co., Ltd.", + "group_name": "midas", + "discovered": "2021-11-29 01:15:47.159153" + }, + { + "post_title": "KPS GROUP", + "group_name": "midas", + "discovered": "2021-11-29 01:15:47.421883" + }, + { + "post_title": "Capital Distributors (S) Pte Ltd", + "group_name": "midas", + "discovered": "2021-11-29 01:15:48.076951" + }, + { + "post_title": "Dongguan IMR Technology Co., Ltd", + "group_name": "midas", + "discovered": "2021-11-29 01:15:48.590885" + }, + { + "post_title": "EPOWER INTERNATIONAL ( SHANGHAl )CO.,LTD.", + "group_name": "midas", + "discovered": "2021-11-29 01:15:48.795623" + }, + { + "post_title": "Raisetech", + "group_name": "midas", + "discovered": "2021-11-29 01:15:49.294458" + }, + { + "post_title": "CABINET CAZANAVE", + "group_name": "midas", + "discovered": "2021-11-29 01:15:49.687435" + }, + { + "post_title": "HAMTACO", + "group_name": "midas", + "discovered": "2021-11-29 01:15:49.910941" + }, + { + "post_title": "EISENBERG HEFLER & LEVY LLP", + "group_name": "midas", + "discovered": "2021-11-29 01:15:50.142051" + }, + { + "post_title": "RWL GmbH", + "group_name": "midas", + "discovered": "2021-11-29 01:15:50.549892" + }, + { + "post_title": "IDSFULFILLMENT", + "group_name": "midas", + "discovered": "2021-11-29 01:15:50.958024" + }, + { + "post_title": "Bouquet Mulligan DeMaio", + "group_name": "midas", + "discovered": "2021-11-29 02:13:48.626680" + }, + { + "post_title": "CRM GROUP", + "group_name": "midas", + "discovered": "2021-11-29 02:13:48.945697" + }, + { + "post_title": "ChaddadGroup", + "group_name": "midas", + "discovered": "2021-11-29 02:13:49.186591" + }, + { + "post_title": "GROUP OF COMPANY", + "group_name": "midas", + "discovered": "2021-11-29 02:13:49.454528" + }, + { + "post_title": "Westrup Company", + "group_name": "midas", + "discovered": "2021-11-29 02:13:49.682232" + }, + { + "post_title": "CurIT", + "group_name": "midas", + "discovered": "2021-11-29 02:13:49.962301" + }, + { + "post_title": "dlb.it", + "group_name": "lockbit2", + "discovered": "2021-11-29 13:04:02.501080" + }, + { + "post_title": "San Carlo", + "group_name": "conti", + "discovered": "2021-11-29 13:56:08.078807" + }, + { + "post_title": "Epple Druckfarben", + "group_name": "conti", + "discovered": "2021-11-29 13:56:08.511072" + }, + { + "post_title": "callay.com.tr", + "group_name": "lockbit2", + "discovered": "2021-11-29 15:14:08.895926" + }, + { + "post_title": "totalfire.biz", + "group_name": "lockbit2", + "discovered": "2021-11-29 19:57:28.836074" + }, + { + "post_title": "SIRCHIE", + "group_name": "conti", + "discovered": "2021-11-29 20:55:42.723379" + }, + { + "post_title": "Koltepatil", + "group_name": "blackbyte", + "discovered": "2021-11-30 14:13:44.060715" + }, + { + "post_title": "MOTOR VEHICLE ACCIDENT FUND PENSION FUND", + "group_name": "blackbyte", + "discovered": "2021-11-30 14:13:44.290456" + }, + { + "post_title": "Karges-Faulconbridge, Inc.", + "group_name": "blackbyte", + "discovered": "2021-11-30 14:13:44.478090" + }, + { + "post_title": "Burda Sanitärtechnik", + "group_name": "conti", + "discovered": "2021-11-30 17:04:56.611420" + }, + { + "post_title": "Read more", + "group_name": "suncrypt", + "discovered": "2021-11-30 17:59:02.563931" + }, + { + "post_title": "UABL S.A.", + "group_name": "quantum", + "discovered": "2021-11-30 17:59:07.771535" + }, + { + "post_title": "QRS Healthcare Solutions", + "group_name": "snatch", + "discovered": "2021-11-30 19:56:36.623984" + }, + { + "post_title": "Volvo Car Corporation", + "group_name": "snatch", + "discovered": "2021-11-30 21:55:23.252737" + }, + { + "post_title": "kenwal.com", + "group_name": "lockbit2", + "discovered": "2021-11-30 22:57:44.260564" + }, + { + "post_title": "FRONTIER SOFTWARE", + "group_name": "conti", + "discovered": "2021-12-01 07:03:02.084196" + }, + { + "post_title": "summit-christia...", + "group_name": "lockbit2", + "discovered": "2021-12-01 22:13:54.126414" + }, + { + "post_title": "KISTERS", + "group_name": "conti", + "discovered": "2021-12-01 23:55:11.936822" + }, + { + "post_title": "mainstreamdata....", + "group_name": "lockbit2", + "discovered": "2021-12-02 11:55:51.069038" + }, + { + "post_title": "travel-general....", + "group_name": "lockbit2", + "discovered": "2021-12-02 11:55:51.307473" + }, + { + "post_title": "Groupe LDLC is going to be Leaked", + "group_name": "ragnarlocker", + "discovered": "2021-12-02 17:57:10.474271" + }, + { + "post_title": "CareFirst CHPDC", + "group_name": "snatch", + "discovered": "2021-12-02 23:57:39.032612" + }, + { + "post_title": "Lootah Group", + "group_name": "snatch", + "discovered": "2021-12-02 23:57:39.321940" + }, + { + "post_title": "Bohlin Cywinski Jackson", + "group_name": "suncrypt", + "discovered": "2021-12-03 18:58:54.903727" + }, + { + "post_title": "Update: Linicals Data", + "group_name": "ragnarlocker", + "discovered": "2021-12-04 05:01:05.996942" + }, + { + "post_title": "NLB Corporation", + "group_name": "conti", + "discovered": "2021-12-04 12:14:12.919032" + }, + { + "post_title": "Seldin", + "group_name": "everest", + "discovered": "2021-12-04 14:57:57.515146" + }, + { + "post_title": "Spencer Gifts LLC", + "group_name": "conti", + "discovered": "2021-12-05 00:21:15.243653" + }, + { + "post_title": "HOULE", + "group_name": "conti", + "discovered": "2021-12-05 00:21:15.596829" + }, + { + "post_title": "promhotel.fr", + "group_name": "lv", + "discovered": "2021-12-05 15:58:07.142424" + }, + { + "post_title": "gaben.cz", + "group_name": "lv", + "discovered": "2021-12-05 15:58:07.388143" + }, + { + "post_title": "jpbdselangor.gov.my", + "group_name": "lv", + "discovered": "2021-12-06 02:17:20.121608" + }, + { + "post_title": "MST LAWYERS", + "group_name": "conti", + "discovered": "2021-12-06 07:57:17.268902" + }, + { + "post_title": "Ruwac", + "group_name": "ransomexx", + "discovered": "2021-12-06 08:59:17.424763" + }, + { + "post_title": "Clementoni", + "group_name": "conti", + "discovered": "2021-12-06 11:59:33.511970" + }, + { + "post_title": "CHR Solutions", + "group_name": "pysa", + "discovered": "2021-12-06 19:13:37.934057" + }, + { + "post_title": "Besson Seguros", + "group_name": "robinhood", + "discovered": "2021-12-06 19:59:27.781350" + }, + { + "post_title": "Bemis Associates", + "group_name": "blackbyte", + "discovered": "2021-12-06 21:58:35.096801" + }, + { + "post_title": "Saand", + "group_name": "everest", + "discovered": "2021-12-06 22:56:16.436546" + }, + { + "post_title": "Marshall Investigative Group Part 1/3 1000 Client", + "group_name": "bonacigroup", + "discovered": "2021-12-06 23:55:58.986303" + }, + { + "post_title": "KMG Prestige, Inc.", + "group_name": "rook", + "discovered": "2021-12-07 07:01:24.544098" + }, + { + "post_title": "dwr.virginia.gov", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.159463" + }, + { + "post_title": "luxottica.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.181021" + }, + { + "post_title": "epicor.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.203744" + }, + { + "post_title": "esited.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.227913" + }, + { + "post_title": "spsr-law.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.248549" + }, + { + "post_title": "fujitsu.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.270190" + }, + { + "post_title": "morgancorp.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.294026" + }, + { + "post_title": "bowmanplating.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.315357" + }, + { + "post_title": "cbsltrans.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.341076" + }, + { + "post_title": "millensys.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.362506" + }, + { + "post_title": "gigatribe.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.384397" + }, + { + "post_title": "elementia.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.408235" + }, + { + "post_title": "tpicorp.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.435922" + }, + { + "post_title": "meditopia.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.459530" + }, + { + "post_title": "puma.com", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.482392" + }, + { + "post_title": "Align Technology, Inc", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.506184" + }, + { + "post_title": "Navistar (Volkswagen Group)", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.531897" + }, + { + "post_title": "Otto Instrument", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.554634" + }, + { + "post_title": "Virginia Defense Force", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.575436" + }, + { + "post_title": "Sandhills Center", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.597750" + }, + { + "post_title": "Virginia Department of Military Affairs", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.619258" + }, + { + "post_title": "Elm3 Financial Group, LLC", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.642498" + }, + { + "post_title": "Sea Mar Community Health Centers", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.663998" + }, + { + "post_title": "Gamesa Corporation leaked data", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.685346" + }, + { + "post_title": "Axis Communications", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.706531" + }, + { + "post_title": "X-FAB", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.728135" + }, + { + "post_title": "Kawasaki Kisen Kaisha, Ltd. (“K” LINE)", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.748830" + }, + { + "post_title": "Luxottica Group S.p.A.", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.769788" + }, + { + "post_title": "Morgan Truck Body, LLC", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.791533" + }, + { + "post_title": "GigaTribe", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.811787" + }, + { + "post_title": "Millensys", + "group_name": "marketo", + "discovered": "2021-12-07 15:31:01.833808" + }, + { + "post_title": "Fittingbox", + "group_name": "snatch", + "discovered": "2021-12-07 21:01:33.224216" + }, + { + "post_title": "Altrux Medical", + "group_name": "snatch", + "discovered": "2021-12-07 21:59:01.570698" + }, + { + "post_title": "serta.com - MORE THEN 500Gb DATA LEAKED", + "group_name": "lv", + "discovered": "2021-12-08 03:57:11.050948" + }, + { + "post_title": "NewWave Technologies Inc", + "group_name": "midas", + "discovered": "2021-12-08 04:59:46.259351" + }, + { + "post_title": "comark.ca", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:32.216454" + }, + { + "post_title": "fr.shop-orchest...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:32.430085" + }, + { + "post_title": "hp.icon-institu...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:32.595727" + }, + { + "post_title": "kerrylogistics....", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:32.800508" + }, + { + "post_title": "caudillseed.com", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:32.973829" + }, + { + "post_title": "ytlcement.com", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.155816" + }, + { + "post_title": "vestas.com", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.330613" + }, + { + "post_title": "prairiesedgecas...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.427716" + }, + { + "post_title": "murrayscheese.c...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.543285" + }, + { + "post_title": "psmportraits.co...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.644480" + }, + { + "post_title": "atlas.in", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.767727" + }, + { + "post_title": "nowiny.pl", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.878097" + }, + { + "post_title": "roemer-lueftung...", + "group_name": "lockbit2", + "discovered": "2021-12-08 06:41:33.999598" + }, + { + "post_title": "tlpterminal.com.my", + "group_name": "lv", + "discovered": "2021-12-08 17:59:24.696743" + }, + { + "post_title": "LAVI", + "group_name": "conti", + "discovered": "2021-12-09 11:58:16.784022" + }, + { + "post_title": "The Jewelry Exchange is the Nations #1 Diamond Store.", + "group_name": "quantum", + "discovered": "2021-12-09 13:06:13.535674" + }, + { + "post_title": "Digital Workplace Services & Solutions", + "group_name": "quantum", + "discovered": "2021-12-09 13:19:33.118669" + }, + { + "post_title": "COMUNE DI TORINO", + "group_name": "conti", + "discovered": "2021-12-09 14:01:36.994636" + }, + { + "post_title": "Zepter", + "group_name": "quantum", + "discovered": "2021-12-09 14:01:40.055025" + }, + { + "post_title": "PRIDE Community Services", + "group_name": "quantum", + "discovered": "2021-12-09 14:01:40.404905" + }, + { + "post_title": "Quanticate", + "group_name": "blackbyte", + "discovered": "2021-12-09 17:08:47.202840" + }, + { + "post_title": "Unique Home Solutions", + "group_name": "blackbyte", + "discovered": "2021-12-09 17:08:47.500467" + }, + { + "post_title": "P&R ENTERPRISES", + "group_name": "blackbyte", + "discovered": "2021-12-09 17:08:47.822061" + }, + { + "post_title": "benlineagencies.com", + "group_name": "lv", + "discovered": "2021-12-09 17:08:54.622049" + }, + { + "post_title": "Full Data Leak Linical", + "group_name": "ragnarlocker", + "discovered": "2021-12-09 18:00:02.827453" + }, + { + "post_title": "pacifichills.co...", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:46.004208" + }, + { + "post_title": "g1group.co.uk", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:46.422614" + }, + { + "post_title": "proximitysystem...", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:46.664468" + }, + { + "post_title": "apexbrasil.com....", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:47.065047" + }, + { + "post_title": "inperium.org", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:47.353075" + }, + { + "post_title": "northstarice.co...", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:47.708984" + }, + { + "post_title": "clubpilates.com", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:47.881938" + }, + { + "post_title": "kssenterprises....", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:48.044480" + }, + { + "post_title": "bsm.upf.edu", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:48.210527" + }, + { + "post_title": "mswood.ba", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:48.431170" + }, + { + "post_title": "continuumenergy...", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:48.647247" + }, + { + "post_title": "ducab.com", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:48.900105" + }, + { + "post_title": "volkswind.de", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:49.211513" + }, + { + "post_title": "se.com", + "group_name": "lockbit2", + "discovered": "2021-12-09 21:14:49.539945" + }, + { + "post_title": "Ktmtriallaw", + "group_name": "everest", + "discovered": "2021-12-09 21:14:52.538916" + }, + { + "post_title": "Jeffmoss", + "group_name": "everest", + "discovered": "2021-12-09 21:14:52.841346" + }, + { + "post_title": "Trigyn Technologies Ltd", + "group_name": "sabbath", + "discovered": "2021-12-10 12:18:31.238731" + }, + { + "post_title": "robroelaw.com", + "group_name": "lockbit2", + "discovered": "2021-12-10 14:57:23.069320" + }, + { + "post_title": "tamerholding.co...", + "group_name": "lockbit2", + "discovered": "2021-12-10 14:57:23.343816" + }, + { + "post_title": "UMW Group", + "group_name": "ransomexx", + "discovered": "2021-12-10 14:57:28.935008" + }, + { + "post_title": "Leak of IT company Saksoft", + "group_name": "ragnarlocker", + "discovered": "2021-12-10 19:56:34.677683" + }, + { + "post_title": "MTMRECOGNITION.COM", + "group_name": "clop", + "discovered": "2021-12-10 19:56:36.077905" + }, + { + "post_title": "Medical Pharmacies", + "group_name": "snatch", + "discovered": "2021-12-10 20:58:59.823682" + }, + { + "post_title": "KOBE BUSSAN - HACKED AND MORE THEN 500Gb DATA LEAKED", + "group_name": "lv", + "discovered": "2021-12-10 23:58:29.873998" + }, + { + "post_title": "masselin.com", + "group_name": "lockbit2", + "discovered": "2021-12-11 16:14:45.776204" + }, + { + "post_title": "rbauction.com", + "group_name": "lockbit2", + "discovered": "2021-12-11 16:14:46.079126" + }, + { + "post_title": "Social Enterprise (SEC)", + "group_name": "sabbath", + "discovered": "2021-12-12 14:16:40.420204" + }, + { + "post_title": "tt-network.dk", + "group_name": "lv", + "discovered": "2021-12-13 02:18:24.812511" + }, + { + "post_title": "Comerio Ercole spa", + "group_name": "conti", + "discovered": "2021-12-13 10:00:23.800900" + }, + { + "post_title": "DOMICIM Agence", + "group_name": "conti", + "discovered": "2021-12-13 10:00:23.967524" + }, + { + "post_title": "MEETH", + "group_name": "conti", + "discovered": "2021-12-13 10:00:24.131983" + }, + { + "post_title": "Nordic Choice Hotels", + "group_name": "conti", + "discovered": "2021-12-13 10:00:24.463862" + }, + { + "post_title": "Chantelle Group", + "group_name": "conti", + "discovered": "2021-12-13 18:00:37.311404" + }, + { + "post_title": "TALIS GROUP", + "group_name": "conti", + "discovered": "2021-12-13 21:59:20.561199" + }, + { + "post_title": "hsisensing.com", + "group_name": "lockbit2", + "discovered": "2021-12-14 08:57:50.496197" + }, + { + "post_title": "Amoria Bond", + "group_name": "conti", + "discovered": "2021-12-14 13:03:45.944532" + }, + { + "post_title": "Rossell Techsys", + "group_name": "rook", + "discovered": "2021-12-14 13:18:25.584113" + }, + { + "post_title": "Rosendahl Design Group", + "group_name": "rook", + "discovered": "2021-12-14 14:56:49.050460" + }, + { + "post_title": "Kenall/Legrand", + "group_name": "lorenz", + "discovered": "2021-12-14 17:06:12.872221" + }, + { + "post_title": "ABC Seamless", + "group_name": "snatch", + "discovered": "2021-12-14 20:15:05.603092" + }, + { + "post_title": "The Execu|Search Group", + "group_name": "snatch", + "discovered": "2021-12-14 20:59:13.009216" + }, + { + "post_title": "WEBER_OTT AG", + "group_name": "conti", + "discovered": "2021-12-14 21:15:47.820435" + }, + { + "post_title": "Company Group LDLC", + "group_name": "ragnarlocker", + "discovered": "2021-12-15 03:58:25.290463" + }, + { + "post_title": "DEWEtech", + "group_name": "conti", + "discovered": "2021-12-15 11:57:23.184102" + }, + { + "post_title": "vipsmotel.it", + "group_name": "lockbit2", + "discovered": "2021-12-15 16:13:14.259242" + }, + { + "post_title": "boxmarche.it", + "group_name": "lockbit2", + "discovered": "2021-12-15 16:13:14.774518" + }, + { + "post_title": "Hellmann Worldwide Logistics", + "group_name": "ransomexx", + "discovered": "2021-12-15 18:00:12.673927" + }, + { + "post_title": "ENPRECIS.COM", + "group_name": "clop", + "discovered": "2021-12-15 23:57:49.762340" + }, + { + "post_title": "agrofair.nl", + "group_name": "lv", + "discovered": "2021-12-16 01:17:51.740060" + }, + { + "post_title": "skinnertrans.co...", + "group_name": "lockbit2", + "discovered": "2021-12-18 16:06:32.750989" + }, + { + "post_title": "baa.legal", + "group_name": "lockbit2", + "discovered": "2021-12-18 16:06:32.774612" + }, + { + "post_title": "cunninghamgolfc...", + "group_name": "lockbit2", + "discovered": "2021-12-18 16:06:32.798864" + }, + { + "post_title": "KMG Prestige, Inc. (Data will be given tomorrow)", + "group_name": "rook", + "discovered": "2021-12-18 16:06:43.948614" + }, + { + "post_title": "Rossell Techsys(Data will be given tomorrow)", + "group_name": "rook", + "discovered": "2021-12-18 16:06:43.972786" + }, + { + "post_title": "vaja.ir", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.010884" + }, + { + "post_title": "paknavy.gov.pk", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.035114" + }, + { + "post_title": "antistatik-esd-cozumler.com.tr", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.058414" + }, + { + "post_title": "toxicsites.us", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.081978" + }, + { + "post_title": "shinyoko-porno.com", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.105175" + }, + { + "post_title": "suriyanar.com", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.129332" + }, + { + "post_title": "albatross.co.in", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.152497" + }, + { + "post_title": "nals.in", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.176319" + }, + { + "post_title": "oppodigital.in", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.200092" + }, + { + "post_title": "hislopcollege.ac.in", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.304919" + }, + { + "post_title": "iima.ac.in", + "group_name": "cryp70n1c0d3", + "discovered": "2021-12-18 16:06:44.345558" + }, + { + "post_title": "Raveco", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.392831" + }, + { + "post_title": "GryphTech", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.418427" + }, + { + "post_title": "MediaMarkt", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.442802" + }, + { + "post_title": "Grupo5", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.466543" + }, + { + "post_title": "APR Supply", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.489170" + }, + { + "post_title": "XacBank", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.512309" + }, + { + "post_title": "WAMGROUP", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.535759" + }, + { + "post_title": "Aria Systems", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.557656" + }, + { + "post_title": "EMCO", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.583324" + }, + { + "post_title": "KBM UK", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.606794" + }, + { + "post_title": "GK.NO", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.633506" + }, + { + "post_title": "Ospray Video", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.658083" + }, + { + "post_title": "W.H. Stovall", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.683111" + }, + { + "post_title": "Net Ninjas", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.707332" + }, + { + "post_title": "GURTEEN", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.731104" + }, + { + "post_title": "SS Design", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.755827" + }, + { + "post_title": "IBC24 News", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.780729" + }, + { + "post_title": "HI FLY", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.804753" + }, + { + "post_title": "Mega Vision", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.830725" + }, + { + "post_title": "Altus Group", + "group_name": "hiveleak", + "discovered": "2021-12-18 16:06:44.856337" + }, + { + "post_title": "CyberServe Company", + "group_name": "blackshadow", + "discovered": "2021-12-18 16:06:44.900296" + }, + { + "post_title": "K.L.S Capital", + "group_name": "blackshadow", + "discovered": "2021-12-18 16:06:44.925671" + }, + { + "post_title": "Shirbit Insurance Company", + "group_name": "blackshadow", + "discovered": "2021-12-18 16:06:44.948812" + }, + { + "post_title": "This is just the beginning", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:44.987525" + }, + { + "post_title": "3D imagery of israel", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.012045" + }, + { + "post_title": "Unit 8200", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.037939" + }, + { + "post_title": "MATITIAHU BRUCHIM Law office", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.059937" + }, + { + "post_title": "V-ON", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.082882" + }, + { + "post_title": "AHEC Tax Solutions", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.106389" + }, + { + "post_title": "H.G.M Engineering", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.127983" + }, + { + "post_title": "David Engineers", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.150438" + }, + { + "post_title": "Ehud Leviathan Engineering", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.174277" + }, + { + "post_title": "First part of Epsilor data leaked", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.195861" + }, + { + "post_title": "Israel MOD and Benny Gantz", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.219012" + }, + { + "post_title": "First part of Israel Post data leaked", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.242548" + }, + { + "post_title": "Epsilor Company", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.265955" + }, + { + "post_title": "DOSIK Technology", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.289611" + }, + { + "post_title": "Meshulam", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.314653" + }, + { + "post_title": "Electron Csillag", + "group_name": "mosesstaff", + "discovered": "2021-12-18 16:06:45.338411" + }, + { + "post_title": "RCMS", + "group_name": "alphv", + "discovered": "2021-12-18 16:06:45.400067" + }, + { + "post_title": "Strataworldwide.com", + "group_name": "alphv", + "discovered": "2021-12-18 16:06:45.425357" + }, + { + "post_title": "Dental Health Products", + "group_name": "blackbyte", + "discovered": "2021-12-19 07:05:13.301398" + }, + { + "post_title": "Kangean Energy Indonesia", + "group_name": "blackbyte", + "discovered": "2021-12-19 19:09:37.796461" + }, + { + "post_title": "The Briad Group", + "group_name": "conti", + "discovered": "2021-12-20 00:19:03.232461" + }, + { + "post_title": "Madix Inc", + "group_name": "hiveleak", + "discovered": "2021-12-20 08:20:15.892790" + }, + { + "post_title": "WOLSEY", + "group_name": "hiveleak", + "discovered": "2021-12-20 09:18:28.072462" + }, + { + "post_title": "Prenax", + "group_name": "sabbath", + "discovered": "2021-12-20 12:18:27.060976" + }, + { + "post_title": "Skyxe Saskatoon Airport", + "group_name": "snatch", + "discovered": "2021-12-20 15:17:06.741053" + }, + { + "post_title": "CASINO WINNAVEGAS", + "group_name": "conti", + "discovered": "2021-12-20 23:17:42.587475" + }, + { + "post_title": "reliancenj.com - HACKED AND MORE THEN 200GB DATA LEAKED", + "group_name": "lv", + "discovered": "2021-12-21 00:18:33.059337" + }, + { + "post_title": "urbandevelop.co...", + "group_name": "lockbit2", + "discovered": "2021-12-21 02:31:25.624385" + }, + { + "post_title": "piolax.co.th", + "group_name": "lockbit2", + "discovered": "2021-12-21 02:31:25.979384" + }, + { + "post_title": "dcashpro.com", + "group_name": "lockbit2", + "discovered": "2021-12-21 02:31:26.252030" + }, + { + "post_title": "lipinskilogging...", + "group_name": "lockbit2", + "discovered": "2021-12-21 02:31:26.528262" + }, + { + "post_title": "www.maibroker.c...", + "group_name": "lockbit2", + "discovered": "2021-12-21 04:24:07.840340" + }, + { + "post_title": "maibroker.com", + "group_name": "lockbit2", + "discovered": "2021-12-21 05:24:31.033691" + }, + { + "post_title": "www.hajery.com", + "group_name": "lockbit2", + "discovered": "2021-12-21 13:29:14.753237" + }, + { + "post_title": "hajery.com", + "group_name": "lockbit2", + "discovered": "2021-12-21 18:22:45.370090" + }, + { + "post_title": "SPERONI SPA", + "group_name": "everest", + "discovered": "2021-12-21 18:22:56.516150" + }, + { + "post_title": "McMenamins", + "group_name": "conti", + "discovered": "2021-12-21 20:28:15.039304" + }, + { + "post_title": "Cristália - Indústria Farmacêutica", + "group_name": "atomsilo", + "discovered": "2021-12-21 20:28:17.454755" + }, + { + "post_title": "LIGHT CONVERSION", + "group_name": "atomsilo", + "discovered": "2021-12-21 20:28:17.861063" + }, + { + "post_title": "Eisai Co., Ltd.", + "group_name": "atomsilo", + "discovered": "2021-12-21 20:28:18.130641" + }, + { + "post_title": "Tegravendas", + "group_name": "atomsilo", + "discovered": "2021-12-21 20:28:18.355635" + }, + { + "post_title": "leuzeusa.com", + "group_name": "snatch", + "discovered": "2021-12-21 20:28:18.705090" + }, + { + "post_title": "InTown Suites", + "group_name": "snatch", + "discovered": "2021-12-21 20:28:19.729882" + }, + { + "post_title": "Leuze", + "group_name": "snatch", + "discovered": "2021-12-21 21:19:04.784509" + }, + { + "post_title": "Holiday Builders", + "group_name": "conti", + "discovered": "2021-12-22 09:18:58.390782" + }, + { + "post_title": "pestbusters.com...", + "group_name": "lockbit2", + "discovered": "2021-12-22 17:36:10.086348" + }, + { + "post_title": "atskorea.co.kr", + "group_name": "lockbit2", + "discovered": "2021-12-22 17:36:10.443267" + }, + { + "post_title": "Turner Enterprises, Inc.", + "group_name": "lorenz", + "discovered": "2021-12-23 23:52:55.989999" + }, + { + "post_title": "burgsimpson.com", + "group_name": "lockbit2", + "discovered": "2021-12-23 23:52:56.278195" + }, + { + "post_title": "DUTTONFIRM.COM", + "group_name": "clop", + "discovered": "2021-12-23 23:53:07.852739" + }, + { + "post_title": "JCWHITE.COM", + "group_name": "clop", + "discovered": "2021-12-23 23:53:07.948824" + }, + { + "post_title": "Bay and Bay Transportation", + "group_name": "conti", + "discovered": "2021-12-23 23:53:09.157079" + }, + { + "post_title": "www.hillsdalefurniture.com", + "group_name": "payloadbin", + "discovered": "2021-12-23 23:53:11.803838" + }, + { + "post_title": "Sodiba", + "group_name": "quantum", + "discovered": "2021-12-23 23:53:12.125968" + }, + { + "post_title": "Biotique", + "group_name": "quantum", + "discovered": "2021-12-23 23:53:12.341877" + }, + { + "post_title": "cbjblawfirm.com", + "group_name": "lockbit2", + "discovered": "2021-12-24 13:22:28.773521" + }, + { + "post_title": "sintesiautomoti...", + "group_name": "lockbit2", + "discovered": "2021-12-24 17:22:02.278160" + }, + { + "post_title": "lozzaspa.it", + "group_name": "lockbit2", + "discovered": "2021-12-24 17:22:02.637371" + }, + { + "post_title": "Polysciences, Inc.", + "group_name": "conti", + "discovered": "2021-12-25 00:20:47.575473" + }, + { + "post_title": "MAX International Converters", + "group_name": "midas", + "discovered": "2021-12-25 09:16:12.609156" + }, + { + "post_title": "cgm.com", + "group_name": "lockbit2", + "discovered": "2021-12-25 10:18:30.604823" + }, + { + "post_title": "riverhead.net", + "group_name": "lockbit2", + "discovered": "2021-12-25 13:24:15.711069" + }, + { + "post_title": "smiimaging.com", + "group_name": "lockbit2", + "discovered": "2021-12-25 20:18:52.069806" + }, + { + "post_title": "RKPT", + "group_name": "conti", + "discovered": "2021-12-26 00:24:43.565079" + }, + { + "post_title": "Metamorph Group", + "group_name": "conti", + "discovered": "2021-12-26 00:24:43.905443" + }, + { + "post_title": "Arbor Contract Carpet Inc.", + "group_name": "conti", + "discovered": "2021-12-26 00:24:44.188000" + }, + { + "post_title": "Charles Kendall", + "group_name": "conti", + "discovered": "2021-12-26 00:24:44.604128" + }, + { + "post_title": "iGuzzini Group", + "group_name": "conti", + "discovered": "2021-12-26 00:24:44.888405" + }, + { + "post_title": "The Technord industrial group", + "group_name": "conti", + "discovered": "2021-12-26 00:24:45.196373" + }, + { + "post_title": "Economos properties", + "group_name": "conti", + "discovered": "2021-12-26 00:24:45.362349" + }, + { + "post_title": "SVP Groupe", + "group_name": "conti", + "discovered": "2021-12-26 00:24:45.523013" + }, + { + "post_title": "ENVASES GROUP", + "group_name": "conti", + "discovered": "2021-12-26 07:16:56.349550" + }, + { + "post_title": "Data breach summary", + "group_name": "rook", + "discovered": "2021-12-26 13:22:13.281417" + }, + { + "post_title": "LAVA", + "group_name": "snatch", + "discovered": "2021-12-26 22:19:01.085277" + }, + { + "post_title": "TUI UK", + "group_name": "snatch", + "discovered": "2021-12-26 23:18:14.981851" + }, + { + "post_title": "New Corp", + "group_name": "midas", + "discovered": "2021-12-27 19:21:33.429551" + }, + { + "post_title": "Bernd Siegmund GmbH", + "group_name": "conti", + "discovered": "2021-12-27 20:21:27.150893" + }, + { + "post_title": "DENSO", + "group_name": "rook", + "discovered": "2021-12-28 02:35:18.723906" + }, + { + "post_title": "Evalueserve", + "group_name": "rook", + "discovered": "2021-12-28 02:35:19.067931" + }, + { + "post_title": "TRIGYN 2 0 | Data Leak", + "group_name": "sabbath", + "discovered": "2021-12-28 12:17:49.536902" + }, + { + "post_title": "Metro.Us", + "group_name": "hiveleak", + "discovered": "2021-12-28 14:21:19.473498" + }, + { + "post_title": "Mount Franklin Foods, LLC", + "group_name": "conti", + "discovered": "2021-12-28 20:22:43.546730" + }, + { + "post_title": "American Dream", + "group_name": "conti", + "discovered": "2021-12-30 01:51:27.442792" + }, + { + "post_title": "atlasdie", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:29.395008" + }, + { + "post_title": "bakertilly", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:29.665938" + }, + { + "post_title": "lahebert", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:29.937368" + }, + { + "post_title": "ncmutuallife", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:30.285200" + }, + { + "post_title": "sonomatic", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:30.544428" + }, + { + "post_title": "squamish", + "group_name": "cuba", + "discovered": "2021-12-30 01:51:30.907944" + }, + { + "post_title": "SNOP GROUP", + "group_name": "alphv", + "discovered": "2021-12-30 10:08:36.488267" + }, + { + "post_title": "Uriach - www.uriach.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:08:36.550685" + }, + { + "post_title": "Unified Technologies | unified-team.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:08:36.575638" + }, + { + "post_title": "Solaris Management Consultants | solaris-mci.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:08:36.600370" + }, + { + "post_title": "FNBNWFL Data leaked", + "group_name": "ragnarok", + "discovered": "2021-12-30 10:10:45.033137" + }, + { + "post_title": "unexca-edu-ve", + "group_name": "blacktor", + "discovered": "2021-12-30 10:10:48.039776" + }, + { + "post_title": "salesplaypos-com", + "group_name": "blacktor", + "discovered": "2021-12-30 10:10:48.071436" + }, + { + "post_title": "bankjatim-co-id", + "group_name": "blacktor", + "discovered": "2021-12-30 10:10:48.095882" + }, + { + "post_title": "ticketclub-it", + "group_name": "blacktor", + "discovered": "2021-12-30 10:10:48.121036" + }, + { + "post_title": "Douglas Shaw & Associates | douglasshaw.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:43:05.807614" + }, + { + "post_title": "Hunter Douglas | hunterdouglas.com.au", + "group_name": "alphv", + "discovered": "2021-12-30 10:43:05.852454" + }, + { + "post_title": "Buffers USA | buffersusa.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:43:05.876822" + }, + { + "post_title": "van Eupen Logistik - vaneupen.com", + "group_name": "alphv", + "discovered": "2021-12-30 10:43:05.902121" + }, + { + "post_title": "New City Commercial Corporation (NCCC)", + "group_name": "alphv", + "discovered": "2021-12-30 10:43:05.927403" + }, + { + "post_title": "grupomakler.com", + "group_name": "lockbit2", + "discovered": "2021-12-30 12:19:59.872726" + }, + { + "post_title": "rightsys.com", + "group_name": "lockbit2", + "discovered": "2021-12-30 15:22:12.390806" + }, + { + "post_title": "https://www.lee...", + "group_name": "lockbit2", + "discovered": "2021-12-30 18:22:47.068661" + }, + { + "post_title": "independentprin...", + "group_name": "lockbit2", + "discovered": "2021-12-30 18:22:47.391752" + }, + { + "post_title": "Centaris.com", + "group_name": "alphv", + "discovered": "2021-12-30 20:22:12.175189" + }, + { + "post_title": "lee-associates....", + "group_name": "lockbit2", + "discovered": "2021-12-31 01:42:33.486882" + }, + { + "post_title": "Chattanooga Chamber of Commerce", + "group_name": "quantum", + "discovered": "2021-12-31 13:31:27.370568" + }, + { + "post_title": "wagstaff.com - 1.5TB LEAKED", + "group_name": "lv", + "discovered": "2021-12-31 15:24:50.206837" + }, + { + "post_title": "Serenity Homes SWFL", + "group_name": "payloadbin", + "discovered": "2022-01-01 13:26:12.406074" + }, + { + "post_title": "www.paw.eu", + "group_name": "payloadbin", + "discovered": "2022-01-01 13:26:12.723367" + }, + { + "post_title": "NanoFocus - nanofocus.com", + "group_name": "alphv", + "discovered": "2022-01-01 14:20:29.707850" + }, + { + "post_title": "CED Group", + "group_name": "alphv", + "discovered": "2022-01-01 16:23:32.135428" + }, + { + "post_title": "Universidade Federal de Sao Paulo", + "group_name": "vicesociety", + "discovered": "2022-01-01 16:52:32.261114" + }, + { + "post_title": "OSSEG Obra Social de Seguros", + "group_name": "vicesociety", + "discovered": "2022-01-01 16:52:32.276650" + }, + { + "post_title": "1 Breaking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.494990" + }, + { + "post_title": "2 Breaking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.512060" + }, + { + "post_title": "3 Breaking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.528399" + }, + { + "post_title": "4 Breaking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.544801" + }, + { + "post_title": "5 Customer Leak and F5 destroying", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.561567" + }, + { + "post_title": "6 Under Attack", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.577017" + }, + { + "post_title": "7 Absurd Analysis", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.592914" + }, + { + "post_title": "8 Breaking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.608509" + }, + { + "post_title": "9 Cuz F5 has caused", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.624448" + }, + { + "post_title": "10 Bearking News", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.639899" + }, + { + "post_title": "11 you're awake!", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.655535" + }, + { + "post_title": "12 Escape from the dark", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.671251" + }, + { + "post_title": "13 We are kids !", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.687098" + }, + { + "post_title": "14 Kids vs. Governments !", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.704077" + }, + { + "post_title": "15 All we know", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.720806" + }, + { + "post_title": "15.1 Supplementary", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.736935" + }, + { + "post_title": "16 Nuclear leak", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.753892" + }, + { + "post_title": "17 \"Shoulders! How shocking!\" Queen", + "group_name": "leaktheanalyst", + "discovered": "2022-01-01 16:52:32.770364" + }, + { + "post_title": "aulss6.veneto.i...", + "group_name": "lockbit2", + "discovered": "2022-01-01 17:29:16.847283" + }, + { + "post_title": "empireins.com", + "group_name": "lockbit2", + "discovered": "2022-01-01 17:29:17.175329" + }, + { + "post_title": "Iwis Group", + "group_name": "conti", + "discovered": "2022-01-03 02:32:47.673887" + }, + { + "post_title": "thalesgroup.com", + "group_name": "lockbit2", + "discovered": "2022-01-03 15:23:44.515945" + }, + { + "post_title": "Close search modal", + "group_name": "sabbath", + "discovered": "2022-01-04 12:29:41.236325" + }, + { + "post_title": "Close drawer", + "group_name": "sabbath", + "discovered": "2022-01-04 12:29:41.532838" + }, + { + "post_title": "Summit College", + "group_name": "sabbath", + "discovered": "2022-01-04 13:27:47.440748" + }, + { + "post_title": "東京コンピュータサービス", + "group_name": "nightsky", + "discovered": "2022-01-04 19:14:52.073644" + }, + { + "post_title": "AKIJ GROUP", + "group_name": "nightsky", + "discovered": "2022-01-04 19:14:52.100985" + }, + { + "post_title": "atsair.com", + "group_name": "lockbit2", + "discovered": "2022-01-04 20:03:42.598000" + }, + { + "post_title": "bricofer.it", + "group_name": "lockbit2", + "discovered": "2022-01-05 10:24:17.188703" + }, + { + "post_title": "Premium Transportation Group", + "group_name": "snatch", + "discovered": "2022-01-05 22:23:51.574259" + }, + { + "post_title": "DURA | Innovation Driven by Inspiration", + "group_name": "conti", + "discovered": "2022-01-06 00:22:10.177167" + }, + { + "post_title": "FrenchGourmet", + "group_name": "alphv", + "discovered": "2022-01-06 10:24:23.414806" + }, + { + "post_title": "D.F. Chase | dfchase.com", + "group_name": "alphv", + "discovered": "2022-01-06 10:24:23.772313" + }, + { + "post_title": "Spar", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.464151" + }, + { + "post_title": "DFL", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.487383" + }, + { + "post_title": "Pontificia Universidad Javeriana", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.506849" + }, + { + "post_title": "Hawthorn The Community Pub Co.", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.527885" + }, + { + "post_title": "Holy Family RC & CE College", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.548653" + }, + { + "post_title": "City of Witten", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.568754" + }, + { + "post_title": "Lufkin Independent School District", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.590294" + }, + { + "post_title": "Manhasset Union Free School District", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.610824" + }, + { + "post_title": "SRH Holding", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.631374" + }, + { + "post_title": "Karl Bachl GmbH & Co.KG", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.652271" + }, + { + "post_title": "KESSEL AG", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.672055" + }, + { + "post_title": "United Health Centers", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.692076" + }, + { + "post_title": "ROC Mondriaan", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.711224" + }, + { + "post_title": "Barlow Respiratory Hospital", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.731154" + }, + { + "post_title": "Plastipak Holdings, Inc.", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.751288" + }, + { + "post_title": "Butali", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.771071" + }, + { + "post_title": "Eskenazi Health Foundation", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.793325" + }, + { + "post_title": "3V Sigma", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.813992" + }, + { + "post_title": "Centre Hospitalier D'Arles", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.833924" + }, + { + "post_title": "Gateway College", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.877314" + }, + { + "post_title": "Walter's Automotive Group", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.898964" + }, + { + "post_title": "FILGO", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.920425" + }, + { + "post_title": "Whitehouse", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.940118" + }, + { + "post_title": "Alliance COAL, LLC", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.961969" + }, + { + "post_title": "Rolle", + "group_name": "vicesociety", + "discovered": "2022-01-06 12:20:28.982643" + }, + { + "post_title": "aquila.ch", + "group_name": "payloadbin", + "discovered": "2022-01-06 13:27:28.356983" + }, + { + "post_title": "salesiancollege...", + "group_name": "lockbit2", + "discovered": "2022-01-07 01:44:06.207625" + }, + { + "post_title": "cbibanks.com", + "group_name": "lockbit2", + "discovered": "2022-01-07 10:21:51.369846" + }, + { + "post_title": "chervongroup.co...", + "group_name": "lockbit2", + "discovered": "2022-01-07 11:22:09.014376" + }, + { + "post_title": "The Grand Bahama Port Authority", + "group_name": "alphv", + "discovered": "2022-01-07 13:22:11.508891" + }, + { + "post_title": "Ballester Hermanos | ballesterhermanos.com", + "group_name": "alphv", + "discovered": "2022-01-07 14:20:22.123055" + }, + { + "post_title": "mcsmorandi.com", + "group_name": "lockbit2", + "discovered": "2022-01-07 18:23:54.884491" + }, + { + "post_title": "Amaveca Salud", + "group_name": "vicesociety", + "discovered": "2022-01-07 22:20:52.221276" + }, + { + "post_title": "Huhtamaki", + "group_name": "everest", + "discovered": "2022-01-08 05:25:31.480448" + }, + { + "post_title": "Abdi ibrahim", + "group_name": "rook", + "discovered": "2022-01-08 10:19:00.640637" + }, + { + "post_title": "owenscaroli", + "group_name": "lockbit2", + "discovered": "2022-01-08 18:21:42.902466" + }, + { + "post_title": "giovanardi.it", + "group_name": "lockbit2", + "discovered": "2022-01-08 20:19:54.815951" + }, + { + "post_title": "focusadventure....", + "group_name": "lockbit2", + "discovered": "2022-01-08 20:19:55.157481" + }, + { + "post_title": "IT-companies Subex & Sectrio Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-01-08 21:18:44.122239" + }, + { + "post_title": "Carthage R-9 School District", + "group_name": "vicesociety", + "discovered": "2022-01-09 06:19:35.230940" + }, + { + "post_title": "SAVANNAH State University", + "group_name": "vicesociety", + "discovered": "2022-01-09 06:19:35.556955" + }, + { + "post_title": "Detroit Stoker", + "group_name": "alphv", + "discovered": "2022-01-09 22:22:00.365032" + }, + { + "post_title": "Ezz Steel", + "group_name": "hiveleak", + "discovered": "2022-01-09 23:19:55.160512" + }, + { + "post_title": "cle", + "group_name": "cuba", + "discovered": "2022-01-10 10:22:37.678431" + }, + { + "post_title": "delinebox", + "group_name": "cuba", + "discovered": "2022-01-10 10:22:38.202360" + }, + { + "post_title": "regulvar", + "group_name": "cuba", + "discovered": "2022-01-10 10:22:38.427633" + }, + { + "post_title": "sonomatic-2", + "group_name": "cuba", + "discovered": "2022-01-10 10:22:38.696532" + }, + { + "post_title": "strongwell", + "group_name": "cuba", + "discovered": "2022-01-10 10:22:39.027493" + }, + { + "post_title": "securiteassuran...", + "group_name": "lockbit2", + "discovered": "2022-01-10 11:20:12.002114" + }, + { + "post_title": "torann-france.f...", + "group_name": "lockbit2", + "discovered": "2022-01-10 11:20:12.270115" + }, + { + "post_title": "amerplumb.com", + "group_name": "lockbit2", + "discovered": "2022-01-10 18:19:53.149513" + }, + { + "post_title": "bernheim.org", + "group_name": "lockbit2", + "discovered": "2022-01-10 18:19:53.596446" + }, + { + "post_title": "northsideplumbi...", + "group_name": "lockbit2", + "discovered": "2022-01-10 18:19:53.925277" + }, + { + "post_title": "Hensoldt", + "group_name": "lorenz", + "discovered": "2022-01-11 11:23:04.608574" + }, + { + "post_title": "Arcese", + "group_name": "conti", + "discovered": "2022-01-11 21:35:23.122582" + }, + { + "post_title": "TaxNetUSA", + "group_name": "snatch", + "discovered": "2022-01-11 23:23:15.429325" + }, + { + "post_title": "XAL", + "group_name": "vicesociety", + "discovered": "2022-01-12 04:24:09.014867" + }, + { + "post_title": "Butler Community College", + "group_name": "vicesociety", + "discovered": "2022-01-12 04:24:09.296676" + }, + { + "post_title": "Durham Cathedral Schools Foundation", + "group_name": "vicesociety", + "discovered": "2022-01-12 07:20:39.101015" + }, + { + "post_title": "Protected: PRIVATE POST ITALY", + "group_name": "sabbath", + "discovered": "2022-01-12 17:29:02.137450" + }, + { + "post_title": "supersave.ca", + "group_name": "lockbit2", + "discovered": "2022-01-12 20:22:06.627323" + }, + { + "post_title": "fdcbuilding", + "group_name": "cuba", + "discovered": "2022-01-13 09:22:49.626105" + }, + { + "post_title": "superfund", + "group_name": "cuba", + "discovered": "2022-01-13 13:27:15.109666" + }, + { + "post_title": "Lewis & Clark College", + "group_name": "quantum", + "discovered": "2022-01-13 16:21:13.277656" + }, + { + "post_title": "HAPOLO", + "group_name": "snatch", + "discovered": "2022-01-13 19:25:43.732710" + }, + { + "post_title": "Hanon Systems", + "group_name": "snatch", + "discovered": "2022-01-13 19:25:44.063056" + }, + { + "post_title": "Butler County Community College", + "group_name": "vicesociety", + "discovered": "2022-01-14 11:22:23.404529" + }, + { + "post_title": "ASL Napoli 3 Sud Network Seized", + "group_name": "sabbath", + "discovered": "2022-01-14 15:17:55.967374" + }, + { + "post_title": "Acuity Brands", + "group_name": "conti", + "discovered": "2022-01-15 13:26:55.823579" + }, + { + "post_title": "Perennials Fabrics", + "group_name": "conti", + "discovered": "2022-01-15 13:26:56.127938" + }, + { + "post_title": "Lyon-Waugh Auto Group", + "group_name": "conti", + "discovered": "2022-01-15 13:26:56.358816" + }, + { + "post_title": "Safeguard", + "group_name": "conti", + "discovered": "2022-01-15 13:26:56.594707" + }, + { + "post_title": "RRD", + "group_name": "conti", + "discovered": "2022-01-15 13:26:56.833841" + }, + { + "post_title": "Shutterfly inc.", + "group_name": "conti", + "discovered": "2022-01-15 13:26:57.203272" + }, + { + "post_title": "fairnessforall....", + "group_name": "lockbit2", + "discovered": "2022-01-15 15:26:40.087101" + }, + { + "post_title": "khattarlaw.com", + "group_name": "lockbit2", + "discovered": "2022-01-15 15:26:40.277385" + }, + { + "post_title": "PLACON", + "group_name": "conti", + "discovered": "2022-01-15 16:20:50.302904" + }, + { + "post_title": "JALEEL TRADERS LLC", + "group_name": "sabbath", + "discovered": "2022-01-15 20:23:49.417218" + }, + { + "post_title": "Redbadge", + "group_name": "alphv", + "discovered": "2022-01-16 13:26:29.827203" + }, + { + "post_title": "Partnership", + "group_name": "everest", + "discovered": "2022-01-16 15:20:12.376218" + }, + { + "post_title": "centralbankfl.c...", + "group_name": "lockbit2", + "discovered": "2022-01-16 19:19:45.947709" + }, + { + "post_title": "Private Company", + "group_name": "snatch", + "discovered": "2022-01-16 21:21:33.543159" + }, + { + "post_title": "Moncler", + "group_name": "alphv", + "discovered": "2022-01-17 23:31:20.352906" + }, + { + "post_title": "crossroadshealth lake", + "group_name": "midas", + "discovered": "2022-01-18 06:21:11.136255" + }, + { + "post_title": "huntsville4rent...", + "group_name": "lockbit2", + "discovered": "2022-01-18 11:22:23.794046" + }, + { + "post_title": "Brookson Group | brooksonone.co.uk", + "group_name": "alphv", + "discovered": "2022-01-18 14:20:49.147579" + }, + { + "post_title": "Hall Cross Academy", + "group_name": "snatch", + "discovered": "2022-01-18 18:24:47.818897" + }, + { + "post_title": "Vehicle Service Group", + "group_name": "snatch", + "discovered": "2022-01-18 19:24:52.039267" + }, + { + "post_title": "bannerbuzz.com", + "group_name": "lockbit2", + "discovered": "2022-01-18 20:25:03.540877" + }, + { + "post_title": "izo.es", + "group_name": "lockbit2", + "discovered": "2022-01-19 03:21:12.567845" + }, + { + "post_title": "harrisshelton.c...", + "group_name": "lockbit2", + "discovered": "2022-01-19 08:28:19.581790" + }, + { + "post_title": "AFG Canada", + "group_name": "everest", + "discovered": "2022-01-19 17:24:59.607000" + }, + { + "post_title": "Bank of Indonesia", + "group_name": "conti", + "discovered": "2022-01-20 00:23:11.615697" + }, + { + "post_title": "roemer-lueftung.", + "group_name": "lockbit2", + "discovered": "2022-01-20 07:18:56.145375" + }, + { + "post_title": "bayview.com", + "group_name": "lockbit2", + "discovered": "2022-01-20 13:23:52.633723" + }, + { + "post_title": "ged", + "group_name": "lockbit2", + "discovered": "2022-01-20 16:27:58.299145" + }, + { + "post_title": "RIVADIS", + "group_name": "hiveleak", + "discovered": "2022-01-20 17:24:05.381121" + }, + { + "post_title": "UNICRED", + "group_name": "hiveleak", + "discovered": "2022-01-20 17:24:05.573902" + }, + { + "post_title": "efile.com", + "group_name": "lockbit2", + "discovered": "2022-01-21 02:30:58.162570" + }, + { + "post_title": "onlinesalespro....", + "group_name": "lockbit2", + "discovered": "2022-01-21 02:30:58.472112" + }, + { + "post_title": "Gardenworks", + "group_name": "everest", + "discovered": "2022-01-21 13:21:57.383708" + }, + { + "post_title": "r", + "group_name": "lockbit2", + "discovered": "2022-01-22 16:38:58.106802" + }, + { + "post_title": "bagbyelevator.c...", + "group_name": "lockbit2", + "discovered": "2022-01-23 04:31:56.416089" + }, + { + "post_title": "ipec.ro", + "group_name": "alphv", + "discovered": "2022-01-23 10:22:46.442533" + }, + { + "post_title": "peabo", + "group_name": "lockbit2", + "discovered": "2022-01-23 13:24:30.959371" + }, + { + "post_title": "kentkonut.com.t...", + "group_name": "lockbit2", + "discovered": "2022-01-24 08:19:29.418390" + }, + { + "post_title": "mfkmakina.com", + "group_name": "lockbit2", + "discovered": "2022-01-24 21:20:30.500088" + }, + { + "post_title": "mtlcraft", + "group_name": "cuba", + "discovered": "2022-01-25 08:29:14.230614" + }, + { + "post_title": "ANTHONY CATALFANO INTERIORS", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.635764" + }, + { + "post_title": "Advanced Geosciences", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.662379" + }, + { + "post_title": "Bohlke International Airways", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.690524" + }, + { + "post_title": "Brakke Asbestsanering BV", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.717404" + }, + { + "post_title": "Brinkman Turkey Farms", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.745289" + }, + { + "post_title": "Claro Colombia", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.773926" + }, + { + "post_title": "ConForm Automotive", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.800465" + }, + { + "post_title": "Creative Liquid Coatings INC", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.827043" + }, + { + "post_title": "Erik Buell Racing", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.853732" + }, + { + "post_title": "Family Christian Health Center", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.879319" + }, + { + "post_title": "Florida Sugar Cane League", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.905880" + }, + { + "post_title": "Greenway Health", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.931751" + }, + { + "post_title": "Haselden Construction", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.960385" + }, + { + "post_title": "Johnson Memorial Health", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:28.990926" + }, + { + "post_title": "Macquarie Health Corporation", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.026316" + }, + { + "post_title": "Marten Transport", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.057168" + }, + { + "post_title": "Mele Printing", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.084155" + }, + { + "post_title": "Montour School District", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.111112" + }, + { + "post_title": "Northern Financial Services", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.137857" + }, + { + "post_title": "Powell Transportation", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.163216" + }, + { + "post_title": "Résidence Les Chtaigniers", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.189319" + }, + { + "post_title": "Ryan Companies", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.215972" + }, + { + "post_title": "Sadbhav Engineering Limited", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.241979" + }, + { + "post_title": "Sardinha Family Trust", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.269190" + }, + { + "post_title": "Schuldnerberatung Ostfriesland e. V.", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.295827" + }, + { + "post_title": "Sutterfield Financial Group", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.323683" + }, + { + "post_title": "The British Columbia Institute Of Technology", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.351264" + }, + { + "post_title": "Unita Locale Socio", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.377208" + }, + { + "post_title": "Vermeer Southeast", + "group_name": "hiveleak", + "discovered": "2022-01-25 15:22:29.404654" + }, + { + "post_title": "Airspan Networks got Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-01-25 15:27:15.452994" + }, + { + "post_title": "plainviewmn.com", + "group_name": "lockbit2", + "discovered": "2022-01-25 16:26:26.319781" + }, + { + "post_title": "Thomson Broadbent", + "group_name": "snatch", + "discovered": "2022-01-25 23:22:37.606156" + }, + { + "post_title": "optimissa.com", + "group_name": "lockbit2", + "discovered": "2022-01-27 11:24:35.066816" + }, + { + "post_title": "isnardi.it", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:26.029986" + }, + { + "post_title": "vbhlaw.com", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:26.297061" + }, + { + "post_title": "laponte.it", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:26.749307" + }, + { + "post_title": "ambau-team.de", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:27.031101" + }, + { + "post_title": "joda.de", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:27.303170" + }, + { + "post_title": "saintcloud.fr", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:27.556386" + }, + { + "post_title": "heubeck.de", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:27.762570" + }, + { + "post_title": "justice.fr", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:27.923121" + }, + { + "post_title": "girlguidinglase...", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:28.091986" + }, + { + "post_title": "estpm.fr", + "group_name": "lockbit2", + "discovered": "2022-01-27 12:26:28.333583" + }, + { + "post_title": "Florida lawyer's data leaked", + "group_name": "everest", + "discovered": "2022-01-27 16:34:00.181570" + }, + { + "post_title": "Optionis", + "group_name": "vicesociety", + "discovered": "2022-01-27 18:28:55.217124" + }, + { + "post_title": "elmonterv.com", + "group_name": "lockbit2", + "discovered": "2022-01-27 19:32:52.532365" + }, + { + "post_title": "Mab Group", + "group_name": "snatch", + "discovered": "2022-01-27 19:33:06.562393" + }, + { + "post_title": "CIG de la Grande Couronne", + "group_name": "midas", + "discovered": "2022-01-28 17:32:47.406094" + }, + { + "post_title": "KCA Deutag", + "group_name": "ransomexx", + "discovered": "2022-01-28 21:32:54.750667" + }, + { + "post_title": "themisautomation.com", + "group_name": "alphv", + "discovered": "2022-01-29 08:28:54.725145" + }, + { + "post_title": "lhotellerie-restauration.fr", + "group_name": "lv", + "discovered": "2022-01-29 13:29:55.853967" + }, + { + "post_title": "Keuerleber", + "group_name": "midas", + "discovered": "2022-02-01 21:22:51.527280" + }, + { + "post_title": "ci.hercules.ca....", + "group_name": "lockbit2", + "discovered": "2022-02-01 22:22:20.966964" + }, + { + "post_title": "wolfbergal", + "group_name": "lockbit2", + "discovered": "2022-02-02 09:21:53.112989" + }, + { + "post_title": "Overseas Travel Agency", + "group_name": "snatch", + "discovered": "2022-02-02 16:23:03.531916" + }, + { + "post_title": "CGT S.p.A. - cgt.it", + "group_name": "alphv", + "discovered": "2022-02-02 21:30:43.876109" + }, + { + "post_title": "Altoona Area School District", + "group_name": "quantum", + "discovered": "2022-02-02 22:19:08.461959" + }, + { + "post_title": "paybito.com", + "group_name": "lockbit2", + "discovered": "2022-02-03 19:24:12.510995" + }, + { + "post_title": "mainland.com.hk", + "group_name": "alphv", + "discovered": "2022-02-04 00:28:10.739896" + }, + { + "post_title": "udmercy.edu", + "group_name": "lockbit2", + "discovered": "2022-02-04 06:22:40.183395" + }, + { + "post_title": "fivestarproduct...", + "group_name": "lockbit2", + "discovered": "2022-02-04 06:22:40.572789" + }, + { + "post_title": "nfcaa.org", + "group_name": "lockbit2", + "discovered": "2022-02-04 07:27:55.649154" + }, + { + "post_title": "siamdial.com", + "group_name": "lockbit2", + "discovered": "2022-02-04 09:20:34.570596" + }, + { + "post_title": "Ourense do Bras...", + "group_name": "lockbit2", + "discovered": "2022-02-04 09:20:34.898268" + }, + { + "post_title": "cmmcpas", + "group_name": "cuba", + "discovered": "2022-02-04 09:20:50.873045" + }, + { + "post_title": "edgo", + "group_name": "cuba", + "discovered": "2022-02-04 09:20:51.184080" + }, + { + "post_title": "shoesforcrews", + "group_name": "cuba", + "discovered": "2022-02-04 09:20:51.545033" + }, + { + "post_title": "rabba", + "group_name": "lockbit2", + "discovered": "2022-02-04 10:21:00.747628" + }, + { + "post_title": "savonia.fi", + "group_name": "lockbit2", + "discovered": "2022-02-04 16:24:44.869718" + }, + { + "post_title": "dectro.com", + "group_name": "lockbit2", + "discovered": "2022-02-04 17:22:34.629244" + }, + { + "post_title": "ukrl.co.uk", + "group_name": "lockbit2", + "discovered": "2022-02-04 17:22:34.932671" + }, + { + "post_title": "ametisfacilitie...", + "group_name": "lockbit2", + "discovered": "2022-02-04 18:25:09.863304" + }, + { + "post_title": "bar2.co.uk", + "group_name": "lockbit2", + "discovered": "2022-02-04 18:25:10.247500" + }, + { + "post_title": "maisonlaprise.c.", + "group_name": "lockbit2", + "discovered": "2022-02-04 19:23:47.379101" + }, + { + "post_title": "hotelcedres.com", + "group_name": "lockbit2", + "discovered": "2022-02-04 20:25:08.318717" + }, + { + "post_title": "cometgroup", + "group_name": "lockbit2", + "discovered": "2022-02-04 20:25:14.469213" + }, + { + "post_title": "Royal Laser", + "group_name": "alphv", + "discovered": "2022-02-04 20:25:26.653671" + }, + { + "post_title": "castro-urdiales...", + "group_name": "lockbit2", + "discovered": "2022-02-04 21:29:41.606282" + }, + { + "post_title": "progereal.com", + "group_name": "lockbit2", + "discovered": "2022-02-04 21:29:41.883590" + }, + { + "post_title": "COFRAP ESPAÑOLA...", + "group_name": "lockbit2", + "discovered": "2022-02-04 21:29:42.090462" + }, + { + "post_title": "prefimetal.com", + "group_name": "lockbit2", + "discovered": "2022-02-04 21:29:42.345823" + }, + { + "post_title": "botafogo.ind.br", + "group_name": "lockbit2", + "discovered": "2022-02-04 23:29:54.437459" + }, + { + "post_title": "Argonaut Gold", + "group_name": "blackbyte", + "discovered": "2022-02-05 01:41:13.223763" + }, + { + "post_title": "Taylor and Martin", + "group_name": "blackbyte", + "discovered": "2022-02-05 01:41:13.555113" + }, + { + "post_title": "Rector Hayden Realtors", + "group_name": "blackbyte", + "discovered": "2022-02-05 01:41:13.924895" + }, + { + "post_title": "Petrolimex", + "group_name": "blackbyte", + "discovered": "2022-02-05 01:41:14.235720" + }, + { + "post_title": "Bud Griffin and Associates", + "group_name": "blackbyte", + "discovered": "2022-02-05 01:41:14.719017" + }, + { + "post_title": "dap.gov.tr", + "group_name": "lockbit2", + "discovered": "2022-02-05 09:22:28.346025" + }, + { + "post_title": "aisc-airbus.", + "group_name": "lockbit2", + "discovered": "2022-02-05 09:22:40.608545" + }, + { + "post_title": "Albany Bank and Trust Company - albanybank.com", + "group_name": "alphv", + "discovered": "2022-02-05 09:22:50.064244" + }, + { + "post_title": "kainz-haustechn...", + "group_name": "lockbit2", + "discovered": "2022-02-05 14:20:21.469374" + }, + { + "post_title": "tyresolesdobras...", + "group_name": "lockbit2", + "discovered": "2022-02-05 14:20:21.749237" + }, + { + "post_title": "Consumers Supply Distributing LLC", + "group_name": "suncrypt", + "discovered": "2022-02-05 21:23:36.836435" + }, + { + "post_title": "maketherightcall.com hk-callcentre", + "group_name": "alphv", + "discovered": "2022-02-06 00:28:50.698587" + }, + { + "post_title": "watermark", + "group_name": "lockbit2", + "discovered": "2022-02-06 05:19:22.242784" + }, + { + "post_title": "se.", + "group_name": "lockbit2", + "discovered": "2022-02-06 16:18:20.488150" + }, + { + "post_title": "sapulpaps.com", + "group_name": "lockbit2", + "discovered": "2022-02-06 21:21:25.127663" + }, + { + "post_title": "MSH Steuerberatungsgesellschaft", + "group_name": "conti", + "discovered": "2022-02-07 00:21:40.320531" + }, + { + "post_title": "KP SNACKS", + "group_name": "conti", + "discovered": "2022-02-07 00:21:40.687359" + }, + { + "post_title": "Athens Distributing Company", + "group_name": "conti", + "discovered": "2022-02-07 00:21:40.876412" + }, + { + "post_title": "NZ UNIFORMS", + "group_name": "conti", + "discovered": "2022-02-07 00:21:41.070184" + }, + { + "post_title": "Zamil Industrial", + "group_name": "conti", + "discovered": "2022-02-07 06:22:21.185107" + }, + { + "post_title": "bayer.co.at", + "group_name": "lockbit2", + "discovered": "2022-02-07 13:23:25.838053" + }, + { + "post_title": "Prince Jewellery & Watch Co., Ltd.", + "group_name": "blackbyte", + "discovered": "2022-02-07 22:24:58.907104" + }, + { + "post_title": "tntorello.com -...", + "group_name": "lockbit2", + "discovered": "2022-02-08 10:23:14.488677" + }, + { + "post_title": "tntorello.com", + "group_name": "lockbit2", + "discovered": "2022-02-08 10:23:14.741508" + }, + { + "post_title": "Community Health Center | Valle del Sol", + "group_name": "suncrypt", + "discovered": "2022-02-08 11:20:57.765837" + }, + { + "post_title": "Heartland Alliance", + "group_name": "suncrypt", + "discovered": "2022-02-08 11:20:57.985868" + }, + { + "post_title": "Dassault Falcon Jet", + "group_name": "mountlocker", + "discovered": "2022-02-08 14:26:33.620994" + }, + { + "post_title": "SEA-invest", + "group_name": "conti", + "discovered": "2022-02-08 14:28:51.588002" + }, + { + "post_title": "skandia.com.mx", + "group_name": "lockbit2", + "discovered": "2022-02-08 15:28:46.258343" + }, + { + "post_title": "aludesign.ro", + "group_name": "lockbit2", + "discovered": "2022-02-08 15:28:46.486177" + }, + { + "post_title": "ibasis.com | Pa...", + "group_name": "lockbit2", + "discovered": "2022-02-08 17:26:35.939575" + }, + { + "post_title": "chemtech.net", + "group_name": "alphv", + "discovered": "2022-02-08 19:30:17.368631" + }, + { + "post_title": "Venture Machine & Tool, Inc.", + "group_name": "blackbyte", + "discovered": "2022-02-08 20:24:24.052241" + }, + { + "post_title": "Aeronamic", + "group_name": "blackbyte", + "discovered": "2022-02-08 20:24:24.363278" + }, + { + "post_title": "bishopeye.com", + "group_name": "alphv", + "discovered": "2022-02-08 23:27:43.242738" + }, + { + "post_title": "The Lovett Group", + "group_name": "conti", + "discovered": "2022-02-09 00:32:23.538216" + }, + { + "post_title": "Jazeera Airways", + "group_name": "quantum", + "discovered": "2022-02-09 01:47:19.809678" + }, + { + "post_title": "cilent", + "group_name": "lockbit2", + "discovered": "2022-02-09 15:22:35.722663" + }, + { + "post_title": "Weir & Partners LLP", + "group_name": "everest", + "discovered": "2022-02-09 17:27:39.382120" + }, + { + "post_title": "PetroVietnam", + "group_name": "snatch", + "discovered": "2022-02-09 21:25:15.183067" + }, + { + "post_title": "Rheinland-Pfalz Bank", + "group_name": "conti", + "discovered": "2022-02-10 23:22:27.907087" + }, + { + "post_title": "Vrancor Group", + "group_name": "conti", + "discovered": "2022-02-11 00:26:41.230668" + }, + { + "post_title": "New World Development Company Limited (NWD)", + "group_name": "conti", + "discovered": "2022-02-11 00:26:41.540575" + }, + { + "post_title": "HelmsBriscoe", + "group_name": "conti", + "discovered": "2022-02-11 00:26:41.810974" + }, + { + "post_title": "Aareon Nederland B.V.", + "group_name": "conti", + "discovered": "2022-02-11 00:26:42.030983" + }, + { + "post_title": "ufa.com.lb", + "group_name": "lv", + "discovered": "2022-02-11 14:23:43.356339" + }, + { + "post_title": "ibasis.com", + "group_name": "lockbit2", + "discovered": "2022-02-11 17:19:59.590277" + }, + { + "post_title": "J", + "group_name": "midas", + "discovered": "2022-02-12 04:26:56.134981" + }, + { + "post_title": "New-New2", + "group_name": "midas", + "discovered": "2022-02-12 09:23:03.914137" + }, + { + "post_title": "Ebix Inc.", + "group_name": "conti", + "discovered": "2022-02-12 11:22:27.224279" + }, + { + "post_title": "San Francisco 49ers", + "group_name": "blackbyte", + "discovered": "2022-02-12 18:22:03.252056" + }, + { + "post_title": "idm-srl.it", + "group_name": "lockbit2", + "discovered": "2022-02-12 20:21:50.235180" + }, + { + "post_title": "gruges.com.mx", + "group_name": "lockbit2", + "discovered": "2022-02-12 20:21:50.607538" + }, + { + "post_title": "iTCo Solutions Ltd", + "group_name": "conti", + "discovered": "2022-02-13 00:30:15.177408" + }, + { + "post_title": "i", + "group_name": "lockbit2", + "discovered": "2022-02-13 08:21:00.666120" + }, + { + "post_title": "zhulian.co.th", + "group_name": "lockbit2", + "discovered": "2022-02-13 11:19:39.439668" + }, + { + "post_title": "New3", + "group_name": "midas", + "discovered": "2022-02-13 14:24:25.441243" + }, + { + "post_title": "rbhltd.com", + "group_name": "lockbit2", + "discovered": "2022-02-13 15:24:52.649412" + }, + { + "post_title": "cclint.com", + "group_name": "lockbit2", + "discovered": "2022-02-13 15:24:52.914985" + }, + { + "post_title": "wingsoft.it", + "group_name": "lockbit2", + "discovered": "2022-02-13 16:29:44.373258" + }, + { + "post_title": "Quantel Medical | quantel-medical.com", + "group_name": "alphv", + "discovered": "2022-02-13 16:30:00.421545" + }, + { + "post_title": "NorthEast Coverages | northeastcoverages.com", + "group_name": "alphv", + "discovered": "2022-02-13 16:30:00.808646" + }, + { + "post_title": "Scherr Legate | scherrlegate.com", + "group_name": "alphv", + "discovered": "2022-02-13 16:30:01.097372" + }, + { + "post_title": "Medical Staff | medicalstaff.com.au", + "group_name": "alphv", + "discovered": "2022-02-13 16:30:01.746342" + }, + { + "post_title": "ecostampa.it", + "group_name": "alphv", + "discovered": "2022-02-14 08:23:37.068309" + }, + { + "post_title": "trustinnews.pt", + "group_name": "lockbit2", + "discovered": "2022-02-14 12:21:50.890664" + }, + { + "post_title": "meeuwesen.nl", + "group_name": "lockbit2", + "discovered": "2022-02-14 12:21:51.201966" + }, + { + "post_title": "sienaliteracy.o...", + "group_name": "lockbit2", + "discovered": "2022-02-14 12:21:51.469796" + }, + { + "post_title": "www.tikg.co.jp", + "group_name": "lv", + "discovered": "2022-02-14 12:22:08.258009" + }, + { + "post_title": "o2fit.cl", + "group_name": "lockbit2", + "discovered": "2022-02-14 20:32:36.559241" + }, + { + "post_title": "ackmo.be", + "group_name": "lockbit2", + "discovered": "2022-02-14 20:32:37.024492" + }, + { + "post_title": "pwma.org.hk", + "group_name": "lockbit2", + "discovered": "2022-02-14 20:32:37.345177" + }, + { + "post_title": "Muehlhan", + "group_name": "conti", + "discovered": "2022-02-14 20:32:45.434308" + }, + { + "post_title": "Vehicle Service Group (VSG)", + "group_name": "marketo", + "discovered": "2022-02-14 20:32:48.096765" + }, + { + "post_title": "hifly.aero", + "group_name": "lockbit2", + "discovered": "2022-02-14 23:26:25.080943" + }, + { + "post_title": "Ciam SPA", + "group_name": "conti", + "discovered": "2022-02-15 00:29:22.475746" + }, + { + "post_title": "Swissport", + "group_name": "alphv", + "discovered": "2022-02-15 00:29:25.518281" + }, + { + "post_title": "GEE GROUP INC.", + "group_name": "conti", + "discovered": "2022-02-15 08:21:59.088218" + }, + { + "post_title": "KVK Tech | Specialty Brands and Generics", + "group_name": "suncrypt", + "discovered": "2022-02-15 14:29:08.141629" + }, + { + "post_title": "beautyindustryg...", + "group_name": "lockbit2", + "discovered": "2022-02-15 17:21:44.104143" + }, + { + "post_title": "codisel.com.mx", + "group_name": "lockbit2", + "discovered": "2022-02-15 18:25:52.950416" + }, + { + "post_title": "POP TV", + "group_name": "ransomexx", + "discovered": "2022-02-15 21:24:21.160543" + }, + { + "post_title": "gruporoveri.com.br", + "group_name": "lv", + "discovered": "2022-02-16 00:31:39.371137" + }, + { + "post_title": "HyLife", + "group_name": "alphv", + "discovered": "2022-02-16 10:44:54.147772" + }, + { + "post_title": "Southwark Metal Manufacturing Co. | southwarkmetal.com", + "group_name": "alphv", + "discovered": "2022-02-16 15:25:16.759939" + }, + { + "post_title": "ALEXIM.COM", + "group_name": "clop", + "discovered": "2022-02-16 20:28:07.692525" + }, + { + "post_title": "CAPCARPET.COM", + "group_name": "clop", + "discovered": "2022-02-16 20:28:08.003348" + }, + { + "post_title": "JBINSTANTLAWN.NET", + "group_name": "clop", + "discovered": "2022-02-16 20:28:08.299180" + }, + { + "post_title": "enit.it", + "group_name": "lockbit2", + "discovered": "2022-02-18 08:31:44.349967" + }, + { + "post_title": "Doherty Cella Keane | dcklaw.com", + "group_name": "alphv", + "discovered": "2022-02-18 08:34:37.520798" + }, + { + "post_title": "yipintsoi.com", + "group_name": "alphv", + "discovered": "2022-02-18 08:34:37.556191" + }, + { + "post_title": "CSI Laboratories", + "group_name": "conti", + "discovered": "2022-02-18 10:21:54.112391" + }, + { + "post_title": "heritage-encon", + "group_name": "cuba", + "discovered": "2022-02-18 18:25:08.564931" + }, + { + "post_title": "muntons", + "group_name": "cuba", + "discovered": "2022-02-18 18:25:09.044732" + }, + { + "post_title": "Miroballi Durkin & Rudin - mdr-law.com", + "group_name": "alphv", + "discovered": "2022-02-18 18:25:11.298979" + }, + { + "post_title": "OPS omniplussystem.com", + "group_name": "lv", + "discovered": "2022-02-18 19:23:06.358202" + }, + { + "post_title": "threesixtysourcing.com", + "group_name": "alphv", + "discovered": "2022-02-18 19:23:07.470161" + }, + { + "post_title": "botswanatourism...", + "group_name": "lockbit2", + "discovered": "2022-02-19 10:21:47.856682" + }, + { + "post_title": "sanvitale.ra.it", + "group_name": "lockbit2", + "discovered": "2022-02-19 10:21:48.123773" + }, + { + "post_title": "kokuyocamlin.co...", + "group_name": "lockbit2", + "discovered": "2022-02-19 10:21:48.398218" + }, + { + "post_title": "pertusipastore....", + "group_name": "lockbit2", + "discovered": "2022-02-19 10:21:48.808461" + }, + { + "post_title": "Mack Defense, LLC", + "group_name": "conti", + "discovered": "2022-02-19 11:21:51.144925" + }, + { + "post_title": "centralia.edu", + "group_name": "lockbit2", + "discovered": "2022-02-19 12:24:27.097894" + }, + { + "post_title": "brookledge.com", + "group_name": "lockbit2", + "discovered": "2022-02-19 12:24:27.499019" + }, + { + "post_title": "Various accesses on sale", + "group_name": "everest", + "discovered": "2022-02-19 12:24:40.032546" + }, + { + "post_title": "oceantextile.dk", + "group_name": "lockbit2", + "discovered": "2022-02-19 13:28:41.472380" + }, + { + "post_title": "taylorswindows....", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:16.170378" + }, + { + "post_title": "asgcourtage.com", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:16.443262" + }, + { + "post_title": "centrictel.com", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:16.703802" + }, + { + "post_title": "plane.biz", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:17.011274" + }, + { + "post_title": "strix.com", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:17.416717" + }, + { + "post_title": "maldegem.be", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:17.689808" + }, + { + "post_title": "partners.pia.be", + "group_name": "lockbit2", + "discovered": "2022-02-19 16:20:17.866415" + }, + { + "post_title": "www.pccua.edu", + "group_name": "alphv", + "discovered": "2022-02-19 17:19:05.487315" + }, + { + "post_title": "PFEIFER Drako", + "group_name": "snatch", + "discovered": "2022-02-19 18:26:37.599527" + }, + { + "post_title": "CIELD", + "group_name": "snatch", + "discovered": "2022-02-19 18:26:37.989589" + }, + { + "post_title": "bynx.com", + "group_name": "lockbit2", + "discovered": "2022-02-20 11:17:35.427569" + }, + { + "post_title": "weye", + "group_name": "lockbit2", + "discovered": "2022-02-20 21:23:24.502427" + }, + { + "post_title": "Signum", + "group_name": "everest", + "discovered": "2022-02-20 21:23:39.941741" + }, + { + "post_title": "gpvivienda.com", + "group_name": "lockbit2", + "discovered": "2022-02-21 15:21:48.356333" + }, + { + "post_title": "groupe-sobotram...", + "group_name": "lockbit2", + "discovered": "2022-02-21 15:21:50.719654" + }, + { + "post_title": "CENTRAL BAPTIST COLLEGE", + "group_name": "suncrypt", + "discovered": "2022-02-21 16:24:20.153596" + }, + { + "post_title": "Royal Smilde", + "group_name": "suncrypt", + "discovered": "2022-02-21 23:18:51.377161" + }, + { + "post_title": "SOUTHWARK METAL MANUFACTURING", + "group_name": "midas", + "discovered": "2022-02-22 06:21:58.510979" + }, + { + "post_title": "RAMSAUER", + "group_name": "conti", + "discovered": "2022-02-23 00:23:28.707053" + }, + { + "post_title": "Tudi Mechanical Systems (TMS)", + "group_name": "conti", + "discovered": "2022-02-23 00:23:28.956831" + }, + { + "post_title": "Phyllis Browning Company | phyllisbrowning.com", + "group_name": "alphv", + "discovered": "2022-02-23 00:23:32.421411" + }, + { + "post_title": "S", + "group_name": "midas", + "discovered": "2022-02-23 13:21:48.950592" + }, + { + "post_title": "photolitto.com", + "group_name": "lockbit2", + "discovered": "2022-02-23 14:20:52.587152" + }, + { + "post_title": "komeg.de", + "group_name": "lockbit2", + "discovered": "2022-02-23 17:22:35.324857" + }, + { + "post_title": "trauma.lbg.ac.a...", + "group_name": "lockbit2", + "discovered": "2022-02-23 17:22:35.739772" + }, + { + "post_title": "blueocean.consu...", + "group_name": "lockbit2", + "discovered": "2022-02-23 17:22:36.075186" + }, + { + "post_title": "stetsonexpo.", + "group_name": "lockbit2", + "discovered": "2022-02-23 19:19:16.589227" + }, + { + "post_title": "lipinsk", + "group_name": "lockbit2", + "discovered": "2022-02-23 20:26:07.617906" + }, + { + "post_title": "Schultze and Braun", + "group_name": "conti", + "discovered": "2022-02-24 00:21:13.488960" + }, + { + "post_title": "Apollo", + "group_name": "conti", + "discovered": "2022-02-24 00:21:13.726277" + }, + { + "post_title": "verisilicon.co", + "group_name": "lockbit2", + "discovered": "2022-02-24 10:22:23.279937" + }, + { + "post_title": "m", + "group_name": "lockbit2", + "discovered": "2022-02-24 17:31:24.749598" + }, + { + "post_title": "dtstechnical.c", + "group_name": "lockbit2", + "discovered": "2022-02-24 22:21:51.465583" + }, + { + "post_title": "Midas Pharma GmbH", + "group_name": "conti", + "discovered": "2022-02-25 00:26:24.170044" + }, + { + "post_title": "Primex Manufacturing Inc", + "group_name": "conti", + "discovered": "2022-02-25 00:26:24.574516" + }, + { + "post_title": "KRACHT GmbH", + "group_name": "conti", + "discovered": "2022-02-25 00:26:24.845226" + }, + { + "post_title": "JOB AG", + "group_name": "conti", + "discovered": "2022-02-25 00:26:25.350569" + }, + { + "post_title": "Colli del Soligo", + "group_name": "conti", + "discovered": "2022-02-25 00:26:25.689155" + }, + { + "post_title": "JinkoSolar.com (NYSE: JKS)", + "group_name": "alphv", + "discovered": "2022-02-25 07:27:04.437135" + }, + { + "post_title": "fehrs.com", + "group_name": "lockbit2", + "discovered": "2022-02-25 12:19:30.784842" + }, + { + "post_title": "The Spine Diagnostic", + "group_name": "conti", + "discovered": "2022-02-25 12:19:47.983925" + }, + { + "post_title": "ITS InfoCom", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.707849" + }, + { + "post_title": "EBM", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.722248" + }, + { + "post_title": "Doner", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.735922" + }, + { + "post_title": "Powerhouse1", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.749615" + }, + { + "post_title": "Friedrich", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.763531" + }, + { + "post_title": "Emil Frey", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.777568" + }, + { + "post_title": "Eurocoin Interactive B.V.", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.880937" + }, + { + "post_title": "Rodonaves Transportes E Encomendas Ltda", + "group_name": "hiveleak", + "discovered": "2022-02-25 12:23:24.926166" + }, + { + "post_title": "Hyundai Samho Heavy Industries Co.,Ltd. (South Korea)", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.814780" + }, + { + "post_title": "Centre D'Odontologia Integrada Miret-Puig", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.840287" + }, + { + "post_title": "Institute For Systems And Robotics (Isr-Lisboa", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.874208" + }, + { + "post_title": "Drake & Scull International PJSC", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.890178" + }, + { + "post_title": "Supernus Pharmaceuticals, NASDAQ: SUPN", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.907992" + }, + { + "post_title": "Shanghai Huizhong Automotive Manufacturing Co., Ltd.", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.933896" + }, + { + "post_title": "Tite - Live Belgique", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.948703" + }, + { + "post_title": "Ningbo Dechang Electric Machinery Manufacturing Co., Ltd.", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:08.963091" + }, + { + "post_title": "Guts Superpols Co., Ltd.", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:09.021174" + }, + { + "post_title": "Rocky's Ace Hardware", + "group_name": "hiveleak", + "discovered": "2022-02-25 14:52:09.084236" + }, + { + "post_title": "BERMAN SOBIN GROSS & DARBY", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.424086" + }, + { + "post_title": "MAS & Coronis Health", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.481107" + }, + { + "post_title": "Sit'N Sleep", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.534409" + }, + { + "post_title": "Palacios & Asociados", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.569017" + }, + { + "post_title": "Steven L. Sugarman & Associates", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.644238" + }, + { + "post_title": "Drake & Scull International PJSC", + "group_name": "hiveleak", + "discovered": "2022-02-25 15:23:19.665308" + }, + { + "post_title": "WARNING", + "group_name": "conti", + "discovered": "2022-02-25 16:22:17.709569" + }, + { + "post_title": "GEMS Education", + "group_name": "alphv", + "discovered": "2022-02-25 16:22:21.568126" + }, + { + "post_title": "ids97", + "group_name": "cuba", + "discovered": "2022-02-25 17:30:44.591913" + }, + { + "post_title": "McDonald's", + "group_name": "snatch", + "discovered": "2022-02-25 18:24:53.631694" + }, + { + "post_title": "GEMS Education | gemseducation.com", + "group_name": "alphv", + "discovered": "2022-02-25 18:24:55.502825" + }, + { + "post_title": "Research Partnership", + "group_name": "conti", + "discovered": "2022-02-26 00:25:26.555841" + }, + { + "post_title": "IDEAL Fensterbau", + "group_name": "conti", + "discovered": "2022-02-26 00:25:27.068950" + }, + { + "post_title": "HF Group", + "group_name": "conti", + "discovered": "2022-02-26 00:25:27.550786" + }, + { + "post_title": "giovanard", + "group_name": "lockbit2", + "discovered": "2022-02-26 04:18:28.540699" + }, + { + "post_title": "University of Neuchâtel", + "group_name": "conti", + "discovered": "2022-02-26 09:22:21.211089" + }, + { + "post_title": "MADRID CALLE 30 SA ( https://www.mc30.es/ )", + "group_name": "alphv", + "discovered": "2022-02-26 09:22:25.455950" + }, + { + "post_title": "giovana", + "group_name": "lockbit2", + "discovered": "2022-02-26 14:23:46.005970" + }, + { + "post_title": "chip", + "group_name": "lockbit2", + "discovered": "2022-02-26 16:22:57.667982" + }, + { + "post_title": "ffnm.org", + "group_name": "lockbit2", + "discovered": "2022-02-27 13:25:51.281518" + }, + { + "post_title": "cgm", + "group_name": "lockbit2", + "discovered": "2022-02-27 14:22:27.135750" + }, + { + "post_title": "WARNING", + "group_name": "lockbit2", + "discovered": "2022-02-27 17:22:44.693589" + }, + { + "post_title": "ugcorp.com", + "group_name": "lockbit2", + "discovered": "2022-02-27 18:22:53.157659" + }, + { + "post_title": "us.jll.com", + "group_name": "lockbit2", + "discovered": "2022-02-27 19:22:52.762581" + }, + { + "post_title": "richmondmonroe....", + "group_name": "lockbit2", + "discovered": "2022-02-27 20:23:52.829373" + }, + { + "post_title": "lakeview.com", + "group_name": "lockbit2", + "discovered": "2022-02-27 21:19:09.726620" + }, + { + "post_title": "jamailsmith.com", + "group_name": "lockbit2", + "discovered": "2022-02-28 12:28:05.753231" + }, + { + "post_title": "safed.in", + "group_name": "lockbit2", + "discovered": "2022-02-28 13:28:13.249900" + }, + { + "post_title": "GHI Hornos Industriales first batch of Data (0,1%)", + "group_name": "ragnarlocker", + "discovered": "2022-02-28 17:30:43.932369" + }, + { + "post_title": "ccli", + "group_name": "lockbit2", + "discovered": "2022-02-28 19:22:38.366856" + }, + { + "post_title": "InfoTek Consulting Services", + "group_name": "quantum", + "discovered": "2022-02-28 21:20:44.616236" + }, + { + "post_title": "Long Fence | Fence Company Since 1945 | longfence.com", + "group_name": "alphv", + "discovered": "2022-02-28 23:20:52.095296" + }, + { + "post_title": "Waller Lansden Dortch & Davis, LLP", + "group_name": "alphv", + "discovered": "2022-03-01 08:22:11.714963" + }, + { + "post_title": "e-fmc.com.ar", + "group_name": "lockbit2", + "discovered": "2022-03-01 16:21:57.108084" + }, + { + "post_title": "wp", + "group_name": "lockbit2", + "discovered": "2022-03-01 23:26:47.810934" + }, + { + "post_title": "HOL-MAC Corp.", + "group_name": "conti", + "discovered": "2022-03-02 04:20:22.638711" + }, + { + "post_title": "www.wimmog.ch", + "group_name": "lockbit2", + "discovered": "2022-03-02 11:24:45.953172" + }, + { + "post_title": "www.elitecorp.c...", + "group_name": "lockbit2", + "discovered": "2022-03-02 12:22:01.530015" + }, + { + "post_title": "www.haeny.com", + "group_name": "lockbit2", + "discovered": "2022-03-02 13:20:14.095234" + }, + { + "post_title": "www.tccm.com", + "group_name": "lockbit2", + "discovered": "2022-03-02 14:23:15.157556" + }, + { + "post_title": "elitecorp.com", + "group_name": "lockbit2", + "discovered": "2022-03-02 19:22:13.439237" + }, + { + "post_title": "haeny.com", + "group_name": "lockbit2", + "discovered": "2022-03-02 20:20:56.538656" + }, + { + "post_title": "wimmog.ch", + "group_name": "lockbit2", + "discovered": "2022-03-02 21:35:25.218734" + }, + { + "post_title": "tccm.com", + "group_name": "lockbit2", + "discovered": "2022-03-02 22:24:18.954964" + }, + { + "post_title": "Buhck Gruppe", + "group_name": "conti", + "discovered": "2022-03-03 00:25:15.278260" + }, + { + "post_title": "GRUPPO ANGELANTONI", + "group_name": "conti", + "discovered": "2022-03-03 01:48:55.698551" + }, + { + "post_title": "Sport Vision", + "group_name": "conti", + "discovered": "2022-03-03 02:39:31.580752" + }, + { + "post_title": "sapulpaps.org", + "group_name": "lockbit2", + "discovered": "2022-03-03 04:22:27.741850" + }, + { + "post_title": "simatelex.com.h...", + "group_name": "lockbit2", + "discovered": "2022-03-03 15:23:21.984634" + }, + { + "post_title": "Private company #2", + "group_name": "snatch", + "discovered": "2022-03-03 20:18:46.999835" + }, + { + "post_title": "Get Fresh Company", + "group_name": "conti", + "discovered": "2022-03-04 00:31:26.406548" + }, + { + "post_title": "United McGill Corporation", + "group_name": "conti", + "discovered": "2022-03-04 01:45:30.603786" + }, + { + "post_title": "Caledonian", + "group_name": "conti", + "discovered": "2022-03-04 02:44:26.466422" + }, + { + "post_title": "Gleason Corporation", + "group_name": "conti", + "discovered": "2022-03-04 03:25:08.101454" + }, + { + "post_title": "Prima Power", + "group_name": "conti", + "discovered": "2022-03-04 04:21:17.071704" + }, + { + "post_title": "A.J. Rose", + "group_name": "conti", + "discovered": "2022-03-04 05:23:11.315371" + }, + { + "post_title": "tovogom", + "group_name": "lockbit2", + "discovered": "2022-03-04 09:23:09.261759" + }, + { + "post_title": "freedomfarmspa....", + "group_name": "lockbit2", + "discovered": "2022-03-04 11:28:13.481686" + }, + { + "post_title": "PAN AMERICAN ENERGY S.L. SUCURSAL ARGENTINA", + "group_name": "hiveleak", + "discovered": "2022-03-04 12:23:23.447181" + }, + { + "post_title": "Lifetech Resources", + "group_name": "conti", + "discovered": "2022-03-04 14:24:32.693467" + }, + { + "post_title": "GHI Hornos Industriales Fully Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-03-04 23:21:32.185317" + }, + { + "post_title": "Assimoco Group | assimoco.it", + "group_name": "alphv", + "discovered": "2022-03-05 09:25:40.111596" + }, + { + "post_title": "abcp.or", + "group_name": "lockbit2", + "discovered": "2022-03-05 15:22:31.965364" + }, + { + "post_title": "Cummins-Wagner", + "group_name": "conti", + "discovered": "2022-03-06 00:26:13.084462" + }, + { + "post_title": "BAUCENTER | ujhazbudapest.hu", + "group_name": "alphv", + "discovered": "2022-03-07 00:51:57.179537" + }, + { + "post_title": "Centro Hospitalar de Setúbal", + "group_name": "everest", + "discovered": "2022-03-07 04:21:40.355405" + }, + { + "post_title": "luzeirosfortale.", + "group_name": "lockbit2", + "discovered": "2022-03-07 05:23:57.499934" + }, + { + "post_title": "Federal land inc.", + "group_name": "everest", + "discovered": "2022-03-07 06:21:29.406488" + }, + { + "post_title": "Campbell Sales and Service, Inc", + "group_name": "everest", + "discovered": "2022-03-07 07:22:54.373299" + }, + { + "post_title": "Law Offices of Brandon Sua & Associates", + "group_name": "everest", + "discovered": "2022-03-07 08:23:23.766927" + }, + { + "post_title": "Greenberg & Stein New York City Personal Injury Lawyers", + "group_name": "everest", + "discovered": "2022-03-07 09:22:32.751206" + }, + { + "post_title": "brownsville-pub...", + "group_name": "lockbit2", + "discovered": "2022-03-07 10:23:48.292740" + }, + { + "post_title": "Backus, Meyer & Branch, LLP", + "group_name": "everest", + "discovered": "2022-03-07 11:20:53.496427" + }, + { + "post_title": "Gershon Biegeleisen & Co", + "group_name": "everest", + "discovered": "2022-03-07 12:21:30.674655" + }, + { + "post_title": "BEAUTYWEST, INC.", + "group_name": "everest", + "discovered": "2022-03-07 13:33:40.953126" + }, + { + "post_title": "jrichard-paysag...", + "group_name": "lockbit2", + "discovered": "2022-03-07 14:20:56.014185" + }, + { + "post_title": "stanthonys.slou...", + "group_name": "lockbit2", + "discovered": "2022-03-07 15:22:49.653082" + }, + { + "post_title": "Ledcor", + "group_name": "everest", + "discovered": "2022-03-07 16:23:19.140026" + }, + { + "post_title": "IDFC FIRST Bank", + "group_name": "everest", + "discovered": "2022-03-07 17:25:38.247767" + }, + { + "post_title": "Loepthien Maeder Treuhand AG", + "group_name": "conti", + "discovered": "2022-03-07 18:26:18.628877" + }, + { + "post_title": "EUROPA GROUP", + "group_name": "conti", + "discovered": "2022-03-07 19:24:54.187928" + }, + { + "post_title": "Turner Construction Company", + "group_name": "everest", + "discovered": "2022-03-07 20:20:22.114231" + }, + { + "post_title": "INVIMA", + "group_name": "blackbyte", + "discovered": "2022-03-07 21:20:09.558620" + }, + { + "post_title": "Fujioka Eletro Imagem SA", + "group_name": "conti", + "discovered": "2022-03-07 22:21:59.293417" + }, + { + "post_title": "Fuchs North America", + "group_name": "conti", + "discovered": "2022-03-07 23:21:28.516012" + }, + { + "post_title": "Warren Resources", + "group_name": "snatch", + "discovered": "2022-03-08 00:24:48.879128" + }, + { + "post_title": "Xtera", + "group_name": "snatch", + "discovered": "2022-03-08 01:45:35.615056" + }, + { + "post_title": "Carpenter & Zuckerman | cz.law", + "group_name": "alphv", + "discovered": "2022-03-08 02:40:34.003378" + }, + { + "post_title": "XEFI", + "group_name": "everest", + "discovered": "2022-03-08 18:25:22.534613" + }, + { + "post_title": "Myron Corp.", + "group_name": "conti", + "discovered": "2022-03-08 22:22:06.378799" + }, + { + "post_title": "hamm", + "group_name": "lockbit2", + "discovered": "2022-03-08 23:18:50.884048" + }, + { + "post_title": "TST Logistics", + "group_name": "conti", + "discovered": "2022-03-09 00:24:39.820762" + }, + { + "post_title": "Great HealthWorks", + "group_name": "conti", + "discovered": "2022-03-09 01:52:36.481345" + }, + { + "post_title": "Aluminerie Alouette", + "group_name": "conti", + "discovered": "2022-03-09 07:19:15.341154" + }, + { + "post_title": "bridgestoneamer...", + "group_name": "lockbit2", + "discovered": "2022-03-09 23:20:58.713212" + }, + { + "post_title": "fer", + "group_name": "lockbit2", + "discovered": "2022-03-10 01:44:20.401537" + }, + { + "post_title": "bioskin.sg", + "group_name": "lockbit2", + "discovered": "2022-03-10 12:26:06.016750" + }, + { + "post_title": "tingtong.com.cn", + "group_name": "lockbit2", + "discovered": "2022-03-11 09:18:24.065209" + }, + { + "post_title": "weber-betonpump..", + "group_name": "lockbit2", + "discovered": "2022-03-11 10:19:00.439571" + }, + { + "post_title": "sysmac.com.sg", + "group_name": "lockbit2", + "discovered": "2022-03-11 20:21:38.828904" + }, + { + "post_title": "SPERONI SpA", + "group_name": "everest", + "discovered": "2022-03-11 21:21:12.179087" + }, + { + "post_title": "ymcad", + "group_name": "lockbit2", + "discovered": "2022-03-12 07:20:23.047849" + }, + { + "post_title": "bedfordshire.police.uk", + "group_name": "arvinclub", + "discovered": "2022-03-12 08:20:51.499861" + }, + { + "post_title": "orientalaromati...", + "group_name": "lockbit2", + "discovered": "2022-03-12 11:20:47.213052" + }, + { + "post_title": "cachibi.co", + "group_name": "lockbit2", + "discovered": "2022-03-12 12:19:13.830500" + }, + { + "post_title": "etg.digital", + "group_name": "lockbit2", + "discovered": "2022-03-12 13:21:00.894238" + }, + { + "post_title": "inibsa.com | inibsadental.com | inibsa.net", + "group_name": "alphv", + "discovered": "2022-03-12 14:20:34.455215" + }, + { + "post_title": "snteseccion30sa...", + "group_name": "lockbit2", + "discovered": "2022-03-12 16:20:02.634310" + }, + { + "post_title": "XEFI / Neocyber", + "group_name": "everest", + "discovered": "2022-03-12 21:19:13.806217" + }, + { + "post_title": "SENADO Argentina", + "group_name": "vicesociety", + "discovered": "2022-03-13 00:25:56.529881" + }, + { + "post_title": "scanvogn.com", + "group_name": "lockbit2", + "discovered": "2022-03-13 06:23:17.265232" + }, + { + "post_title": "ikk-group.com", + "group_name": "lockbit2", + "discovered": "2022-03-13 07:19:48.786288" + }, + { + "post_title": "ambujaneotia.co...", + "group_name": "lockbit2", + "discovered": "2022-03-13 08:19:12.348492" + }, + { + "post_title": "danubiushotels....", + "group_name": "lockbit2", + "discovered": "2022-03-13 09:16:15.438971" + }, + { + "post_title": "etrps.de", + "group_name": "lockbit2", + "discovered": "2022-03-13 10:20:04.445749" + }, + { + "post_title": "News", + "group_name": "everest", + "discovered": "2022-03-14 09:18:54.878387" + }, + { + "post_title": "UK GOV", + "group_name": "everest", + "discovered": "2022-03-14 14:21:04.396176" + }, + { + "post_title": "Smith Transport Full Leak", + "group_name": "ragnarlocker", + "discovered": "2022-03-14 17:21:12.453202" + }, + { + "post_title": "snteseccion30sa..", + "group_name": "lockbit2", + "discovered": "2022-03-14 18:19:30.184373" + }, + { + "post_title": "inibsa.net", + "group_name": "alphv", + "discovered": "2022-03-14 21:22:00.762314" + }, + { + "post_title": "Monteleone & McCrory LLP", + "group_name": "alphv", + "discovered": "2022-03-14 22:22:04.338143" + }, + { + "post_title": "Viva Air", + "group_name": "ransomexx", + "discovered": "2022-03-14 23:24:48.683525" + }, + { + "post_title": "f", + "group_name": "lockbit2", + "discovered": "2022-03-15 06:22:32.762111" + }, + { + "post_title": "Ward Hadaway", + "group_name": "lorenz", + "discovered": "2022-03-15 13:25:57.796695" + }, + { + "post_title": "VadaTech", + "group_name": "lorenz", + "discovered": "2022-03-15 14:27:29.234612" + }, + { + "post_title": "Fuji America Corporation", + "group_name": "lorenz", + "discovered": "2022-03-15 15:24:26.047271" + }, + { + "post_title": "Instituto Nacional de Tecnología Agropecuaria", + "group_name": "everest", + "discovered": "2022-03-15 18:21:39.957240" + }, + { + "post_title": "Grcouceiro", + "group_name": "midas", + "discovered": "2022-03-15 19:21:55.734087" + }, + { + "post_title": "mfi", + "group_name": "lockbit2", + "discovered": "2022-03-15 21:19:31.243239" + }, + { + "post_title": "Migros", + "group_name": "suncrypt", + "discovered": "2022-03-16 06:20:19.023836" + }, + { + "post_title": "medinadairy.co....", + "group_name": "lockbit2", + "discovered": "2022-03-16 07:21:57.504306" + }, + { + "post_title": "vbsharma.ca", + "group_name": "lockbit2", + "discovered": "2022-03-16 12:23:21.698050" + }, + { + "post_title": "matteolisrl.it", + "group_name": "lockbit2", + "discovered": "2022-03-16 13:27:28.871026" + }, + { + "post_title": "Bullfrog International | bullfrogspas.com", + "group_name": "alphv", + "discovered": "2022-03-16 14:20:53.537610" + }, + { + "post_title": "www.rebuildingt...", + "group_name": "lockbit2", + "discovered": "2022-03-16 17:26:32.791339" + }, + { + "post_title": "www.comune.vill...", + "group_name": "lockbit2", + "discovered": "2022-03-16 18:22:09.119775" + }, + { + "post_title": "taguefamilyprac...", + "group_name": "lockbit2", + "discovered": "2022-03-16 19:20:26.487413" + }, + { + "post_title": "drory.com.cn", + "group_name": "lockbit2", + "discovered": "2022-03-16 20:37:59.124748" + }, + { + "post_title": "comune.villafra...", + "group_name": "lockbit2", + "discovered": "2022-03-17 03:52:13.016329" + }, + { + "post_title": "onedoc.ch/fr/ca...", + "group_name": "lockbit2", + "discovered": "2022-03-17 04:25:19.370699" + }, + { + "post_title": "rebuildingtoget...", + "group_name": "lockbit2", + "discovered": "2022-03-17 05:23:45.194691" + }, + { + "post_title": "M.T.B.", + "group_name": "alphv", + "discovered": "2022-03-17 06:24:19.056458" + }, + { + "post_title": "www.onedoc.ch/f...", + "group_name": "lockbit2", + "discovered": "2022-03-17 10:07:01.607963" + }, + { + "post_title": "vvrmc.org | Par...", + "group_name": "lockbit2", + "discovered": "2022-03-17 10:07:01.623055" + }, + { + "post_title": "sbctanzania.co....", + "group_name": "lockbit2", + "discovered": "2022-03-17 10:07:01.640961" + }, + { + "post_title": "Rosewd", + "group_name": "pandora", + "discovered": "2022-03-17 10:07:14.618956" + }, + { + "post_title": "GlobalWafers Japan", + "group_name": "pandora", + "discovered": "2022-03-17 10:07:14.633729" + }, + { + "post_title": "Jaffe Raitt Heuer & Weiss, P.C.", + "group_name": "pandora", + "discovered": "2022-03-17 10:07:14.648292" + }, + { + "post_title": "Milan Institute", + "group_name": "conti", + "discovered": "2022-03-17 11:05:11.644396" + }, + { + "post_title": "Empire Electronics Inc.", + "group_name": "conti", + "discovered": "2022-03-17 11:05:11.662199" + }, + { + "post_title": "IMT GROUP", + "group_name": "conti", + "discovered": "2022-03-17 11:05:11.683143" + }, + { + "post_title": "Managed Business Solutions", + "group_name": "conti", + "discovered": "2022-03-17 11:05:11.697789" + }, + { + "post_title": "AllOffice", + "group_name": "conti", + "discovered": "2022-03-17 11:05:11.712905" + }, + { + "post_title": "rosslare.com.hk", + "group_name": "lockbit2", + "discovered": "2022-03-17 16:22:06.203241" + }, + { + "post_title": "ihg.com", + "group_name": "lockbit2", + "discovered": "2022-03-17 17:24:20.979683" + }, + { + "post_title": "lawsdn.com", + "group_name": "lockbit2", + "discovered": "2022-03-17 18:23:45.501622" + }, + { + "post_title": "FitFlop Ltd.", + "group_name": "suncrypt", + "discovered": "2022-03-17 19:23:53.631302" + }, + { + "post_title": "specialinc.com", + "group_name": "lockbit2", + "discovered": "2022-03-17 20:21:52.140644" + }, + { + "post_title": "aetnabridge.com", + "group_name": "lockbit2", + "discovered": "2022-03-17 21:22:21.376433" + }, + { + "post_title": "hilltopconstruc...", + "group_name": "lockbit2", + "discovered": "2022-03-17 22:25:12.015387" + }, + { + "post_title": "finances.gouv.c...", + "group_name": "lockbit2", + "discovered": "2022-03-17 23:24:53.799922" + }, + { + "post_title": "montanarisrl.ne...", + "group_name": "lockbit2", + "discovered": "2022-03-18 00:30:44.855913" + }, + { + "post_title": "thionvillenola....", + "group_name": "lockbit2", + "discovered": "2022-03-18 01:58:21.228934" + }, + { + "post_title": "ifis.com.sg", + "group_name": "lockbit2", + "discovered": "2022-03-18 02:44:41.637003" + }, + { + "post_title": "South Africa Electricity company", + "group_name": "everest", + "discovered": "2022-03-18 03:25:21.353666" + }, + { + "post_title": "TIG", + "group_name": "conti", + "discovered": "2022-03-18 04:28:13.767026" + }, + { + "post_title": "Noble Oil | nobleoil.com", + "group_name": "alphv", + "discovered": "2022-03-18 05:24:08.250303" + }, + { + "post_title": "gezairi.com", + "group_name": "lockbit2", + "discovered": "2022-03-18 08:23:24.358886" + }, + { + "post_title": "www.centralacci...", + "group_name": "lockbit2", + "discovered": "2022-03-18 09:21:15.606604" + }, + { + "post_title": "draftex.de", + "group_name": "lockbit2", + "discovered": "2022-03-18 10:23:11.882226" + }, + { + "post_title": "genesis.ky", + "group_name": "lockbit2", + "discovered": "2022-03-18 11:23:14.901257" + }, + { + "post_title": "kbkbcpa.com/", + "group_name": "lockbit2", + "discovered": "2022-03-18 12:23:00.378607" + }, + { + "post_title": "solvi.com", + "group_name": "lockbit2", + "discovered": "2022-03-18 13:23:53.997529" + }, + { + "post_title": "megaproductos.c...", + "group_name": "lockbit2", + "discovered": "2022-03-18 14:26:51.631106" + }, + { + "post_title": "centralaccident...", + "group_name": "lockbit2", + "discovered": "2022-03-18 15:23:09.392794" + }, + { + "post_title": "kbkbcpa.com", + "group_name": "lockbit2", + "discovered": "2022-03-18 16:22:07.237518" + }, + { + "post_title": "dgordonlcswr.co...", + "group_name": "lockbit2", + "discovered": "2022-03-18 17:24:53.495867" + }, + { + "post_title": "1", + "group_name": "midas", + "discovered": "2022-03-18 18:22:58.828483" + }, + { + "post_title": "vri.maniberia.net", + "group_name": "alphv", + "discovered": "2022-03-18 19:23:44.435252" + }, + { + "post_title": "NSM Insurance Group", + "group_name": "hiveleak", + "discovered": "2022-03-18 20:25:58.861183" + }, + { + "post_title": "unapen.internal", + "group_name": "alphv", + "discovered": "2022-03-18 21:25:11.281431" + }, + { + "post_title": "NORDEX FOOD", + "group_name": "conti", + "discovered": "2022-03-18 22:23:43.269910" + }, + { + "post_title": "Talent Logic Inc.", + "group_name": "conti", + "discovered": "2022-03-18 23:24:16.124974" + }, + { + "post_title": "BDX", + "group_name": "conti", + "discovered": "2022-03-19 00:32:53.903738" + }, + { + "post_title": "bChannels Ltd.", + "group_name": "conti", + "discovered": "2022-03-19 01:48:18.941992" + }, + { + "post_title": "Normandeau Associates, Inc.", + "group_name": "conti", + "discovered": "2022-03-19 02:42:57.779084" + }, + { + "post_title": "jewelry.org.hk", + "group_name": "lockbit2", + "discovered": "2022-03-19 06:29:25.069227" + }, + { + "post_title": "denro.ca", + "group_name": "lockbit2", + "discovered": "2022-03-19 08:21:19.720288" + }, + { + "post_title": "pla-pumpen", + "group_name": "lockbit2", + "discovered": "2022-03-19 14:29:50.755566" + }, + { + "post_title": "BAUKING", + "group_name": "conti", + "discovered": "2022-03-19 21:23:16.915991" + }, + { + "post_title": "PFC USA", + "group_name": "conti", + "discovered": "2022-03-20 00:34:02.815739" + }, + { + "post_title": "MJH Life Sciences", + "group_name": "conti", + "discovered": "2022-03-20 01:50:52.638104" + }, + { + "post_title": "connectcec.com", + "group_name": "lockbit2", + "discovered": "2022-03-20 09:23:07.516295" + }, + { + "post_title": "danubius-exim.r...", + "group_name": "lockbit2", + "discovered": "2022-03-20 10:23:55.609644" + }, + { + "post_title": "Scottish Association for Mental Health", + "group_name": "ransomexx", + "discovered": "2022-03-20 11:24:11.432921" + }, + { + "post_title": "meritresources", + "group_name": "lockbit2", + "discovered": "2022-03-20 12:20:04.663100" + }, + { + "post_title": "stormous", + "group_name": "arvinclub", + "discovered": "2022-03-20 17:23:46.299448" + }, + { + "post_title": "museum-dingolfi...", + "group_name": "lockbit2", + "discovered": "2022-03-20 22:24:55.716912" + }, + { + "post_title": "bbst-clp.de", + "group_name": "lockbit2", + "discovered": "2022-03-20 23:20:12.232507" + }, + { + "post_title": "besp-oak.com", + "group_name": "lockbit2", + "discovered": "2022-03-21 00:41:47.643604" + }, + { + "post_title": "onglesdor.com", + "group_name": "lockbit2", + "discovered": "2022-03-21 01:53:13.907370" + }, + { + "post_title": "rh-europe.com", + "group_name": "lockbit2", + "discovered": "2022-03-21 02:49:15.497449" + }, + { + "post_title": "STUDIO PEREGO S...", + "group_name": "lockbit2", + "discovered": "2022-03-21 03:28:56.095525" + }, + { + "post_title": "zabel-group.de", + "group_name": "lockbit2", + "discovered": "2022-03-21 04:22:57.944680" + }, + { + "post_title": "chicagosteelgro...", + "group_name": "lockbit2", + "discovered": "2022-03-21 05:21:36.122803" + }, + { + "post_title": "tomlinsonelectr...", + "group_name": "lockbit2", + "discovered": "2022-03-21 06:22:40.166024" + }, + { + "post_title": "ismea.it", + "group_name": "lockbit2", + "discovered": "2022-03-21 07:21:19.464688" + }, + { + "post_title": "Bigmtransport", + "group_name": "midas", + "discovered": "2022-03-21 08:27:55.343366" + }, + { + "post_title": "HAVI Logistic | havilog.com | PART 1", + "group_name": "alphv", + "discovered": "2022-03-21 09:24:24.192864" + }, + { + "post_title": "Abrams & Bayliss LLP", + "group_name": "alphv", + "discovered": "2022-03-21 10:21:31.136701" + }, + { + "post_title": "BERITASATUMEDIA.COM", + "group_name": "alphv", + "discovered": "2022-03-21 12:25:43.354650" + }, + { + "post_title": "sete.co.u", + "group_name": "lockbit2", + "discovered": "2022-03-21 14:31:08.170773" + }, + { + "post_title": "OCA Global", + "group_name": "conti", + "discovered": "2022-03-21 17:25:19.329119" + }, + { + "post_title": "apec-capital.co...", + "group_name": "lockbit2", + "discovered": "2022-03-22 07:21:26.368257" + }, + { + "post_title": "Polynt Group", + "group_name": "hiveleak", + "discovered": "2022-03-22 09:19:35.686007" + }, + { + "post_title": "Company ENOS PROPERTIES", + "group_name": "stormous", + "discovered": "2022-03-22 09:55:50.144029" + }, + { + "post_title": "Core Design", + "group_name": "stormous", + "discovered": "2022-03-22 09:55:50.158959" + }, + { + "post_title": "Aurora hacked data", + "group_name": "stormous", + "discovered": "2022-03-22 09:55:50.173182" + }, + { + "post_title": "Centerline Communication Llc", + "group_name": "hiveleak", + "discovered": "2022-03-22 10:24:04.699185" + }, + { + "post_title": "Dayton T. Brown, Inc", + "group_name": "hiveleak", + "discovered": "2022-03-22 11:23:46.975576" + }, + { + "post_title": "Centurion Stone", + "group_name": "hiveleak", + "discovered": "2022-03-22 12:21:38.907350" + }, + { + "post_title": "Rotoplas", + "group_name": "hiveleak", + "discovered": "2022-03-22 13:26:02.241687" + }, + { + "post_title": "School District Of Janesville", + "group_name": "hiveleak", + "discovered": "2022-03-22 14:20:42.618495" + }, + { + "post_title": "UCSI University", + "group_name": "hiveleak", + "discovered": "2022-03-22 15:20:56.479758" + }, + { + "post_title": "Ministry For Foreign Affairs Of The Republic Of Indonesia", + "group_name": "hiveleak", + "discovered": "2022-03-22 16:28:10.493061" + }, + { + "post_title": "GomeA", + "group_name": "hiveleak", + "discovered": "2022-03-22 17:29:56.926264" + }, + { + "post_title": "Otto Dörner GmbH & Co. KG", + "group_name": "hiveleak", + "discovered": "2022-03-22 18:20:59.892951" + }, + { + "post_title": "ca.daiyafoods.c...", + "group_name": "lockbit2", + "discovered": "2022-03-22 20:22:26.199599" + }, + { + "post_title": "Anac", + "group_name": "conti", + "discovered": "2022-03-22 21:21:30.505032" + }, + { + "post_title": "edukgroup.com", + "group_name": "lockbit2", + "discovered": "2022-03-22 22:20:33.790338" + }, + { + "post_title": "Sanoh America Inc.", + "group_name": "conti", + "discovered": "2022-03-22 23:23:57.742927" + }, + { + "post_title": "WELCOME HOTELS", + "group_name": "conti", + "discovered": "2022-03-23 00:34:45.962324" + }, + { + "post_title": "Sav-Rx Prescription Services", + "group_name": "conti", + "discovered": "2022-03-23 01:51:30.288685" + }, + { + "post_title": "Satz Kontor GmbH data", + "group_name": "stormous", + "discovered": "2022-03-23 02:52:32.090360" + }, + { + "post_title": "Griggsville-Perry High School", + "group_name": "vicesociety", + "discovered": "2022-03-23 06:24:11.306452" + }, + { + "post_title": "ICEHOTEL", + "group_name": "vicesociety", + "discovered": "2022-03-23 07:23:25.839154" + }, + { + "post_title": "lazpiur.com", + "group_name": "lockbit2", + "discovered": "2022-03-23 08:31:42.465165" + }, + { + "post_title": "inibsa.com | inibsadental.com | inibsa.net 2TB FULL DATA", + "group_name": "alphv", + "discovered": "2022-03-23 09:25:53.413935" + }, + { + "post_title": "powertech", + "group_name": "cuba", + "discovered": "2022-03-23 10:33:10.543396" + }, + { + "post_title": "Maintainco Inc. | maintainco.com | starlift.com", + "group_name": "alphv", + "discovered": "2022-03-23 11:26:02.148295" + }, + { + "post_title": "KELLY,REMMEL&ZIMMERMAN first part", + "group_name": "alphv", + "discovered": "2022-03-23 12:25:10.881840" + }, + { + "post_title": "avidoc.fr", + "group_name": "lockbit2", + "discovered": "2022-03-23 13:34:48.841509" + }, + { + "post_title": "Wibag Bau Ag", + "group_name": "hiveleak", + "discovered": "2022-03-23 14:35:57.655281" + }, + { + "post_title": "Instituto De Gesto Estratégica De Sade Do Distrito Federal", + "group_name": "hiveleak", + "discovered": "2022-03-23 15:24:01.200845" + }, + { + "post_title": "crich.it", + "group_name": "lockbit2", + "discovered": "2022-03-23 16:26:16.562147" + }, + { + "post_title": "confindustriaca...", + "group_name": "lockbit2", + "discovered": "2022-03-23 17:25:01.150746" + }, + { + "post_title": "haltonhills", + "group_name": "cuba", + "discovered": "2022-03-23 18:27:09.824898" + }, + { + "post_title": "Ministry of Economy and Finance of Peru", + "group_name": "everest", + "discovered": "2022-03-23 19:35:27.657749" + }, + { + "post_title": "NetCompany", + "group_name": "midas", + "discovered": "2022-03-23 20:23:14.591080" + }, + { + "post_title": "Asphalion", + "group_name": "hiveleak", + "discovered": "2022-03-23 21:22:41.653597" + }, + { + "post_title": "Banco Caribe", + "group_name": "hiveleak", + "discovered": "2022-03-23 22:25:15.660169" + }, + { + "post_title": "credenceid.com", + "group_name": "lockbit2", + "discovered": "2022-03-23 23:20:23.269397" + }, + { + "post_title": "intouchgroup.ne...", + "group_name": "lockbit2", + "discovered": "2022-03-24 00:35:41.328374" + }, + { + "post_title": "redgwick.com", + "group_name": "lockbit2", + "discovered": "2022-03-24 02:09:40.960688" + }, + { + "post_title": "ignitarium.com", + "group_name": "lockbit2", + "discovered": "2022-03-24 02:51:16.205552" + }, + { + "post_title": "LW Group", + "group_name": "alphv", + "discovered": "2022-03-24 03:29:04.257644" + }, + { + "post_title": "Shapiro and Duncan", + "group_name": "conti", + "discovered": "2022-03-24 04:26:56.335520" + }, + { + "post_title": "Bradsby Group | bradsbygroup.com", + "group_name": "alphv", + "discovered": "2022-03-24 05:23:43.289959" + }, + { + "post_title": "Establishment of the Agency for the Environmental Protection of the Marche Region", + "group_name": "vicesociety", + "discovered": "2022-03-24 06:33:18.661008" + }, + { + "post_title": "3S Standard Sharing Software", + "group_name": "stormous", + "discovered": "2022-03-24 07:26:38.881978" + }, + { + "post_title": "KONECTA SERVICIOS ADMINISTRATIVOS Y TECNOLOGICOS S.L. SUCURSAL ARGENTINA", + "group_name": "hiveleak", + "discovered": "2022-03-24 08:31:17.185308" + }, + { + "post_title": "serilization-se...", + "group_name": "lockbit2", + "discovered": "2022-03-24 12:24:50.506758" + }, + { + "post_title": "japoauto.com", + "group_name": "lockbit2", + "discovered": "2022-03-24 13:31:51.966837" + }, + { + "post_title": "guazzini.it", + "group_name": "lockbit2", + "discovered": "2022-03-24 14:25:52.873857" + }, + { + "post_title": "stt-logistique....", + "group_name": "lockbit2", + "discovered": "2022-03-24 15:27:57.322019" + }, + { + "post_title": "onedoc.ch/fr/ce...", + "group_name": "lockbit2", + "discovered": "2022-03-24 17:28:11.957997" + }, + { + "post_title": "Passero Associates", + "group_name": "hiveleak", + "discovered": "2022-03-24 18:23:26.362141" + }, + { + "post_title": "Davis Law Group, P.C. - dlgva.com", + "group_name": "alphv", + "discovered": "2022-03-24 19:19:41.726504" + }, + { + "post_title": "buffingtonl", + "group_name": "lockbit2", + "discovered": "2022-03-24 20:21:36.979446" + }, + { + "post_title": "North View Escrow Corp", + "group_name": "alphv", + "discovered": "2022-03-24 21:19:55.695446" + }, + { + "post_title": "alaliengineerin...", + "group_name": "lockbit2", + "discovered": "2022-03-25 07:18:37.192795" + }, + { + "post_title": "standard-furnit...", + "group_name": "lockbit2", + "discovered": "2022-03-25 08:26:09.275150" + }, + { + "post_title": "Pollmann", + "group_name": "hiveleak", + "discovered": "2022-03-25 10:24:36.962553" + }, + { + "post_title": "https://century...", + "group_name": "lockbit2", + "discovered": "2022-03-25 15:25:56.784694" + }, + { + "post_title": "ctigas.com", + "group_name": "lockbit2", + "discovered": "2022-03-25 16:25:51.137339" + }, + { + "post_title": "VOYAGER DISTRIBUTING COMPANY PTY. LTD.", + "group_name": "alphv", + "discovered": "2022-03-25 17:25:50.903539" + }, + { + "post_title": "Relationships Australia", + "group_name": "alphv", + "discovered": "2022-03-25 18:27:20.726786" + }, + { + "post_title": "centuryaluminum...", + "group_name": "lockbit2", + "discovered": "2022-03-25 20:31:48.850081" + }, + { + "post_title": "Konradin Mediengruppe GmbH", + "group_name": "hiveleak", + "discovered": "2022-03-26 11:20:59.710985" + }, + { + "post_title": "microflex-servi...", + "group_name": "lockbit2", + "discovered": "2022-03-26 12:22:55.309820" + }, + { + "post_title": "aquazzura.co", + "group_name": "lockbit2", + "discovered": "2022-03-26 16:20:22.680165" + }, + { + "post_title": "aquazzura.", + "group_name": "lockbit2", + "discovered": "2022-03-26 21:25:45.619753" + }, + { + "post_title": "Hochschild Mining", + "group_name": "conti", + "discovered": "2022-03-27 03:22:37.811257" + }, + { + "post_title": "ALTERNATIVETECHS.COM", + "group_name": "clop", + "discovered": "2022-03-27 10:24:00.333077" + }, + { + "post_title": "DRC-LAW.COM", + "group_name": "clop", + "discovered": "2022-03-27 11:24:28.930360" + }, + { + "post_title": "comune.g", + "group_name": "lockbit2", + "discovered": "2022-03-27 12:25:31.692390" + }, + { + "post_title": "girlguidingl", + "group_name": "lockbit2", + "discovered": "2022-03-27 15:22:24.486652" + }, + { + "post_title": "DRIVEANDSHINE.COM", + "group_name": "clop", + "discovered": "2022-03-27 16:20:58.344616" + }, + { + "post_title": "FAIR-RITE.COM", + "group_name": "clop", + "discovered": "2022-03-27 17:22:27.888103" + }, + { + "post_title": "JDAVIDTAXLAW.COM", + "group_name": "clop", + "discovered": "2022-03-27 19:22:45.623369" + }, + { + "post_title": "https://pirsonh...", + "group_name": "lockbit2", + "discovered": "2022-03-27 20:24:10.067366" + }, + { + "post_title": "h1{", + "group_name": "blackbyte", + "discovered": "2022-03-27 21:20:36.701763" + }, + { + "post_title": "Diamond Pet Foods", + "group_name": "blackbyte", + "discovered": "2022-03-27 22:25:54.789293" + }, + { + "post_title": "pirsonholland.c...", + "group_name": "lockbit2", + "discovered": "2022-03-27 23:23:28.413476" + }, + { + "post_title": "zentrum-dreilin...", + "group_name": "lockbit2", + "discovered": "2022-03-28 00:41:37.874600" + }, + { + "post_title": "qarch.nl", + "group_name": "lockbit2", + "discovered": "2022-03-28 01:53:13.477470" + }, + { + "post_title": "Oklahoma City Indian Clinic", + "group_name": "suncrypt", + "discovered": "2022-03-28 02:53:00.282967" + }, + { + "post_title": "OAKDELL.COM", + "group_name": "clop", + "discovered": "2022-03-28 03:37:02.148549" + }, + { + "post_title": "THENOC.NET", + "group_name": "clop", + "discovered": "2022-03-28 04:25:54.693190" + }, + { + "post_title": "UNITEK Contracting Group", + "group_name": "conti", + "discovered": "2022-03-28 05:26:27.643432" + }, + { + "post_title": "DC Solutions FR&Switzerland (dcsolution.ch)", + "group_name": "alphv", + "discovered": "2022-03-28 06:30:02.132186" + }, + { + "post_title": "MIGROS", + "group_name": "stormous", + "discovered": "2022-03-28 09:22:52.111893" + }, + { + "post_title": "Jammal Trust Bank", + "group_name": "vicesociety", + "discovered": "2022-03-28 10:25:11.185781" + }, + { + "post_title": "its.ws", + "group_name": "lockbit2", + "discovered": "2022-03-28 11:24:13.081236" + }, + { + "post_title": "ZISSERFAMILYLAW.COM", + "group_name": "clop", + "discovered": "2022-03-28 12:27:07.658058" + }, + { + "post_title": "bro", + "group_name": "lockbit2", + "discovered": "2022-03-28 13:35:28.819780" + }, + { + "post_title": "progettoedilesr...", + "group_name": "lockbit2", + "discovered": "2022-03-28 14:26:16.721365" + }, + { + "post_title": "SA1SOLUTIONS.COM", + "group_name": "clop", + "discovered": "2022-03-28 15:21:43.397041" + }, + { + "post_title": "Allied Eagle Supply", + "group_name": "conti", + "discovered": "2022-03-28 17:25:09.415456" + }, + { + "post_title": "OSSEG Obra Social del Seguro", + "group_name": "vicesociety", + "discovered": "2022-03-28 18:25:33.997739" + }, + { + "post_title": "Smith Transport company", + "group_name": "stormous", + "discovered": "2022-03-28 19:23:06.378201" + }, + { + "post_title": "Neschen Coating GmbH", + "group_name": "conti", + "discovered": "2022-03-28 21:24:41.204042" + }, + { + "post_title": "ONCALL Language Services", + "group_name": "conti", + "discovered": "2022-03-28 22:36:14.113188" + }, + { + "post_title": "AB Karl Hedin", + "group_name": "conti", + "discovered": "2022-03-28 23:23:53.321238" + }, + { + "post_title": "Rudsak Inc | rudsak.com", + "group_name": "alphv", + "discovered": "2022-03-29 00:44:14.389587" + }, + { + "post_title": "Ciments Guyanais", + "group_name": "vicesociety", + "discovered": "2022-03-29 01:59:08.636064" + }, + { + "post_title": "ASPIRO", + "group_name": "vicesociety", + "discovered": "2022-03-29 02:58:01.198309" + }, + { + "post_title": "axessa.ch", + "group_name": "lockbit2", + "discovered": "2022-03-29 06:26:19.418068" + }, + { + "post_title": "GRS Group", + "group_name": "conti", + "discovered": "2022-03-29 08:22:21.001577" + }, + { + "post_title": "Biz Retek", + "group_name": "lorenz", + "discovered": "2022-03-29 13:30:03.142371" + }, + { + "post_title": "Azimut Benetti Group", + "group_name": "conti", + "discovered": "2022-03-29 16:21:11.831118" + }, + { + "post_title": "APSM Systems", + "group_name": "vicesociety", + "discovered": "2022-03-29 16:52:32.244972" + }, + { + "post_title": "18 Build your own drone", + "group_name": "leaktheanalyst", + "discovered": "2022-03-29 16:52:32.786310" + }, + { + "post_title": "19 You Must Never Forget LeakTheAnalyst", + "group_name": "leaktheanalyst", + "discovered": "2022-03-29 16:52:32.802514" + }, + { + "post_title": "Royal Brunei Airlines Sdn Bhd", + "group_name": "conti", + "discovered": "2022-03-29 17:24:33.171132" + }, + { + "post_title": "Automobil Holding AS", + "group_name": "conti", + "discovered": "2022-03-29 18:24:36.048558" + }, + { + "post_title": "Critical Content", + "group_name": "conti", + "discovered": "2022-03-29 19:22:51.798705" + }, + { + "post_title": "ITECOR International SA", + "group_name": "conti", + "discovered": "2022-03-29 20:23:45.834152" + }, + { + "post_title": "Stago", + "group_name": "ransomexx", + "discovered": "2022-03-29 21:22:18.316495" + }, + { + "post_title": "PHC", + "group_name": "hiveleak", + "discovered": "2022-03-29 22:22:35.690715" + }, + { + "post_title": "rebuildingt", + "group_name": "lockbit2", + "discovered": "2022-03-30 00:32:31.831781" + }, + { + "post_title": "BANQUE CENTRALE DE TUNISIE", + "group_name": "conti", + "discovered": "2022-03-30 01:49:22.725118" + }, + { + "post_title": "trant-co-uk", + "group_name": "cuba", + "discovered": "2022-03-30 08:23:14.427407" + }, + { + "post_title": "bcad.org", + "group_name": "lockbit2", + "discovered": "2022-03-30 09:25:48.194316" + }, + { + "post_title": "bcintlgroup-com", + "group_name": "cuba", + "discovered": "2022-03-30 10:20:03.717543" + }, + { + "post_title": "botswana", + "group_name": "lockbit2", + "discovered": "2022-03-30 11:23:19.707789" + }, + { + "post_title": "burlingtonsafet...", + "group_name": "lockbit2", + "discovered": "2022-03-30 13:28:41.864098" + }, + { + "post_title": "papierswhitebi", + "group_name": "lockbit2", + "discovered": "2022-03-30 15:20:09.901082" + }, + { + "post_title": "GEBE", + "group_name": "blackbyte", + "discovered": "2022-03-30 15:54:29.211792" + }, + { + "post_title": "Credit Risk Management Canada", + "group_name": "blackbyte", + "discovered": "2022-03-30 15:54:29.247909" + }, + { + "post_title": "MZ Architects", + "group_name": "blackbyte", + "discovered": "2022-03-30 15:54:29.281327" + }, + { + "post_title": "Autumn Transport", + "group_name": "blackbyte", + "discovered": "2022-03-30 16:28:51.426702" + }, + { + "post_title": "London College of Beauty Therapy", + "group_name": "blackbyte", + "discovered": "2022-03-30 17:23:08.336967" + }, + { + "post_title": "United Cumberland", + "group_name": "pandora", + "discovered": "2022-03-30 18:27:19.661153" + }, + { + "post_title": "Hearst", + "group_name": "pandora", + "discovered": "2022-03-30 19:26:24.820390" + }, + { + "post_title": "jlmsolicitors.c...", + "group_name": "lockbit2", + "discovered": "2022-03-30 20:30:00.109610" + }, + { + "post_title": "Scott Manufacturing, LLC", + "group_name": "conti", + "discovered": "2022-03-30 21:23:02.068614" + }, + { + "post_title": "grupodeincendio...", + "group_name": "lockbit2", + "discovered": "2022-03-30 22:28:54.612409" + }, + { + "post_title": "avcimmedia.com", + "group_name": "lockbit2", + "discovered": "2022-03-30 23:22:15.112843" + }, + { + "post_title": "omalleytunstall...", + "group_name": "lockbit2", + "discovered": "2022-03-31 00:34:45.512001" + }, + { + "post_title": "Yip in Tsoi", + "group_name": "snatch", + "discovered": "2022-03-31 02:00:11.202025" + }, + { + "post_title": "infotech ua", + "group_name": "stormous", + "discovered": "2022-03-31 02:49:46.376295" + }, + { + "post_title": "Zeeland Farm Services, Inc.", + "group_name": "conti", + "discovered": "2022-03-31 09:27:24.397228" + }, + { + "post_title": "bafokengholding...", + "group_name": "lockbit2", + "discovered": "2022-03-31 11:23:27.728021" + }, + { + "post_title": "yachtcharterfle...", + "group_name": "lockbit2", + "discovered": "2022-03-31 12:24:12.565652" + }, + { + "post_title": "keypoint.com", + "group_name": "lockbit2", + "discovered": "2022-03-31 13:33:52.881753" + }, + { + "post_title": "CASTGROUP.COM.BR", + "group_name": "alphv", + "discovered": "2022-03-31 14:31:12.036768" + }, + { + "post_title": "studiobrazzale....", + "group_name": "lockbit2", + "discovered": "2022-03-31 16:25:54.636205" + }, + { + "post_title": "Parker Appliance Company", + "group_name": "conti", + "discovered": "2022-03-31 21:25:36.398481" + }, + { + "post_title": "Rettenmeier Holding AG", + "group_name": "conti", + "discovered": "2022-03-31 22:22:03.948005" + }, + { + "post_title": "Prima Sole Components Spa", + "group_name": "conti", + "discovered": "2022-03-31 23:23:32.083402" + }, + { + "post_title": "kssente", + "group_name": "lockbit2", + "discovered": "2022-04-01 00:34:33.532529" + }, + { + "post_title": "ANTEL", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Banco do Brasil", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "BEXIMCO", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "BMW CHILE", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "CARACOL TV COLOMBIA", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "caribetours", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Cellulant Corporation", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "CORT", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "CR ASIA", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "eGOV", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Equicom SAVINGS BANK", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "ICONIC", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Nestle", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Pakistan Human Rights", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Salvadoran Ministry of Foreign Affairs", + "group_name": "kelvinsecurity", + "discovered": "2022-04-01 01:01:00.000000" + }, + { + "post_title": "Lowell", + "group_name": "conti", + "discovered": "2022-04-01 01:55:12.729322" + }, + { + "post_title": "SSW Consulting", + "group_name": "alphv", + "discovered": "2022-04-01 02:59:15.891238" + }, + { + "post_title": "Dober", + "group_name": "alphv", + "discovered": "2022-04-01 03:43:40.838762" + }, + { + "post_title": "https://liceu.b...", + "group_name": "lockbit2", + "discovered": "2022-04-01 13:34:19.851611" + }, + { + "post_title": "I-SEC International Security", + "group_name": "conti", + "discovered": "2022-04-01 14:26:26.232513" + }, + { + "post_title": "Midea Carrier", + "group_name": "conti", + "discovered": "2022-04-01 15:23:04.489949" + }, + { + "post_title": "GIBSON HomeWares", + "group_name": "conti", + "discovered": "2022-04-01 21:22:13.501240" + }, + { + "post_title": "MANUFAST", + "group_name": "conti", + "discovered": "2022-04-02 00:31:39.568369" + }, + { + "post_title": "liceu.barcelona", + "group_name": "lockbit2", + "discovered": "2022-04-02 01:48:25.533555" + }, + { + "post_title": "FlipChip", + "group_name": "conti", + "discovered": "2022-04-02 02:48:01.739782" + }, + { + "post_title": "ledesma.com.ar", + "group_name": "lockbit2", + "discovered": "2022-04-02 08:18:46.408596" + }, + { + "post_title": "Ackerman Plumbing", + "group_name": "conti", + "discovered": "2022-04-02 14:21:32.958833" + }, + { + "post_title": "New Company 04.2022", + "group_name": "midas", + "discovered": "2022-04-03 07:21:32.385358" + }, + { + "post_title": "bazzisrl.it", + "group_name": "lockbit2", + "discovered": "2022-04-03 08:22:13.329255" + }, + { + "post_title": "fec-corp.com", + "group_name": "lockbit2", + "discovered": "2022-04-03 09:23:50.204232" + }, + { + "post_title": "eksltd.com", + "group_name": "lockbit2", + "discovered": "2022-04-03 10:22:13.087856" + }, + { + "post_title": "greenexperts.co...", + "group_name": "lockbit2", + "discovered": "2022-04-03 11:19:14.757486" + }, + { + "post_title": "centralban", + "group_name": "lockbit2", + "discovered": "2022-04-03 12:22:37.664351" + }, + { + "post_title": "oldenburgdeurbe...", + "group_name": "lockbit2", + "discovered": "2022-04-03 13:24:04.116314" + }, + { + "post_title": "nowiny", + "group_name": "lockbit2", + "discovered": "2022-04-03 14:22:36.372255" + }, + { + "post_title": "remar.com.ec", + "group_name": "lockbit2", + "discovered": "2022-04-03 15:21:30.268929" + }, + { + "post_title": "wiegaarden.dk", + "group_name": "lockbit2", + "discovered": "2022-04-03 16:22:17.707478" + }, + { + "post_title": "Frey and Winkler GmbH", + "group_name": "conti", + "discovered": "2022-04-03 22:22:07.683633" + }, + { + "post_title": "SLH", + "group_name": "conti", + "discovered": "2022-04-03 23:20:35.393907" + }, + { + "post_title": "TRUSTFORD", + "group_name": "conti", + "discovered": "2022-04-04 00:30:40.924443" + }, + { + "post_title": "n", + "group_name": "lockbit2", + "discovered": "2022-04-04 08:25:03.933563" + }, + { + "post_title": "a-r-s.com", + "group_name": "lockbit2", + "discovered": "2022-04-04 12:21:53.525309" + }, + { + "post_title": "ascotlloyd.co.u...", + "group_name": "lockbit2", + "discovered": "2022-04-04 13:27:11.154085" + }, + { + "post_title": "gva-atencia.es", + "group_name": "lockbit2", + "discovered": "2022-04-04 14:22:48.209255" + }, + { + "post_title": "noll-law.com", + "group_name": "lockbit2", + "discovered": "2022-04-04 15:24:15.910551" + }, + { + "post_title": "sep2.com", + "group_name": "lockbit2", + "discovered": "2022-04-04 16:23:27.579063" + }, + { + "post_title": "westminster.de", + "group_name": "lockbit2", + "discovered": "2022-04-04 17:24:28.751325" + }, + { + "post_title": "A message to France", + "group_name": "stormous", + "discovered": "2022-04-04 19:23:54.240466" + }, + { + "post_title": "Woningcorporatie ZAYAZ", + "group_name": "conti", + "discovered": "2022-04-04 21:21:29.513402" + }, + { + "post_title": "ferrolabella", + "group_name": "lockbit2", + "discovered": "2022-04-05 06:21:16.167725" + }, + { + "post_title": "scoular.com", + "group_name": "lockbit2", + "discovered": "2022-04-05 08:25:30.464080" + }, + { + "post_title": "panasonic", + "group_name": "conti", + "discovered": "2022-04-05 10:23:02.127520" + }, + { + "post_title": "Sonae", + "group_name": "ransomexx", + "discovered": "2022-04-05 16:22:09.035583" + }, + { + "post_title": "gordoncounty.or...", + "group_name": "lockbit2", + "discovered": "2022-04-06 01:49:03.107301" + }, + { + "post_title": "allcountysurvey...", + "group_name": "lockbit2", + "discovered": "2022-04-06 02:45:32.701512" + }, + { + "post_title": "http://www.toot...", + "group_name": "lockbit2", + "discovered": "2022-04-06 03:32:01.183002" + }, + { + "post_title": "vgoc.ca", + "group_name": "lockbit2", + "discovered": "2022-04-06 04:20:06.195797" + }, + { + "post_title": "www.rnrinc.com", + "group_name": "lockbit2", + "discovered": "2022-04-06 05:22:44.391327" + }, + { + "post_title": "www.wania.at", + "group_name": "lockbit2", + "discovered": "2022-04-06 06:23:22.344080" + }, + { + "post_title": "rnrinc.com", + "group_name": "lockbit2", + "discovered": "2022-04-06 10:39:37.815331" + }, + { + "post_title": "toothbuds.com", + "group_name": "lockbit2", + "discovered": "2022-04-06 11:18:48.551216" + }, + { + "post_title": "wania.at", + "group_name": "lockbit2", + "discovered": "2022-04-06 12:21:45.840948" + }, + { + "post_title": "Keicorp(ICPM)", + "group_name": "lorenz", + "discovered": "2022-04-06 15:22:03.938832" + }, + { + "post_title": "International Centre Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-04-06 20:21:14.493553" + }, + { + "post_title": "United States of America GOV", + "group_name": "everest", + "discovered": "2022-04-06 21:24:06.071518" + }, + { + "post_title": "Barwick Bathroom Distribution LLP", + "group_name": "conti", + "discovered": "2022-04-06 22:19:26.501272" + }, + { + "post_title": "FCCH", + "group_name": "hiveleak", + "discovered": "2022-04-07 05:21:10.715198" + }, + { + "post_title": "get-entkernung....", + "group_name": "lockbit2", + "discovered": "2022-04-07 12:24:46.369804" + }, + { + "post_title": "feuerschutzbock...", + "group_name": "lockbit2", + "discovered": "2022-04-07 13:33:17.416338" + }, + { + "post_title": "unholz.ch", + "group_name": "lockbit2", + "discovered": "2022-04-07 14:23:33.703792" + }, + { + "post_title": "Jiangsu Kaili Carpet Co., Ltd.", + "group_name": "midas", + "discovered": "2022-04-07 15:21:32.210312" + }, + { + "post_title": "SUPREME SERVICES", + "group_name": "midas", + "discovered": "2022-04-07 16:20:02.753148" + }, + { + "post_title": "tnt", + "group_name": "lockbit2", + "discovered": "2022-04-07 18:24:50.970680" + }, + { + "post_title": "metagenics", + "group_name": "cuba", + "discovered": "2022-04-08 11:20:47.534325" + }, + { + "post_title": "genieroute.be", + "group_name": "lockbit2", + "discovered": "2022-04-08 12:24:06.311960" + }, + { + "post_title": "rosagroup.com", + "group_name": "lockbit2", + "discovered": "2022-04-08 13:31:46.127295" + }, + { + "post_title": "ardeche.fr", + "group_name": "lockbit2", + "discovered": "2022-04-08 16:18:38.927427" + }, + { + "post_title": "Wocklum Group", + "group_name": "conti", + "discovered": "2022-04-08 21:22:35.107313" + }, + { + "post_title": "ch1", + "group_name": "lockbit2", + "discovered": "2022-04-09 04:23:05.945293" + }, + { + "post_title": "anasia.co", + "group_name": "lockbit2", + "discovered": "2022-04-09 12:21:20.123351" + }, + { + "post_title": "clinique.cob-os...", + "group_name": "lockbit2", + "discovered": "2022-04-09 23:18:49.869141" + }, + { + "post_title": "https://groupem...", + "group_name": "lockbit2", + "discovered": "2022-04-10 00:31:37.728148" + }, + { + "post_title": "sadeco.fr", + "group_name": "lockbit2", + "discovered": "2022-04-10 01:49:53.767198" + }, + { + "post_title": "l", + "group_name": "lockbit2", + "discovered": "2022-04-10 02:50:04.343291" + }, + { + "post_title": "spirit-ord.com", + "group_name": "lockbit2", + "discovered": "2022-04-10 03:31:07.041030" + }, + { + "post_title": "www.farmaciasta...", + "group_name": "lockbit2", + "discovered": "2022-04-10 04:21:35.518761" + }, + { + "post_title": "Snap-on Incorporated", + "group_name": "conti", + "discovered": "2022-04-10 12:21:49.787795" + }, + { + "post_title": "lerros.com", + "group_name": "lockbit2", + "discovered": "2022-04-10 13:24:42.826961" + }, + { + "post_title": "farmaciastatuto...", + "group_name": "lockbit2", + "discovered": "2022-04-10 15:22:09.649822" + }, + { + "post_title": "groupemeunier.c...", + "group_name": "lockbit2", + "discovered": "2022-04-10 16:25:17.842408" + }, + { + "post_title": "lo", + "group_name": "lockbit2", + "discovered": "2022-04-10 17:26:46.920449" + }, + { + "post_title": "AFJCONSULTING.NET", + "group_name": "clop", + "discovered": "2022-04-10 21:22:59.124426" + }, + { + "post_title": "ORBITELECTRIC.COM", + "group_name": "clop", + "discovered": "2022-04-10 22:22:33.601047" + }, + { + "post_title": "Eminox", + "group_name": "conti", + "discovered": "2022-04-11 01:48:50.021676" + }, + { + "post_title": "MARTINELLI GINETTO", + "group_name": "conti", + "discovered": "2022-04-11 02:53:07.798481" + }, + { + "post_title": "ruthtaubman.com", + "group_name": "lockbit2", + "discovered": "2022-04-11 08:25:52.986159" + }, + { + "post_title": "tokyo-plant.co....", + "group_name": "lockbit2", + "discovered": "2022-04-11 09:22:33.394406" + }, + { + "post_title": "CAE Services", + "group_name": "conti", + "discovered": "2022-04-11 12:24:46.195438" + }, + { + "post_title": "azcomputerlabs....", + "group_name": "lockbit2", + "discovered": "2022-04-11 15:25:41.687368" + }, + { + "post_title": "Advizrs", + "group_name": "lorenz", + "discovered": "2022-04-11 16:26:39.190697" + }, + { + "post_title": "Wolfe Industrial", + "group_name": "quantum", + "discovered": "2022-04-11 20:25:23.633896" + }, + { + "post_title": "Newlat Food SPA", + "group_name": "conti", + "discovered": "2022-04-11 21:26:44.096135" + }, + { + "post_title": "lee-associate", + "group_name": "lockbit2", + "discovered": "2022-04-11 22:25:19.370671" + }, + { + "post_title": "Broadleaf", + "group_name": "quantum", + "discovered": "2022-04-11 23:22:17.475617" + }, + { + "post_title": "wallyedgar.com | Wally Edgar Chevrolet", + "group_name": "alphv", + "discovered": "2022-04-12 04:18:35.489896" + }, + { + "post_title": "tgs.com.ar", + "group_name": "alphv", + "discovered": "2022-04-12 05:18:01.834991" + }, + { + "post_title": "Florida International University (www.fiu.edu)", + "group_name": "alphv", + "discovered": "2022-04-12 06:17:54.429129" + }, + { + "post_title": "DC ADVISORY", + "group_name": "alphv", + "discovered": "2022-04-12 07:20:46.001771" + }, + { + "post_title": "North Carolina A&T State University (www.ncat.edu)", + "group_name": "alphv", + "discovered": "2022-04-12 08:21:46.128616" + }, + { + "post_title": "tavistock", + "group_name": "cuba", + "discovered": "2022-04-12 09:24:12.472267" + }, + { + "post_title": "DeeZee", + "group_name": "lorenz", + "discovered": "2022-04-12 11:18:27.826779" + }, + { + "post_title": "Service Employees' International Union", + "group_name": "quantum", + "discovered": "2022-04-12 12:16:37.584774" + }, + { + "post_title": "Hi Tech HoneyComb", + "group_name": "quantum", + "discovered": "2022-04-12 12:16:37.602053" + }, + { + "post_title": "JetStar", + "group_name": "quantum", + "discovered": "2022-04-12 12:16:37.633545" + }, + { + "post_title": "Success Neeti", + "group_name": "stormous", + "discovered": "2022-04-12 12:16:38.538135" + }, + { + "post_title": "Delhi Heights School", + "group_name": "stormous", + "discovered": "2022-04-12 12:16:38.554133" + }, + { + "post_title": "ALAM LMS", + "group_name": "stormous", + "discovered": "2022-04-12 12:16:38.570051" + }, + { + "post_title": "National Rehabilitation Training Center", + "group_name": "stormous", + "discovered": "2022-04-12 12:16:38.586532" + }, + { + "post_title": "Epic Games Data Breach", + "group_name": "stormous", + "discovered": "2022-04-12 12:16:38.621280" + }, + { + "post_title": "breadtalk.com", + "group_name": "lockbit2", + "discovered": "2022-04-12 13:28:38.808213" + }, + { + "post_title": "inglotcosmetics...", + "group_name": "lockbit2", + "discovered": "2022-04-12 14:19:15.730861" + }, + { + "post_title": "bet9ja.com | goldbet.it", + "group_name": "alphv", + "discovered": "2022-04-12 20:22:15.669713" + }, + { + "post_title": "TIC International Corporation", + "group_name": "conti", + "discovered": "2022-04-12 21:21:52.482286" + }, + { + "post_title": "Supplies Company Data Leak in British Columbia, Canada", + "group_name": "everest", + "discovered": "2022-04-12 23:16:08.910665" + }, + { + "post_title": "northstari", + "group_name": "lockbit2", + "discovered": "2022-04-13 08:18:19.940604" + }, + { + "post_title": "get-greenenergy...", + "group_name": "lockbit2", + "discovered": "2022-04-13 11:23:00.404171" + }, + { + "post_title": "Simply Placed", + "group_name": "lorenz", + "discovered": "2022-04-13 17:30:17.573559" + }, + { + "post_title": "Standard Building Supplies Ltd", + "group_name": "everest", + "discovered": "2022-04-13 21:20:39.758299" + }, + { + "post_title": "applya.com", + "group_name": "lockbit2", + "discovered": "2022-04-13 22:24:47.822365" + }, + { + "post_title": "heartlandhealth...", + "group_name": "lockbit2", + "discovered": "2022-04-13 23:22:35.398073" + }, + { + "post_title": "tpdrug.com", + "group_name": "lockbit2", + "discovered": "2022-04-14 00:22:47.389398" + }, + { + "post_title": "www.cassinobuil...", + "group_name": "lockbit2", + "discovered": "2022-04-14 01:49:52.848458" + }, + { + "post_title": "Atlas Copco", + "group_name": "suncrypt", + "discovered": "2022-04-14 02:50:35.913255" + }, + { + "post_title": "www.mpm.fr", + "group_name": "lockbit2", + "discovered": "2022-04-14 03:39:38.670429" + }, + { + "post_title": "www.verifiedlab...", + "group_name": "lockbit2", + "discovered": "2022-04-14 04:19:12.613375" + }, + { + "post_title": "Elevate Services", + "group_name": "conti", + "discovered": "2022-04-14 07:17:42.500192" + }, + { + "post_title": "polyplastics.co...", + "group_name": "lockbit2", + "discovered": "2022-04-14 08:20:50.038623" + }, + { + "post_title": "cyberapex.com", + "group_name": "lockbit2", + "discovered": "2022-04-14 11:25:33.729086" + }, + { + "post_title": "kpcg.com.hk", + "group_name": "lockbit2", + "discovered": "2022-04-14 12:26:35.646885" + }, + { + "post_title": "Gemeente Buren", + "group_name": "suncrypt", + "discovered": "2022-04-14 13:28:50.422429" + }, + { + "post_title": "radmangroup.com", + "group_name": "lockbit2", + "discovered": "2022-04-14 14:26:29.102333" + }, + { + "post_title": "soharportandfre...", + "group_name": "lockbit2", + "discovered": "2022-04-14 15:19:56.492659" + }, + { + "post_title": "Musco Sports Lighting", + "group_name": "lorenz", + "discovered": "2022-04-14 16:22:20.561291" + }, + { + "post_title": "mpm.fr", + "group_name": "lockbit2", + "discovered": "2022-04-14 19:20:29.560986" + }, + { + "post_title": "cassinobuilding...", + "group_name": "lockbit2", + "discovered": "2022-04-14 20:23:04.852001" + }, + { + "post_title": "verifiedlabel.c...", + "group_name": "lockbit2", + "discovered": "2022-04-14 21:20:22.203483" + }, + { + "post_title": "Big Horn Plastering of Colorado, Inc.", + "group_name": "conti", + "discovered": "2022-04-14 22:23:50.976155" + }, + { + "post_title": "Basra Multipurposr Terminal", + "group_name": "midas", + "discovered": "2022-04-14 23:25:05.809224" + }, + { + "post_title": "eNoah it solutions", + "group_name": "alphv", + "discovered": "2022-04-15 00:26:29.327842" + }, + { + "post_title": "museum-dingo", + "group_name": "lockbit2", + "discovered": "2022-04-15 03:45:58.248610" + }, + { + "post_title": "CJ Pony Parts", + "group_name": "conti", + "discovered": "2022-04-15 08:21:10.029586" + }, + { + "post_title": "enclosuresoluti...", + "group_name": "lockbit2", + "discovered": "2022-04-15 11:29:25.017116" + }, + { + "post_title": "http://inland-e...", + "group_name": "lockbit2", + "discovered": "2022-04-15 12:21:53.050184" + }, + { + "post_title": "Importador Ferretero Trujillo Cia. Ltda", + "group_name": "lv", + "discovered": "2022-04-15 14:21:53.375024" + }, + { + "post_title": "inland-engineer...", + "group_name": "lockbit2", + "discovered": "2022-04-15 17:32:37.569603" + }, + { + "post_title": "[IMPORTANT ANNOUNCEMENT!]", + "group_name": "conti", + "discovered": "2022-04-15 18:21:04.329824" + }, + { + "post_title": "DJS associate", + "group_name": "suncrypt", + "discovered": "2022-04-16 02:50:25.259799" + }, + { + "post_title": "Standard Building Supplies Ltd.", + "group_name": "everest", + "discovered": "2022-04-16 18:24:44.771967" + }, + { + "post_title": "Tucker Door & Trim", + "group_name": "conti", + "discovered": "2022-04-17 04:22:09.967965" + }, + { + "post_title": "Ministerio de Hacienda - República de Costa Rica", + "group_name": "conti", + "discovered": "2022-04-17 10:21:40.531689" + }, + { + "post_title": "NuLife Med", + "group_name": "vicesociety", + "discovered": "2022-04-17 21:21:42.195535" + }, + { + "post_title": "ville-sa", + "group_name": "lockbit2", + "discovered": "2022-04-18 05:23:08.543509" + }, + { + "post_title": "kainz-haustechn.", + "group_name": "lockbit2", + "discovered": "2022-04-18 07:27:19.883452" + }, + { + "post_title": "gruppoathesis.i...", + "group_name": "lockbit2", + "discovered": "2022-04-18 09:23:11.750665" + }, + { + "post_title": "MILLS GROUP", + "group_name": "hiveleak", + "discovered": "2022-04-18 11:27:31.278269" + }, + { + "post_title": "rockportmusic", + "group_name": "lockbit2", + "discovered": "2022-04-18 12:25:46.232417" + }, + { + "post_title": "Nordex SE", + "group_name": "conti", + "discovered": "2022-04-18 15:21:37.396282" + }, + { + "post_title": "Centris", + "group_name": "conti", + "discovered": "2022-04-18 17:32:47.033067" + }, + { + "post_title": "Barakat Travel and Private Jet was Hacked", + "group_name": "alphv", + "discovered": "2022-04-18 18:20:36.279336" + }, + { + "post_title": "ssi-steel.com", + "group_name": "lockbit2", + "discovered": "2022-04-19 05:31:50.832685" + }, + { + "post_title": "tnmed.org", + "group_name": "lockbit2", + "discovered": "2022-04-19 06:27:06.938358" + }, + { + "post_title": "daumar.com", + "group_name": "lockbit2", + "discovered": "2022-04-19 09:24:25.975544" + }, + { + "post_title": "groupe-corbat.c...", + "group_name": "lockbit2", + "discovered": "2022-04-19 10:20:19.057579" + }, + { + "post_title": "jannone.it", + "group_name": "lockbit2", + "discovered": "2022-04-19 11:21:07.057185" + }, + { + "post_title": "keisei-const.jp", + "group_name": "lockbit2", + "discovered": "2022-04-19 12:18:23.502176" + }, + { + "post_title": "procab.se", + "group_name": "lockbit2", + "discovered": "2022-04-19 13:37:27.521126" + }, + { + "post_title": "reitzner.de", + "group_name": "lockbit2", + "discovered": "2022-04-19 14:24:13.398760" + }, + { + "post_title": "For Costa Rica", + "group_name": "conti", + "discovered": "2022-04-19 15:25:31.551630" + }, + { + "post_title": "compagniedephal...", + "group_name": "lockbit2", + "discovered": "2022-04-19 16:25:12.342494" + }, + { + "post_title": "secova.com | Secova Inc", + "group_name": "alphv", + "discovered": "2022-04-19 17:36:49.801332" + }, + { + "post_title": "Del Sol", + "group_name": "conti", + "discovered": "2022-04-19 21:26:33.815195" + }, + { + "post_title": "Instituto Meteorológico Nacional", + "group_name": "conti", + "discovered": "2022-04-19 22:34:28.582558" + }, + { + "post_title": "Instituto Meteorológico Nacional and racsa.go.cr", + "group_name": "conti", + "discovered": "2022-04-19 23:22:41.433098" + }, + { + "post_title": "ingesw.com", + "group_name": "lockbit2", + "discovered": "2022-04-20 03:52:34.796653" + }, + { + "post_title": "Camden City School District", + "group_name": "quantum", + "discovered": "2022-04-20 04:36:39.513430" + }, + { + "post_title": "MAGNAR-EIKELAND...", + "group_name": "lockbit2", + "discovered": "2022-04-20 10:29:39.976653" + }, + { + "post_title": "lekise.com", + "group_name": "lockbit2", + "discovered": "2022-04-20 11:28:56.148405" + }, + { + "post_title": "Trace Midstream", + "group_name": "alphv", + "discovered": "2022-04-20 13:42:35.504900" + }, + { + "post_title": "AM International", + "group_name": "arvinclub", + "discovered": "2022-04-20 16:20:06.852320" + }, + { + "post_title": "DavislandscapeL...", + "group_name": "lockbit2", + "discovered": "2022-04-20 17:31:15.131593" + }, + { + "post_title": "baugeschaeft-bo...", + "group_name": "lockbit2", + "discovered": "2022-04-20 18:23:46.941087" + }, + { + "post_title": "Reckitt Benckiser", + "group_name": "everest", + "discovered": "2022-04-20 19:26:30.213679" + }, + { + "post_title": "Attica Group", + "group_name": "conti", + "discovered": "2022-04-20 21:40:49.941060" + }, + { + "post_title": "Visotec Group www.visotec.com", + "group_name": "revil", + "discovered": "2022-04-20 22:33:44.555617" + }, + { + "post_title": "Simonson-Lumber Inc. First batch of Data.", + "group_name": "ragnarlocker", + "discovered": "2022-04-20 23:37:23.317728" + }, + { + "post_title": "www.oil-india.com", + "group_name": "revil", + "discovered": "2022-04-21 00:40:11.739219" + }, + { + "post_title": "CYMZ", + "group_name": "revil", + "discovered": "2022-04-21 02:00:22.470335" + }, + { + "post_title": "Asfaltproductienijmegen", + "group_name": "revil", + "discovered": "2022-04-21 03:04:48.602329" + }, + { + "post_title": "Major indian cryptocurrency Data Leak", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 04:03:41.269894" + }, + { + "post_title": "US Cellular data leak Dec-2021", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 04:42:07.615808" + }, + { + "post_title": "breadt", + "group_name": "lockbit2", + "discovered": "2022-04-21 05:46:32.681681" + }, + { + "post_title": "T Mobile Data Leak Dec-2021", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 06:30:29.601703" + }, + { + "post_title": "UKG Kronos Data Leak", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 07:34:30.532966" + }, + { + "post_title": "Volvo data breach", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 08:29:38.902532" + }, + { + "post_title": "Panasonic data breach", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 09:29:47.239248" + }, + { + "post_title": "asp.messina.it", + "group_name": "lockbit2", + "discovered": "2022-04-21 10:27:46.397678" + }, + { + "post_title": "DDC Data Leak", + "group_name": "darkleakmarket", + "discovered": "2022-04-21 11:28:21.873231" + }, + { + "post_title": "Maristes Hermitage", + "group_name": "vicesociety", + "discovered": "2022-04-21 12:37:10.554049" + }, + { + "post_title": "tvothai.com", + "group_name": "lockbit2", + "discovered": "2022-04-21 14:33:31.761239" + }, + { + "post_title": "Al Bijjar", + "group_name": "arvinclub", + "discovered": "2022-04-21 17:36:07.558909" + }, + { + "post_title": "Morrie's Auto Group", + "group_name": "lorenz", + "discovered": "2022-04-21 18:28:07.897490" + }, + { + "post_title": "Small Industries Development", + "group_name": "vicesociety", + "discovered": "2022-04-21 21:32:22.019865" + }, + { + "post_title": "incegd.com", + "group_name": "lockbit2", + "discovered": "2022-04-22 00:48:56.683802" + }, + { + "post_title": "beckerlaw.com", + "group_name": "lockbit2", + "discovered": "2022-04-22 03:14:34.740166" + }, + { + "post_title": "huntongroup.com", + "group_name": "lockbit2", + "discovered": "2022-04-22 03:57:50.257741" + }, + { + "post_title": "wilshire.com", + "group_name": "lockbit2", + "discovered": "2022-04-22 04:41:46.146260" + }, + { + "post_title": "ekz.de", + "group_name": "lockbit2", + "discovered": "2022-04-22 07:28:37.403154" + }, + { + "post_title": "produitsneptune...", + "group_name": "lockbit2", + "discovered": "2022-04-22 09:31:27.637946" + }, + { + "post_title": "lifestylesoluti...", + "group_name": "lockbit2", + "discovered": "2022-04-22 10:29:37.552008" + }, + { + "post_title": "fazenda.rj.gov....", + "group_name": "lockbit2", + "discovered": "2022-04-22 12:27:23.704748" + }, + { + "post_title": "PT Pertamina Gas", + "group_name": "kelvinsecurity", + "discovered": "2022-04-22 13:22:14.831758" + }, + { + "post_title": "simplilearn.net", + "group_name": "lockbit2", + "discovered": "2022-04-22 13:38:20.645656" + }, + { + "post_title": "metrobrokers", + "group_name": "cuba", + "discovered": "2022-04-22 14:38:36.801503" + }, + { + "post_title": "prophoenix", + "group_name": "cuba", + "discovered": "2022-04-22 15:27:00.992003" + }, + { + "post_title": "Calvetti Ferguson", + "group_name": "alphv", + "discovered": "2022-04-22 20:25:02.844859" + }, + { + "post_title": "Stratford University", + "group_name": "revil", + "discovered": "2022-04-22 21:26:51.696558" + }, + { + "post_title": "Centre Hospitalier de Castelluccio", + "group_name": "vicesociety", + "discovered": "2022-04-22 22:27:22.879251" + }, + { + "post_title": "Mossbourne Federation", + "group_name": "vicesociety", + "discovered": "2022-04-23 06:29:56.717678" + }, + { + "post_title": "Jasec", + "group_name": "conti", + "discovered": "2022-04-23 09:27:21.525909" + }, + { + "post_title": "https://valoore...", + "group_name": "lockbit2", + "discovered": "2022-04-23 13:32:57.162483" + }, + { + "post_title": "www.tigergroup....", + "group_name": "lockbit2", + "discovered": "2022-04-23 14:26:29.050697" + }, + { + "post_title": "ccfsinc.com", + "group_name": "lockbit2", + "discovered": "2022-04-23 17:28:40.803075" + }, + { + "post_title": "greenex", + "group_name": "lockbit2", + "discovered": "2022-04-23 18:35:40.103422" + }, + { + "post_title": "tigergroup.ae", + "group_name": "lockbit2", + "discovered": "2022-04-23 21:33:19.039152" + }, + { + "post_title": "valoores.com", + "group_name": "lockbit2", + "discovered": "2022-04-23 22:34:05.142817" + }, + { + "post_title": "Co-opbank Pertama", + "group_name": "suncrypt", + "discovered": "2022-04-24 00:38:40.494959" + }, + { + "post_title": "innotecgroup.com", + "group_name": "alphv", + "discovered": "2022-04-24 06:27:33.153064" + }, + { + "post_title": "gp", + "group_name": "lockbit2", + "discovered": "2022-04-24 19:38:01.966693" + }, + { + "post_title": "kdaponte.com", + "group_name": "lockbit2", + "discovered": "2022-04-24 21:39:18.083170" + }, + { + "post_title": "schriesheim.de", + "group_name": "lockbit2", + "discovered": "2022-04-25 06:32:56.154201" + }, + { + "post_title": "cronos.com.ar", + "group_name": "lockbit2", + "discovered": "2022-04-25 11:28:53.315456" + }, + { + "post_title": "emucor.es", + "group_name": "lockbit2", + "discovered": "2022-04-25 12:30:05.375634" + }, + { + "post_title": "huesser.ch", + "group_name": "lockbit2", + "discovered": "2022-04-25 13:41:01.655828" + }, + { + "post_title": "multimmobiliare...", + "group_name": "lockbit2", + "discovered": "2022-04-25 14:34:21.755977" + }, + { + "post_title": "Elgin_Ca", + "group_name": "conti", + "discovered": "2022-04-25 15:25:07.032405" + }, + { + "post_title": "NATION Costa Rica", + "group_name": "kelvinsecurity", + "discovered": "2022-04-25 18:29:28.524909" + }, + { + "post_title": "Waiting for next leak", + "group_name": "kelvinsecurity", + "discovered": "2022-04-25 20:31:21.984234" + }, + { + "post_title": "Coca-Cola", + "group_name": "stormous", + "discovered": "2022-04-25 21:01:30.313302" + }, + { + "post_title": "Mattele", + "group_name": "stormous", + "discovered": "2022-04-25 21:27:31.644095" + }, + { + "post_title": "Danaher", + "group_name": "stormous", + "discovered": "2022-04-25 21:27:31.927201" + }, + { + "post_title": "Confcommercio - Alessandria - Home", + "group_name": "quantum", + "discovered": "2022-04-26 00:38:41.377325" + }, + { + "post_title": "FRISA.com", + "group_name": "alphv", + "discovered": "2022-04-26 14:29:09.802111" + }, + { + "post_title": "j-w-anderson.com", + "group_name": "alphv", + "discovered": "2022-04-26 18:47:46.376706" + }, + { + "post_title": "SSK Ingeniería Y Construcción S.A.C.", + "group_name": "hiveleak", + "discovered": "2022-04-26 21:12:10.071326" + }, + { + "post_title": "Deutsche Windtechnik", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:12.555173" + }, + { + "post_title": "Basler Versicherungen", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:12.866916" + }, + { + "post_title": "LACKS", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:13.358402" + }, + { + "post_title": "IMA Schelling Group", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:13.881436" + }, + { + "post_title": "Laiteries Reunies Societe cooperative", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:14.197628" + }, + { + "post_title": "LECHLER S.p.A.", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:14.581568" + }, + { + "post_title": "Boswell Engineering", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:14.876370" + }, + { + "post_title": "Oralia", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:15.234388" + }, + { + "post_title": "Plauen Stahl Technologie GmbH", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:15.611500" + }, + { + "post_title": "TÜV NORD GROUP", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:15.886364" + }, + { + "post_title": "ADA", + "group_name": "blackbasta", + "discovered": "2022-04-26 21:12:16.203270" + }, + { + "post_title": "For Peru", + "group_name": "conti", + "discovered": "2022-04-27 13:41:37.316624" + }, + { + "post_title": "Alliant Physical Therapy DATA", + "group_name": "alphv", + "discovered": "2022-04-27 14:28:50.008682" + }, + { + "post_title": "Attica Holdings S.A.", + "group_name": "conti", + "discovered": "2022-04-27 16:29:40.444226" + }, + { + "post_title": "PhoenixPackagingPA", + "group_name": "alphv", + "discovered": "2022-04-27 17:33:02.807495" + }, + { + "post_title": "Elgin County", + "group_name": "quantum", + "discovered": "2022-04-27 18:46:06.811997" + }, + { + "post_title": "davislandscapel...", + "group_name": "lockbit2", + "discovered": "2022-04-27 23:29:53.252145" + }, + { + "post_title": "warrengibson.co...", + "group_name": "lockbit2", + "discovered": "2022-04-27 23:29:55.341759" + }, + { + "post_title": "ospreyvideo.com", + "group_name": "lockbit2", + "discovered": "2022-04-28 09:29:39.598653" + }, + { + "post_title": "ALMANIE GROUP", + "group_name": "vicesociety", + "discovered": "2022-04-28 11:32:15.797171" + }, + { + "post_title": "CORFERIAS", + "group_name": "vicesociety", + "discovered": "2022-04-28 11:32:16.170232" + }, + { + "post_title": "Attica Group", + "group_name": "hiveleak", + "discovered": "2022-04-28 12:28:10.483467" + }, + { + "post_title": "hydromaxusa.com", + "group_name": "lockbit2", + "discovered": "2022-04-28 14:33:39.744068" + }, + { + "post_title": "Ragle Incorporated", + "group_name": "blackbasta", + "discovered": "2022-04-28 14:33:54.743375" + }, + { + "post_title": "Tehama County Social Services", + "group_name": "quantum", + "discovered": "2022-04-28 16:33:04.614942" + }, + { + "post_title": "Est Ensemble", + "group_name": "vicesociety", + "discovered": "2022-04-28 16:33:06.137527" + }, + { + "post_title": "Stratton Finance", + "group_name": "vicesociety", + "discovered": "2022-04-28 16:33:06.501839" + }, + { + "post_title": "Levantina, Ingenieria y Construccion", + "group_name": "vicesociety", + "discovered": "2022-04-28 16:33:06.795489" + }, + { + "post_title": "LARON an otp industrial solutions company", + "group_name": "conti", + "discovered": "2022-04-28 17:32:39.016797" + }, + { + "post_title": "quito.gob.ec", + "group_name": "alphv", + "discovered": "2022-04-28 18:28:45.590261" + }, + { + "post_title": "Ackerman Plumbing Inc", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:36.092365" + }, + { + "post_title": "Semaphore Solutions Inc", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:36.378375" + }, + { + "post_title": "C&C FARMERS’ SUPPLY CORP", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:36.658487" + }, + { + "post_title": "Advantage Direct Care", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:36.918148" + }, + { + "post_title": "WAYNE FAMILY PRACTICE, ASSOC., P.C.", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:37.227470" + }, + { + "post_title": "Pacific Maritime Industries Corp.", + "group_name": "onyx", + "discovered": "2022-04-29 05:23:37.521675" + }, + { + "post_title": "GOLDENDUCK GROUP", + "group_name": "vicesociety", + "discovered": "2022-04-29 08:27:27.193234" + }, + { + "post_title": "Fonseca Supermarkets", + "group_name": "vicesociety", + "discovered": "2022-04-29 08:27:27.497030" + }, + { + "post_title": "Building Plastics, Inc.", + "group_name": "vicesociety", + "discovered": "2022-04-29 08:27:27.869343" + }, + { + "post_title": "Domingues and Pinho Contadores", + "group_name": "vicesociety", + "discovered": "2022-04-29 08:27:28.137140" + }, + { + "post_title": "Associazione Bancaria Italiana", + "group_name": "vicesociety", + "discovered": "2022-04-29 08:27:28.409368" + }, + { + "post_title": "bri", + "group_name": "lockbit2", + "discovered": "2022-04-29 11:28:45.625070" + }, + { + "post_title": "MOTIVE-ENERGY - HACKED AND 1.5 TB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-04-29 11:28:58.166569" + }, + { + "post_title": "Suhl. City in Germany", + "group_name": "vicesociety", + "discovered": "2022-04-29 11:29:00.154180" + }, + { + "post_title": "Mercadocar Mercantil Ltda.", + "group_name": "vicesociety", + "discovered": "2022-04-29 11:29:01.354363" + }, + { + "post_title": "watermarkbeachr", + "group_name": "lockbit2", + "discovered": "2022-04-29 13:40:15.093752" + }, + { + "post_title": "Monterey Mechanical Co.", + "group_name": "hiveleak", + "discovered": "2022-04-29 13:40:31.997835" + }, + { + "post_title": "Jasper County Sheriff's Office", + "group_name": "onyx", + "discovered": "2022-04-29 14:27:18.820314" + }, + { + "post_title": "www.innotecgroup.com", + "group_name": "alphv", + "discovered": "2022-04-29 18:25:27.935236" + }, + { + "post_title": "remar.", + "group_name": "lockbit2", + "discovered": "2022-04-29 19:46:57.074848" + }, + { + "post_title": "brid", + "group_name": "lockbit2", + "discovered": "2022-04-29 20:26:12.491699" + }, + { + "post_title": "Henry", + "group_name": "quantum", + "discovered": "2022-04-29 21:26:23.341427" + }, + { + "post_title": "Petro Serve", + "group_name": "quantum", + "discovered": "2022-04-29 21:26:23.660764" + }, + { + "post_title": "Drive Products", + "group_name": "quantum", + "discovered": "2022-04-29 21:26:24.351861" + }, + { + "post_title": "Grosvenor Engineering Group", + "group_name": "quantum", + "discovered": "2022-04-29 21:26:24.722661" + }, + { + "post_title": "Hufcor", + "group_name": "quantum", + "discovered": "2022-04-29 21:26:25.128049" + }, + { + "post_title": "Valley Rentals", + "group_name": "quantum", + "discovered": "2022-04-29 22:38:30.782670" + }, + { + "post_title": "w", + "group_name": "lockbit2", + "discovered": "2022-04-30 03:42:20.417343" + }, + { + "post_title": "7generations.or...", + "group_name": "lockbit2", + "discovered": "2022-04-30 11:26:49.248196" + }, + { + "post_title": "hispanoamerican...", + "group_name": "lockbit2", + "discovered": "2022-04-30 11:26:50.541750" + }, + { + "post_title": "p", + "group_name": "lockbit2", + "discovered": "2022-04-30 11:26:51.593497" + }, + { + "post_title": "sagefruit.com", + "group_name": "lockbit2", + "discovered": "2022-04-30 11:26:52.208956" + }, + { + "post_title": "Innotec, Corp.", + "group_name": "alphv", + "discovered": "2022-04-30 22:26:04.962832" + }, + { + "post_title": "Municipio de Quito", + "group_name": "alphv", + "discovered": "2022-04-30 22:26:05.312201" + }, + { + "post_title": "Phoenix/Packaging Inc.", + "group_name": "alphv", + "discovered": "2022-04-30 22:26:05.580912" + }, + { + "post_title": "Davis Law Group, P.C.", + "group_name": "alphv", + "discovered": "2022-05-01 01:59:15.175421" + }, + { + "post_title": "orthopaedie-app...", + "group_name": "lockbit2", + "discovered": "2022-05-01 11:26:53.141523" + }, + { + "post_title": "smtuc.pt", + "group_name": "lockbit2", + "discovered": "2022-05-01 11:26:53.954996" + }, + { + "post_title": "zdgllc.com", + "group_name": "lockbit2", + "discovered": "2022-05-01 11:26:54.630048" + }, + { + "post_title": "Collegiate sports medicine", + "group_name": "everest", + "discovered": "2022-05-01 14:23:39.955598" + }, + { + "post_title": "card", + "group_name": "lockbit2", + "discovered": "2022-05-01 20:29:00.361033" + }, + { + "post_title": "ethiopianai", + "group_name": "lockbit2", + "discovered": "2022-05-01 22:31:00.115551" + }, + { + "post_title": "CPQD - BANCO CENTRAL OF BRASIL BLOCKHAIN. 1.8TB DATA LEAKED WITH ALL SOURCES.", + "group_name": "lv", + "discovered": "2022-05-02 03:10:54.571246" + }, + { + "post_title": "vestas", + "group_name": "lockbit2", + "discovered": "2022-05-02 06:25:10.409778" + }, + { + "post_title": "SOGEGROSS SPA", + "group_name": "blackbyte", + "discovered": "2022-05-02 07:23:16.806966" + }, + { + "post_title": "M+R SPEDAG GROUP", + "group_name": "blackbyte", + "discovered": "2022-05-02 07:23:17.102363" + }, + { + "post_title": "FRANSABANK", + "group_name": "blackbyte", + "discovered": "2022-05-02 07:23:17.472002" + }, + { + "post_title": "Limited May Access Sale", + "group_name": "everest", + "discovered": "2022-05-02 16:24:33.438201" + }, + { + "post_title": "agenilsen.no", + "group_name": "lockbit2", + "discovered": "2022-05-02 17:32:13.862595" + }, + { + "post_title": "cwaengineers.co...", + "group_name": "lockbit2", + "discovered": "2022-05-02 17:32:14.788519" + }, + { + "post_title": "erediriva.it", + "group_name": "lockbit2", + "discovered": "2022-05-02 17:32:15.377182" + }, + { + "post_title": "The Scholz Group", + "group_name": "blackbasta", + "discovered": "2022-05-02 18:22:45.630419" + }, + { + "post_title": "PRGX Global Inc.", + "group_name": "blackbasta", + "discovered": "2022-05-02 21:23:29.320515" + }, + { + "post_title": "Jameco Electronics", + "group_name": "blackbasta", + "discovered": "2022-05-02 21:23:29.662899" + }, + { + "post_title": "fivestar", + "group_name": "lockbit2", + "discovered": "2022-05-03 00:40:20.794875" + }, + { + "post_title": "Instance IT Solutions India", + "group_name": "kelvinsecurity", + "discovered": "2022-05-03 03:09:52.515764" + }, + { + "post_title": "bfclcoin", + "group_name": "kelvinsecurity", + "discovered": "2022-05-03 03:09:52.822034" + }, + { + "post_title": "Municipality of Posadas", + "group_name": "kelvinsecurity", + "discovered": "2022-05-03 03:09:53.100450" + }, + { + "post_title": "Sarasin & partners LLP", + "group_name": "alphv", + "discovered": "2022-05-03 07:31:16.701143" + }, + { + "post_title": "Unicity International", + "group_name": "revil", + "discovered": "2022-05-03 15:29:11.430449" + }, + { + "post_title": "Asia Pacific University", + "group_name": "vicesociety", + "discovered": "2022-05-03 17:32:19.802713" + }, + { + "post_title": "BRITISH LINK KUWAIT", + "group_name": "alphv", + "discovered": "2022-05-03 18:30:57.229473" + }, + { + "post_title": "EYP", + "group_name": "conti", + "discovered": "2022-05-04 00:40:19.393866" + }, + { + "post_title": "aref.government...", + "group_name": "lockbit2", + "discovered": "2022-05-04 09:24:23.782307" + }, + { + "post_title": "nizing.com.tw", + "group_name": "lockbit2", + "discovered": "2022-05-04 09:24:25.209495" + }, + { + "post_title": "rogz.com", + "group_name": "lockbit2", + "discovered": "2022-05-04 09:24:25.681249" + }, + { + "post_title": "Tosoh Bioscience", + "group_name": "lorenz", + "discovered": "2022-05-04 14:33:59.217764" + }, + { + "post_title": "Faw-Volkswagen Automobile Co., Ltd.", + "group_name": "hiveleak", + "discovered": "2022-05-04 14:34:14.247187" + }, + { + "post_title": "Zito Media", + "group_name": "blackbasta", + "discovered": "2022-05-04 15:31:26.657459" + }, + { + "post_title": "Haynes Manuals", + "group_name": "vicesociety", + "discovered": "2022-05-04 19:26:53.196561" + }, + { + "post_title": "ELTA Hellenic Post", + "group_name": "vicesociety", + "discovered": "2022-05-04 19:26:53.538996" + }, + { + "post_title": "jewelry.", + "group_name": "lockbit2", + "discovered": "2022-05-05 02:13:24.945355" + }, + { + "post_title": "acorentacar", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:34.925796" + }, + { + "post_title": "allwell", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:35.387774" + }, + { + "post_title": "callinc", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:35.771772" + }, + { + "post_title": "diager", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:36.186341" + }, + { + "post_title": "mediuscorp", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:36.587329" + }, + { + "post_title": "micropakkn", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:36.951086" + }, + { + "post_title": "nottco", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:37.150071" + }, + { + "post_title": "simpsonplastering", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:37.516856" + }, + { + "post_title": "smd", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:37.813590" + }, + { + "post_title": "thebureau", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:38.216891" + }, + { + "post_title": "toshfarms", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:38.584835" + }, + { + "post_title": "welplaat", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:38.928760" + }, + { + "post_title": "willsent", + "group_name": "mindware", + "discovered": "2022-05-05 13:42:39.179439" + }, + { + "post_title": "Tosoh Corporation", + "group_name": "lorenz", + "discovered": "2022-05-05 15:30:33.201046" + }, + { + "post_title": "delcourt.fr", + "group_name": "lockbit2", + "discovered": "2022-05-05 15:30:34.095930" + }, + { + "post_title": "liceu.barcelon", + "group_name": "lockbit2", + "discovered": "2022-05-05 17:31:41.242945" + }, + { + "post_title": "Sole Technology", + "group_name": "blackbasta", + "discovered": "2022-05-05 17:31:52.930145" + }, + { + "post_title": "Rollecate Group", + "group_name": "blackbasta", + "discovered": "2022-05-05 17:31:53.142233" + }, + { + "post_title": "PTC Industries", + "group_name": "kelvinsecurity", + "discovered": "2022-05-06 04:28:20.132295" + }, + { + "post_title": "Next Leak On Hold", + "group_name": "kelvinsecurity", + "discovered": "2022-05-06 04:28:20.557235" + }, + { + "post_title": "fnoutlet.com", + "group_name": "lockbit2", + "discovered": "2022-05-06 11:30:54.665159" + }, + { + "post_title": "mpusd.", + "group_name": "lockbit2", + "discovered": "2022-05-06 11:30:55.633628" + }, + { + "post_title": "nipmo.dst.gov.z...", + "group_name": "lockbit2", + "discovered": "2022-05-06 11:30:55.905928" + }, + { + "post_title": "realestateconsu...", + "group_name": "lockbit2", + "discovered": "2022-05-07 00:37:46.710705" + }, + { + "post_title": "AHS Aviation Handling Services GmbH", + "group_name": "ransomhouse", + "discovered": "2022-05-09 00:17:19.451553" + }, + { + "post_title": "Dellner Couplers AB", + "group_name": "ransomhouse", + "discovered": "2022-05-09 00:17:19.742157" + }, + { + "post_title": "Jefferson Credit Union", + "group_name": "ransomhouse", + "discovered": "2022-05-09 00:17:20.011064" + }, + { + "post_title": "Saskatchewan Liquor and Gaming Authority", + "group_name": "ransomhouse", + "discovered": "2022-05-09 00:17:20.270116" + }, + { + "post_title": "safarni.com", + "group_name": "lockbit2", + "discovered": "2022-05-09 12:28:59.230182" + }, + { + "post_title": "shimamura.gr.jp", + "group_name": "lockbit2", + "discovered": "2022-05-09 12:28:59.562347" + }, + { + "post_title": "ioi", + "group_name": "stormous", + "discovered": "2022-05-09 20:30:39.007872" + }, + { + "post_title": "Flexible Circuit Technologies", + "group_name": "blackbasta", + "discovered": "2022-05-09 21:32:12.093412" + }, + { + "post_title": "Fachgroßhandel", + "group_name": "blackbasta", + "discovered": "2022-05-09 21:32:12.526159" + }, + { + "post_title": "Cavender", + "group_name": "blackbasta", + "discovered": "2022-05-09 21:32:12.848461" + }, + { + "post_title": "hansh", + "group_name": "lockbit2", + "discovered": "2022-05-10 02:51:28.041379" + }, + { + "post_title": "silverbayseafoo...", + "group_name": "lockbit2", + "discovered": "2022-05-10 09:27:19.444313" + }, + { + "post_title": "sportco.com", + "group_name": "lockbit2", + "discovered": "2022-05-10 09:27:19.775740" + }, + { + "post_title": "topaces.us", + "group_name": "lockbit2", + "discovered": "2022-05-10 09:27:20.137079" + }, + { + "post_title": "Black Bros. Co.", + "group_name": "blackbasta", + "discovered": "2022-05-10 12:28:58.459172" + }, + { + "post_title": "Salud Total", + "group_name": "vicesociety", + "discovered": "2022-05-11 17:38:59.973253" + }, + { + "post_title": "Caldes de Montbui", + "group_name": "vicesociety", + "discovered": "2022-05-11 17:39:00.317969" + }, + { + "post_title": "Trans Technology Pte Ltd.", + "group_name": "vicesociety", + "discovered": "2022-05-11 17:39:00.680744" + }, + { + "post_title": "Simonson-Lumber decided to be Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-05-11 19:25:57.671250" + }, + { + "post_title": "saskarc.com", + "group_name": "lockbit2", + "discovered": "2022-05-11 20:29:23.075719" + }, + { + "post_title": "The People's Federal Credit Union | tpfcu.com", + "group_name": "alphv", + "discovered": "2022-05-11 20:29:36.789722" + }, + { + "post_title": "Campbell & Partners Consulting", + "group_name": "alphv", + "discovered": "2022-05-11 23:24:49.195986" + }, + { + "post_title": "ats-insubria.it", + "group_name": "blackbyte", + "discovered": "2022-05-12 12:27:58.450320" + }, + { + "post_title": "usu.org.au", + "group_name": "blackbyte", + "discovered": "2022-05-12 12:27:58.843110" + }, + { + "post_title": "xydias.gr", + "group_name": "blackbyte", + "discovered": "2022-05-12 12:27:59.080480" + }, + { + "post_title": "Ludwig Freytag Group", + "group_name": "revil", + "discovered": "2022-05-12 13:41:21.030758" + }, + { + "post_title": "Cjk Group, Inc.", + "group_name": "conti", + "discovered": "2022-05-12 16:25:43.488010" + }, + { + "post_title": "zine-eskola.eus", + "group_name": "lockbit2", + "discovered": "2022-05-12 20:35:28.243519" + }, + { + "post_title": "M+A Partners", + "group_name": "alphv", + "discovered": "2022-05-13 08:25:28.255070" + }, + { + "post_title": "agapemeanslove....", + "group_name": "lockbit2", + "discovered": "2022-05-13 09:25:09.202265" + }, + { + "post_title": "alliancesand.co...", + "group_name": "lockbit2", + "discovered": "2022-05-13 09:25:09.549286" + }, + { + "post_title": "purapharm.com", + "group_name": "lockbit2", + "discovered": "2022-05-13 09:25:11.978768" + }, + { + "post_title": "bradfordmarine....", + "group_name": "lockbit2", + "discovered": "2022-05-13 11:29:26.395576" + }, + { + "post_title": "mosaiceins.com", + "group_name": "lockbit2", + "discovered": "2022-05-13 11:29:28.455473" + }, + { + "post_title": "riken-nosan.com", + "group_name": "lockbit2", + "discovered": "2022-05-13 11:29:29.281269" + }, + { + "post_title": "sgservicesud.it", + "group_name": "lockbit2", + "discovered": "2022-05-13 11:29:29.897663" + }, + { + "post_title": "Channel Navigator business intelligence IT", + "group_name": "kelvinsecurity", + "discovered": "2022-05-13 12:32:50.585602" + }, + { + "post_title": "PERBIT.COM", + "group_name": "clop", + "discovered": "2022-05-13 13:47:09.135844" + }, + { + "post_title": "www.optoma.com", + "group_name": "lockbit2", + "discovered": "2022-05-13 20:24:48.080164" + }, + { + "post_title": "boltburdonkemp....", + "group_name": "lockbit2", + "discovered": "2022-05-13 21:26:01.368937" + }, + { + "post_title": "For Costa Rica and US terrorists (Biden and his administration)", + "group_name": "conti", + "discovered": "2022-05-14 13:41:31.663898" + }, + { + "post_title": "optoma.com", + "group_name": "lockbit2", + "discovered": "2022-05-14 14:26:09.189804" + }, + { + "post_title": "hoffsu", + "group_name": "lockbit2", + "discovered": "2022-05-14 17:27:03.563513" + }, + { + "post_title": "redgwick.", + "group_name": "lockbit2", + "discovered": "2022-05-14 18:33:45.849218" + }, + { + "post_title": "boltburdon.co.u...", + "group_name": "lockbit2", + "discovered": "2022-05-15 05:32:07.430322" + }, + { + "post_title": "mercyhurst.edu", + "group_name": "lockbit2", + "discovered": "2022-05-15 20:28:52.884319" + }, + { + "post_title": "arcelormittal.h...", + "group_name": "lockbit2", + "discovered": "2022-05-16 08:26:31.269741" + }, + { + "post_title": "hinakaorg.com", + "group_name": "lockbit2", + "discovered": "2022-05-16 08:26:32.574012" + }, + { + "post_title": "STU", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:51.788433" + }, + { + "post_title": "grupocabal.cl", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:53.143414" + }, + { + "post_title": "http://2easy.co...", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:53.582065" + }, + { + "post_title": "rexontec.com.tw", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:54.768794" + }, + { + "post_title": "saludparatodos....", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:55.121969" + }, + { + "post_title": "talaadthaii.com", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:55.714182" + }, + { + "post_title": "teka.com.mx", + "group_name": "lockbit2", + "discovered": "2022-05-16 10:28:55.944230" + }, + { + "post_title": "fronteousa", + "group_name": "cuba", + "discovered": "2022-05-16 10:29:05.746819" + }, + { + "post_title": "cassagne.com.ar", + "group_name": "lockbit2", + "discovered": "2022-05-16 11:46:32.942447" + }, + { + "post_title": "sherpamarketing...", + "group_name": "lockbit2", + "discovered": "2022-05-16 11:46:35.103751" + }, + { + "post_title": "Piggly Wiggly Alabama Distributing Company", + "group_name": "blackbasta", + "discovered": "2022-05-16 11:46:48.628467" + }, + { + "post_title": "AmCham Shanghai", + "group_name": "lorenz", + "discovered": "2022-05-16 16:32:16.926358" + }, + { + "post_title": "Brunk Industries Inc.", + "group_name": "lorenz", + "discovered": "2022-05-16 16:32:17.264929" + }, + { + "post_title": "jaykal", + "group_name": "lockbit2", + "discovered": "2022-05-17 06:11:05.837526" + }, + { + "post_title": "InnPower", + "group_name": "quantum", + "discovered": "2022-05-17 08:46:22.393899" + }, + { + "post_title": "Hirsch Watch Straps & Accessories", + "group_name": "quantum", + "discovered": "2022-05-17 08:46:22.700016" + }, + { + "post_title": "upskwt", + "group_name": "cuba", + "discovered": "2022-05-17 15:30:17.008440" + }, + { + "post_title": "khs-wp.de", + "group_name": "lockbit2", + "discovered": "2022-05-17 16:31:08.140248" + }, + { + "post_title": "2easy.com.br", + "group_name": "lockbit2", + "discovered": "2022-05-17 18:30:03.506959" + }, + { + "post_title": "FOR BlackCat and LockBit advert", + "group_name": "conti", + "discovered": "2022-05-17 19:27:36.938343" + }, + { + "post_title": "vivalia.be", + "group_name": "lockbit2", + "discovered": "2022-05-17 20:29:07.904119" + }, + { + "post_title": "Tex-Isle Supply", + "group_name": "quantum", + "discovered": "2022-05-17 20:29:18.270313" + }, + { + "post_title": "modetransportat...", + "group_name": "lockbit2", + "discovered": "2022-05-17 21:34:21.048520" + }, + { + "post_title": "suntecktts.com", + "group_name": "lockbit2", + "discovered": "2022-05-17 21:34:22.213240" + }, + { + "post_title": "Tecnopack", + "group_name": "alphv", + "discovered": "2022-05-18 00:42:07.009659" + }, + { + "post_title": "Xplay Data Leak", + "group_name": "darkleakmarket", + "discovered": "2022-05-18 01:58:17.735587" + }, + { + "post_title": "https://clublin...", + "group_name": "lockbit2", + "discovered": "2022-05-18 13:42:03.300664" + }, + { + "post_title": "Mercyhurst.edu", + "group_name": "lockbit2", + "discovered": "2022-05-18 17:33:01.581702" + }, + { + "post_title": "clublinks.com.a...", + "group_name": "lockbit2", + "discovered": "2022-05-18 23:34:03.144933" + }, + { + "post_title": "Important announcement", + "group_name": "lv", + "discovered": "2022-05-19 05:33:13.267678" + }, + { + "post_title": "Higher School of the Public", + "group_name": "vicesociety", + "discovered": "2022-05-19 05:33:15.084145" + }, + { + "post_title": "Carmel College", + "group_name": "vicesociety", + "discovered": "2022-05-19 05:33:15.289145" + }, + { + "post_title": "Atlanta Perinatal Associates", + "group_name": "vicesociety", + "discovered": "2022-05-19 05:33:15.486300" + }, + { + "post_title": "http://wsretail...", + "group_name": "lockbit2", + "discovered": "2022-05-19 09:29:58.247871" + }, + { + "post_title": "Boom Logistics (boomlogistics.com.au)", + "group_name": "alphv", + "discovered": "2022-05-19 10:30:47.209148" + }, + { + "post_title": "Contractors Pipe and Supply Corporation", + "group_name": "blackbasta", + "discovered": "2022-05-19 10:30:48.510574" + }, + { + "post_title": "fed-gmbh.de", + "group_name": "lockbit2", + "discovered": "2022-05-19 12:30:04.181436" + }, + { + "post_title": "gdctax.com.au", + "group_name": "lockbit2", + "discovered": "2022-05-19 12:30:04.583894" + }, + { + "post_title": "groupe-trouille...", + "group_name": "lockbit2", + "discovered": "2022-05-19 12:30:04.981456" + }, + { + "post_title": "Tri-Ko", + "group_name": "hiveleak", + "discovered": "2022-05-19 14:28:58.002115" + }, + { + "post_title": "Magtek", + "group_name": "lorenz", + "discovered": "2022-05-19 17:48:42.218726" + }, + { + "post_title": "gymund.dk", + "group_name": "lockbit2", + "discovered": "2022-05-19 17:48:43.506990" + }, + { + "post_title": "skinnertrans.ne...", + "group_name": "lockbit2", + "discovered": "2022-05-19 17:48:44.718557" + }, + { + "post_title": "CARTEGRAPH", + "group_name": "hiveleak", + "discovered": "2022-05-19 20:29:40.607341" + }, + { + "post_title": "EIITNET", + "group_name": "hiveleak", + "discovered": "2022-05-19 20:29:41.211744" + }, + { + "post_title": "bata", + "group_name": "lockbit2", + "discovered": "2022-05-20 01:57:41.779543" + }, + { + "post_title": "morrisonexpress...", + "group_name": "lockbit2", + "discovered": "2022-05-20 09:28:07.436769" + }, + { + "post_title": "The Catholic Foundation", + "group_name": "vicesociety", + "discovered": "2022-05-20 13:42:42.600987" + }, + { + "post_title": "firbarcarolo.it", + "group_name": "lockbit2", + "discovered": "2022-05-20 16:24:37.956398" + }, + { + "post_title": "SPORTPLAZA", + "group_name": "hiveleak", + "discovered": "2022-05-20 16:24:54.042720" + }, + { + "post_title": "de", + "group_name": "lockbit2", + "discovered": "2022-05-20 18:25:33.145849" + }, + { + "post_title": "salumificiovene...", + "group_name": "lockbit2", + "discovered": "2022-05-20 20:39:04.223733" + }, + { + "post_title": "bsm.upf.ed", + "group_name": "lockbit2", + "discovered": "2022-05-20 23:26:45.392034" + }, + { + "post_title": "Contraloría General de la República", + "group_name": "blackbyte", + "discovered": "2022-05-21 09:26:10.459144" + }, + { + "post_title": "Grupo Pavisa", + "group_name": "blackbyte", + "discovered": "2022-05-21 10:30:36.321923" + }, + { + "post_title": "focusadventure..", + "group_name": "lockbit2", + "discovered": "2022-05-21 15:32:16.621078" + }, + { + "post_title": "seatarrabida.pt", + "group_name": "lockbit2", + "discovered": "2022-05-22 11:23:58.597710" + }, + { + "post_title": "Elkuch Group", + "group_name": "blackbasta", + "discovered": "2022-05-22 14:30:33.226551" + }, + { + "post_title": "HEMERIA", + "group_name": "snatch", + "discovered": "2022-05-22 17:30:43.709580" + }, + { + "post_title": "reitzner", + "group_name": "lockbit2", + "discovered": "2022-05-22 18:28:41.669366" + }, + { + "post_title": "SYSOL", + "group_name": "alphv", + "discovered": "2022-05-22 18:28:57.666442" + }, + { + "post_title": "etrp", + "group_name": "lockbit2", + "discovered": "2022-05-23 03:49:10.902174" + }, + { + "post_title": "berschneider.de", + "group_name": "lockbit2", + "discovered": "2022-05-23 12:30:48.782171" + }, + { + "post_title": "Allcat Claims Service", + "group_name": "conti", + "discovered": "2022-05-23 13:41:33.141563" + }, + { + "post_title": "Pianca", + "group_name": "conti", + "discovered": "2022-05-23 13:41:36.689892" + }, + { + "post_title": "Omicron Consulting S.r.L", + "group_name": "conti", + "discovered": "2022-05-23 13:41:39.674818" + }, + { + "post_title": "Worksoft", + "group_name": "conti", + "discovered": "2022-05-23 13:41:42.355270" + }, + { + "post_title": "Alimentos y Frutos S.A.", + "group_name": "conti", + "discovered": "2022-05-23 13:41:44.977669" + }, + { + "post_title": "Agile Sourcing Partners", + "group_name": "conti", + "discovered": "2022-05-23 13:41:47.502583" + }, + { + "post_title": "Eurofred", + "group_name": "conti", + "discovered": "2022-05-23 13:41:50.616721" + }, + { + "post_title": "Concepts in Millwork", + "group_name": "conti", + "discovered": "2022-05-23 13:41:53.704549" + }, + { + "post_title": "Imenco AS", + "group_name": "conti", + "discovered": "2022-05-23 14:29:45.995355" + }, + { + "post_title": "Eurocept", + "group_name": "quantum", + "discovered": "2022-05-23 17:37:50.156245" + }, + { + "post_title": "Transsion Holdings", + "group_name": "quantum", + "discovered": "2022-05-23 18:27:43.145460" + }, + { + "post_title": "Active Communications International", + "group_name": "quantum", + "discovered": "2022-05-23 18:27:46.857558" + }, + { + "post_title": "Germany Corporation \"VMT-GmbH\" Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-05-23 21:28:43.369124" + }, + { + "post_title": "NEWCOURSECC.COM", + "group_name": "clop", + "discovered": "2022-05-23 22:30:12.971649" + }, + { + "post_title": "Imagen Television", + "group_name": "alphv", + "discovered": "2022-05-24 06:26:07.175952" + }, + { + "post_title": "virtus-advocate...", + "group_name": "lockbit2", + "discovered": "2022-05-24 09:24:38.260711" + }, + { + "post_title": "www.intertabak....", + "group_name": "lockbit2", + "discovered": "2022-05-24 11:29:32.912066" + }, + { + "post_title": "RateGain", + "group_name": "conti", + "discovered": "2022-05-24 13:39:12.403262" + }, + { + "post_title": "RateGain", + "group_name": "hiveleak", + "discovered": "2022-05-24 14:28:18.985410" + }, + { + "post_title": "Allports Group", + "group_name": "blackbasta", + "discovered": "2022-05-24 14:28:25.237190" + }, + { + "post_title": "architectenbure...", + "group_name": "lockbit2", + "discovered": "2022-05-24 15:28:07.479982" + }, + { + "post_title": "erdwaerme-gruen...", + "group_name": "lockbit2", + "discovered": "2022-05-24 15:28:11.301158" + }, + { + "post_title": "kuwaitflourmill...", + "group_name": "lockbit2", + "discovered": "2022-05-24 15:28:14.675636" + }, + { + "post_title": "pet-link.com", + "group_name": "lockbit2", + "discovered": "2022-05-24 15:28:17.860426" + }, + { + "post_title": "https://www.vit...", + "group_name": "lockbit2", + "discovered": "2022-05-24 16:28:27.362540" + }, + { + "post_title": "vitalprev.com.b...", + "group_name": "lockbit2", + "discovered": "2022-05-24 16:28:32.036375" + }, + { + "post_title": "Schaumburg Park District", + "group_name": "conti", + "discovered": "2022-05-24 16:28:41.562468" + }, + { + "post_title": "Central Restaurant Products", + "group_name": "conti", + "discovered": "2022-05-24 16:28:44.758094" + }, + { + "post_title": "Mansfield Energy", + "group_name": "kelvinsecurity", + "discovered": "2022-05-24 20:35:17.573883" + }, + { + "post_title": "TRANSCONTRACT", + "group_name": "kelvinsecurity", + "discovered": "2022-05-24 20:35:19.562212" + }, + { + "post_title": "pointsbet.com", + "group_name": "lockbit2", + "discovered": "2022-05-25 03:09:34.614382" + }, + { + "post_title": "The Contact Company", + "group_name": "conti", + "discovered": "2022-05-25 05:35:16.685225" + }, + { + "post_title": "LCRD", + "group_name": "conti", + "discovered": "2022-05-25 05:35:18.950067" + }, + { + "post_title": "AGCO", + "group_name": "blackbasta", + "discovered": "2022-05-25 08:30:39.886059" + }, + { + "post_title": "Yachiyo Of America", + "group_name": "hiveleak", + "discovered": "2022-05-25 13:47:10.078986" + }, + { + "post_title": "Huge iCloud Nudes Leak", + "group_name": "darkleakmarket", + "discovered": "2022-05-25 18:38:22.481043" + }, + { + "post_title": "IGHQ", + "group_name": "hiveleak", + "discovered": "2022-05-25 19:35:01.234703" + }, + { + "post_title": "NUAIRE", + "group_name": "hiveleak", + "discovered": "2022-05-25 19:35:04.010212" + }, + { + "post_title": "GUARDFUEL", + "group_name": "hiveleak", + "discovered": "2022-05-25 20:33:37.765352" + }, + { + "post_title": "ChemStation International", + "group_name": "hiveleak", + "discovered": "2022-05-26 04:32:05.666499" + }, + { + "post_title": "Guardian Fueling Technologies", + "group_name": "hiveleak", + "discovered": "2022-05-26 04:32:08.239822" + }, + { + "post_title": "SOUCY", + "group_name": "hiveleak", + "discovered": "2022-05-26 14:40:12.203607" + }, + { + "post_title": "edm-stone.com", + "group_name": "lockbit2", + "discovered": "2022-05-26 16:33:47.017597" + }, + { + "post_title": "Mebulbs", + "group_name": "lorenz", + "discovered": "2022-05-26 17:39:54.121377" + }, + { + "post_title": "Lamborghini, Ferrari, Fiat Group, VAG, Brembo And data from other automobile concerns", + "group_name": "everest", + "discovered": "2022-05-26 19:39:54.881528" + }, + { + "post_title": "ils.theinnovate...", + "group_name": "lockbit2", + "discovered": "2022-05-26 20:28:28.387832" + }, + { + "post_title": "skinnertran", + "group_name": "lockbit2", + "discovered": "2022-05-27 04:14:10.219764" + }, + { + "post_title": "Horwitz Law, Horwitz & Associates", + "group_name": "alphv", + "discovered": "2022-05-27 05:32:42.833919" + }, + { + "post_title": "kerrylog", + "group_name": "lockbit2", + "discovered": "2022-05-27 15:30:35.986230" + }, + { + "post_title": "Florida Department of Veterans' Affairs", + "group_name": "quantum", + "discovered": "2022-05-27 16:25:59.084685" + }, + { + "post_title": "FTSUMNERK12.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:28:51.225733" + }, + { + "post_title": "LATOURNERIE-WOLFROM.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:28:52.926605" + }, + { + "post_title": "ENSSECURITY.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:29:00.294288" + }, + { + "post_title": "FERRAN-SERVICES.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:29:03.638549" + }, + { + "post_title": "ATAPCOPROPERTIES.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:29:12.443041" + }, + { + "post_title": "888VOIP.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:29:15.807672" + }, + { + "post_title": "PRICEDEX.COM", + "group_name": "clop", + "discovered": "2022-05-27 21:29:20.776105" + }, + { + "post_title": "undefined", + "group_name": "blackbasta", + "discovered": "2022-05-28 19:36:22.179672" + }, + { + "post_title": "XEIAD", + "group_name": "hiveleak", + "discovered": "2022-05-28 20:31:04.455876" + }, + { + "post_title": "Travira Air", + "group_name": "hiveleak", + "discovered": "2022-05-28 20:31:10.018679" + }, + { + "post_title": "An International Maritime Company - Unpay", + "group_name": "cheers", + "discovered": "2022-05-29 08:39:38.872245" + }, + { + "post_title": "An Belgium Hospital - Unpay", + "group_name": "cheers", + "discovered": "2022-05-29 08:39:41.148763" + }, + { + "post_title": "An Financial Company - Paid", + "group_name": "cheers", + "discovered": "2022-05-29 08:39:43.238597" + }, + { + "post_title": "An Technology Company - Paid", + "group_name": "cheers", + "discovered": "2022-05-29 08:39:45.127483" + }, + { + "post_title": "BLAIR inc.", + "group_name": "blackbasta", + "discovered": "2022-05-29 10:26:51.188059" + }, + { + "post_title": "hospitalsanjose...", + "group_name": "lockbit2", + "discovered": "2022-05-29 14:29:17.983090" + }, + { + "post_title": "pauly.de", + "group_name": "lockbit2", + "discovered": "2022-05-29 14:29:21.355737" + }, + { + "post_title": "koenigstahl.pl", + "group_name": "lockbit2", + "discovered": "2022-05-29 18:29:43.134845" + }, + { + "post_title": "foxconnbc.com", + "group_name": "lockbit2", + "discovered": "2022-05-29 19:26:49.340178" + }, + { + "post_title": "gpmlife.com", + "group_name": "lockbit2", + "discovered": "2022-05-30 08:35:17.805150" + }, + { + "post_title": "tcpharmachem.co...", + "group_name": "lockbit2", + "discovered": "2022-05-30 09:32:01.249392" + }, + { + "post_title": "inla", + "group_name": "lockbit2", + "discovered": "2022-05-30 11:34:28.312260" + }, + { + "post_title": "intertabak.com", + "group_name": "lockbit2", + "discovered": "2022-05-30 14:33:47.110967" + }, + { + "post_title": "Whitehall. (OH)", + "group_name": "alphv", + "discovered": "2022-05-30 18:36:25.918630" + }, + { + "post_title": "Klasner Solomon & Partners Chartered Professional Accountants", + "group_name": "alphv", + "discovered": "2022-05-30 18:36:28.254974" + }, + { + "post_title": "Caracol TV", + "group_name": "hiveleak", + "discovered": "2022-05-30 22:28:17.090227" + }, + { + "post_title": "G&P Projects And Systems S.A.", + "group_name": "hiveleak", + "discovered": "2022-05-30 22:28:20.006107" + }, + { + "post_title": "GREEN MOUNTAIN ELECTRIC SUPPLY (gmes.com)", + "group_name": "alphv", + "discovered": "2022-05-31 12:37:42.818956" + }, + { + "post_title": "CMC Electronics", + "group_name": "alphv", + "discovered": "2022-05-31 14:29:28.693298" + }, + { + "post_title": "Westwood", + "group_name": "lorenz", + "discovered": "2022-05-31 16:28:30.453851" + }, + { + "post_title": "CAVENDERS", + "group_name": "blackbasta", + "discovered": "2022-05-31 21:26:59.152467" + }, + { + "post_title": "AMS-Gruppe", + "group_name": "alphv", + "discovered": "2022-06-01 09:31:57.120270" + }, + { + "post_title": "JBS TEXTILE GROUP", + "group_name": "blackbasta", + "discovered": "2022-06-01 09:32:00.883991" + }, + { + "post_title": "Groupe J.F. Nadeau Inc", + "group_name": "blackbasta", + "discovered": "2022-06-01 09:32:02.863568" + }, + { + "post_title": "Jonathan Adler Leaks", + "group_name": "ragnarlocker", + "discovered": "2022-06-01 13:52:17.784009" + }, + { + "post_title": "bradfo", + "group_name": "lockbit2", + "discovered": "2022-06-01 16:38:22.516027" + }, + { + "post_title": "CICIS.COM- HACKED AND INFORMATION MORE THEN 120,000 CUSTOMERS LEAKED", + "group_name": "lv", + "discovered": "2022-06-01 23:34:19.582335" + }, + { + "post_title": "XYTECH - HACKED AND 650 GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-01 23:34:21.724594" + }, + { + "post_title": "Nelsonslaw LLP", + "group_name": "alphv", + "discovered": "2022-06-02 00:34:46.722996" + }, + { + "post_title": "cepima", + "group_name": "lockbit2", + "discovered": "2022-06-02 06:27:15.238138" + }, + { + "post_title": "hilltopconstruc", + "group_name": "lockbit2", + "discovered": "2022-06-02 07:29:49.123234" + }, + { + "post_title": "compagniedep", + "group_name": "lockbit2", + "discovered": "2022-06-02 08:31:31.851404" + }, + { + "post_title": "jewelry.or", + "group_name": "lockbit2", + "discovered": "2022-06-02 10:30:29.145872" + }, + { + "post_title": "closetheloopeu....", + "group_name": "lockbit2", + "discovered": "2022-06-02 15:45:44.092623" + }, + { + "post_title": "Alexandria. (LA)", + "group_name": "alphv", + "discovered": "2022-06-02 17:49:38.817492" + }, + { + "post_title": "The De Montfort School", + "group_name": "vicesociety", + "discovered": "2022-06-02 23:27:17.454887" + }, + { + "post_title": "Acorn Recruitment", + "group_name": "vicesociety", + "discovered": "2022-06-02 23:27:19.806799" + }, + { + "post_title": "St Paul", + "group_name": "vicesociety", + "discovered": "2022-06-02 23:27:21.617609" + }, + { + "post_title": "sport", + "group_name": "lockbit2", + "discovered": "2022-06-03 20:28:44.056005" + }, + { + "post_title": "Sierra Packaging Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-06-04 00:37:50.279588" + }, + { + "post_title": "Northeastern Technical College", + "group_name": "suncrypt", + "discovered": "2022-06-04 01:54:28.733578" + }, + { + "post_title": "familyclinicbri...", + "group_name": "lockbit2", + "discovered": "2022-06-04 07:30:50.489951" + }, + { + "post_title": "colonail.com", + "group_name": "lockbit2", + "discovered": "2022-06-04 10:26:59.075233" + }, + { + "post_title": "ora.com", + "group_name": "lockbit2", + "discovered": "2022-06-04 10:27:02.096728" + }, + { + "post_title": "specpharm.co.za", + "group_name": "lockbit2", + "discovered": "2022-06-04 10:27:04.833766" + }, + { + "post_title": "wik-group.com", + "group_name": "lockbit2", + "discovered": "2022-06-04 10:27:07.172427" + }, + { + "post_title": "SilTerra - HACKED AND 1 TB DATA LEAKED WITH SOURCES AND NDA", + "group_name": "lv", + "discovered": "2022-06-04 11:27:34.819673" + }, + { + "post_title": "rosagroup", + "group_name": "lockbit2", + "discovered": "2022-06-04 20:47:19.836280" + }, + { + "post_title": "vainieritraspor...", + "group_name": "lockbit2", + "discovered": "2022-06-04 21:54:44.103468" + }, + { + "post_title": "bestattung-walz...", + "group_name": "lockbit2", + "discovered": "2022-06-05 19:28:31.973788" + }, + { + "post_title": "kansashighwaypa...", + "group_name": "lockbit2", + "discovered": "2022-06-05 19:28:35.305029" + }, + { + "post_title": "IBRCN.COM", + "group_name": "lockbit2", + "discovered": "2022-06-06 09:26:31.168235" + }, + { + "post_title": "hyatts.com", + "group_name": "lockbit2", + "discovered": "2022-06-06 09:26:34.313095" + }, + { + "post_title": "linmark.com", + "group_name": "lockbit2", + "discovered": "2022-06-06 09:26:36.368961" + }, + { + "post_title": "patralogistik.c...", + "group_name": "lockbit2", + "discovered": "2022-06-06 09:26:38.362522" + }, + { + "post_title": "sesver.gob.mx", + "group_name": "lockbit2", + "discovered": "2022-06-06 09:26:40.052152" + }, + { + "post_title": "kan", + "group_name": "lockbit2", + "discovered": "2022-06-06 16:36:17.313857" + }, + { + "post_title": "mandiant.com", + "group_name": "lockbit2", + "discovered": "2022-06-06 16:36:20.076856" + }, + { + "post_title": "VTVCAB", + "group_name": "everest", + "discovered": "2022-06-06 21:45:00.654024" + }, + { + "post_title": "https://www.equ...", + "group_name": "lockbit2", + "discovered": "2022-06-07 07:39:12.066390" + }, + { + "post_title": "gpml", + "group_name": "lockbit2", + "discovered": "2022-06-07 10:42:08.320729" + }, + { + "post_title": "equis.com", + "group_name": "lockbit2", + "discovered": "2022-06-07 12:43:40.812272" + }, + { + "post_title": "Alliance Steel", + "group_name": "conti", + "discovered": "2022-06-07 18:40:06.936435" + }, + { + "post_title": "Losberger De Boer", + "group_name": "blackbasta", + "discovered": "2022-06-07 23:44:46.130232" + }, + { + "post_title": "English Construction Company", + "group_name": "blackbasta", + "discovered": "2022-06-08 14:41:50.472799" + }, + { + "post_title": "Goodman Campbell Brain & Spine", + "group_name": "hiveleak", + "discovered": "2022-06-08 17:51:09.452987" + }, + { + "post_title": "virtus-", + "group_name": "lockbit2", + "discovered": "2022-06-09 00:52:10.208053" + }, + { + "post_title": "Palermo", + "group_name": "vicesociety", + "discovered": "2022-06-09 00:52:25.373311" + }, + { + "post_title": "CAPECODRTA - HACKED AND DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-09 17:53:23.414554" + }, + { + "post_title": "kaisoten.co.jp", + "group_name": "lockbit2", + "discovered": "2022-06-09 20:43:46.015381" + }, + { + "post_title": "cargoexperts.eu", + "group_name": "lockbit2", + "discovered": "2022-06-10 10:33:43.773984" + }, + { + "post_title": "www.vectorinf.c...", + "group_name": "lockbit2", + "discovered": "2022-06-10 10:33:47.618342" + }, + { + "post_title": "Worldwide Flight Services", + "group_name": "blackbasta", + "discovered": "2022-06-10 11:34:13.232665" + }, + { + "post_title": "Tiroler Rohre GmbH", + "group_name": "blackbasta", + "discovered": "2022-06-10 14:36:31.037240" + }, + { + "post_title": "eivp-paris.fr", + "group_name": "alphv", + "discovered": "2022-06-10 21:33:17.545642" + }, + { + "post_title": "Metek Plc", + "group_name": "everest", + "discovered": "2022-06-11 02:04:50.736515" + }, + { + "post_title": "ses", + "group_name": "lockbit2", + "discovered": "2022-06-11 13:38:22.631388" + }, + { + "post_title": "The University of Pisa", + "group_name": "alphv", + "discovered": "2022-06-11 18:31:34.102957" + }, + { + "post_title": "sanvitale.r", + "group_name": "lockbit2", + "discovered": "2022-06-12 08:33:17.374746" + }, + { + "post_title": "slgienergy.com", + "group_name": "lockbit2", + "discovered": "2022-06-12 09:33:35.361556" + }, + { + "post_title": "SDZ Druck und Medien", + "group_name": "blackbasta", + "discovered": "2022-06-12 09:34:17.609111" + }, + { + "post_title": "Opal", + "group_name": "blackbyte", + "discovered": "2022-06-12 14:36:08.734064" + }, + { + "post_title": "ptg.com.au", + "group_name": "lockbit2", + "discovered": "2022-06-13 07:37:55.793470" + }, + { + "post_title": "etron", + "group_name": "cuba", + "discovered": "2022-06-13 18:03:04.929575" + }, + { + "post_title": "Grand Valley State University", + "group_name": "vicesociety", + "discovered": "2022-06-13 23:34:53.998021" + }, + { + "post_title": "Bernd Hösele Group", + "group_name": "blackbasta", + "discovered": "2022-06-14 06:36:00.370636" + }, + { + "post_title": "theallison.com", + "group_name": "alphv", + "discovered": "2022-06-14 11:33:50.229367" + }, + { + "post_title": "MOTOLUCLE.COM - HACKED AND DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-14 13:46:20.972826" + }, + { + "post_title": "SCHIFFMANS - HACKED AND DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-14 13:46:22.989444" + }, + { + "post_title": "Plainedge Public Schools", + "group_name": "alphv", + "discovered": "2022-06-14 13:46:26.810128" + }, + { + "post_title": "Metek PLC Files Leak", + "group_name": "everest", + "discovered": "2022-06-14 14:37:21.991913" + }, + { + "post_title": "SHOPRITE HOLDINGS LTD", + "group_name": "ransomhouse", + "discovered": "2022-06-14 16:35:31.423803" + }, + { + "post_title": "Medlab Pathology", + "group_name": "quantum", + "discovered": "2022-06-14 18:31:08.668229" + }, + { + "post_title": "M. Green and Company LLP", + "group_name": "quantum", + "discovered": "2022-06-14 18:31:11.099188" + }, + { + "post_title": "Purvis Industries", + "group_name": "alphv", + "discovered": "2022-06-14 18:31:15.308677" + }, + { + "post_title": "YMCA", + "group_name": "quantum", + "discovered": "2022-06-14 19:32:35.595894" + }, + { + "post_title": "Shred Station", + "group_name": "quantum", + "discovered": "2022-06-14 19:32:38.105601" + }, + { + "post_title": "gruppowasteital...", + "group_name": "lockbit2", + "discovered": "2022-06-14 22:35:28.150629" + }, + { + "post_title": "https://www.dgi...", + "group_name": "lockbit2", + "discovered": "2022-06-14 22:35:30.466124" + }, + { + "post_title": "enclosuresoluti", + "group_name": "lockbit2", + "discovered": "2022-06-14 23:30:06.715685" + }, + { + "post_title": "genusplc.com", + "group_name": "lockbit2", + "discovered": "2022-06-14 23:30:09.998829" + }, + { + "post_title": "medcoenergi.com", + "group_name": "lockbit2", + "discovered": "2022-06-14 23:30:12.291884" + }, + { + "post_title": "Magnum", + "group_name": "vicesociety", + "discovered": "2022-06-15 07:28:53.256645" + }, + { + "post_title": "RadiciGroup", + "group_name": "blackbasta", + "discovered": "2022-06-15 07:28:57.020250" + }, + { + "post_title": "dgi.gouv.ml", + "group_name": "lockbit2", + "discovered": "2022-06-15 08:29:04.120946" + }, + { + "post_title": "vanderpol's", + "group_name": "alphv", + "discovered": "2022-06-15 12:41:07.698279" + }, + { + "post_title": "MOLTOLUCE - HACKED AND DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-15 15:34:50.799615" + }, + { + "post_title": "Novelty Group", + "group_name": "vicesociety", + "discovered": "2022-06-15 23:30:52.523906" + }, + { + "post_title": "ardebolassessor", + "group_name": "lockbit2", + "discovered": "2022-06-16 07:25:25.761146" + }, + { + "post_title": "bestattung-", + "group_name": "lockbit2", + "discovered": "2022-06-16 14:27:43.237691" + }, + { + "post_title": "RG Alliance Group", + "group_name": "quantum", + "discovered": "2022-06-16 21:34:50.317954" + }, + { + "post_title": "bestatt", + "group_name": "lockbit2", + "discovered": "2022-06-17 10:37:18.384751" + }, + { + "post_title": "http://www.lund...", + "group_name": "lockbit2", + "discovered": "2022-06-17 15:44:00.822210" + }, + { + "post_title": "https://www.tb-...", + "group_name": "lockbit2", + "discovered": "2022-06-17 15:44:02.793729" + }, + { + "post_title": "keisei-", + "group_name": "lockbit2", + "discovered": "2022-06-17 16:31:12.141669" + }, + { + "post_title": "SOCOTEC", + "group_name": "suncrypt", + "discovered": "2022-06-18 02:21:01.442528" + }, + { + "post_title": "lundinroof.com", + "group_name": "lockbit2", + "discovered": "2022-06-18 15:49:56.422866" + }, + { + "post_title": "tb-kawashima.co...", + "group_name": "lockbit2", + "discovered": "2022-06-18 15:50:00.459854" + }, + { + "post_title": "vectorinf.com.b...", + "group_name": "lockbit2", + "discovered": "2022-06-18 15:50:03.085386" + }, + { + "post_title": "optoma", + "group_name": "lockbit2", + "discovered": "2022-06-19 09:44:59.425632" + }, + { + "post_title": "acac.com", + "group_name": "lockbit2", + "discovered": "2022-06-20 05:02:29.592225" + }, + { + "post_title": "emprint.com", + "group_name": "lockbit2", + "discovered": "2022-06-20 05:02:33.272992" + }, + { + "post_title": "plagepalace.com", + "group_name": "lockbit2", + "discovered": "2022-06-20 05:02:35.772779" + }, + { + "post_title": "kuwaitairways.c...", + "group_name": "lockbit2", + "discovered": "2022-06-20 16:36:28.191569" + }, + { + "post_title": "rhenus.group", + "group_name": "lockbit2", + "discovered": "2022-06-20 16:36:31.576571" + }, + { + "post_title": "builditinc.com", + "group_name": "lockbit2", + "discovered": "2022-06-20 19:43:46.711724" + }, + { + "post_title": "business.gov.om", + "group_name": "lockbit2", + "discovered": "2022-06-20 19:43:49.256389" + }, + { + "post_title": "agricolaandrea....", + "group_name": "lockbit2", + "discovered": "2022-06-21 06:41:40.856142" + }, + { + "post_title": "farmaciacirici....", + "group_name": "lockbit2", + "discovered": "2022-06-21 07:40:54.151620" + }, + { + "post_title": "sigma-alimentos...", + "group_name": "lockbit2", + "discovered": "2022-06-21 07:40:57.560555" + }, + { + "post_title": "Ospedale Macedonio Melloni", + "group_name": "vicesociety", + "discovered": "2022-06-21 15:44:07.664612" + }, + { + "post_title": "coteg-azam.fr", + "group_name": "lockbit2", + "discovered": "2022-06-21 16:39:32.500383" + }, + { + "post_title": "ecos-office.com", + "group_name": "lockbit2", + "discovered": "2022-06-21 16:39:34.298651" + }, + { + "post_title": "GRUPO mh", + "group_name": "blackbasta", + "discovered": "2022-06-21 21:36:36.772418" + }, + { + "post_title": "PARADOX", + "group_name": "blackbasta", + "discovered": "2022-06-21 21:36:39.264117" + }, + { + "post_title": "Crane Carrier Company", + "group_name": "blackbasta", + "discovered": "2022-06-21 21:36:41.155302" + }, + { + "post_title": "Mechanical Systems Company", + "group_name": "blackbasta", + "discovered": "2022-06-21 21:36:42.768615" + }, + { + "post_title": "Canaropa", + "group_name": "blackbasta", + "discovered": "2022-06-21 21:36:44.343588" + }, + { + "post_title": "Pilton Community College", + "group_name": "vicesociety", + "discovered": "2022-06-22 00:50:47.072234" + }, + { + "post_title": "PT Astra Honda Motor", + "group_name": "vicesociety", + "discovered": "2022-06-22 00:50:49.167636" + }, + { + "post_title": "Matco Electric", + "group_name": "alphv", + "discovered": "2022-06-22 11:35:48.825852" + }, + { + "post_title": "BAHRA ELECTRIC - HACKED AND MORE THEN 800 GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-06-22 20:43:23.590239" + }, + { + "post_title": "Reed Pope Law", + "group_name": "alphv", + "discovered": "2022-06-22 20:43:27.677659" + }, + { + "post_title": "COUNT+CARE | ENTEGA.DE", + "group_name": "alphv", + "discovered": "2022-06-22 21:41:43.119326" + }, + { + "post_title": "Arte Radiotelevisivo Argentino (Artear)", + "group_name": "hiveleak", + "discovered": "2022-06-23 13:50:17.240967" + }, + { + "post_title": "FAYAT", + "group_name": "everest", + "discovered": "2022-06-23 14:54:36.804787" + }, + { + "post_title": "Alphapointe", + "group_name": "hiveleak", + "discovered": "2022-06-23 16:58:21.995654" + }, + { + "post_title": "nutis.com", + "group_name": "alphv", + "discovered": "2022-06-23 19:52:49.995585" + }, + { + "post_title": "New Leak: Northern Data Systems", + "group_name": "ragnarlocker", + "discovered": "2022-06-23 22:45:06.797307" + }, + { + "post_title": "New Leak: Prudential LTG.", + "group_name": "ragnarlocker", + "discovered": "2022-06-24 16:59:07.705115" + }, + { + "post_title": "oak-brook.org", + "group_name": "lockbit2", + "discovered": "2022-06-26 03:21:12.496613" + }, + { + "post_title": "Elbit Systems of America", + "group_name": "blackbasta", + "discovered": "2022-06-26 03:21:29.817359" + }, + { + "post_title": "Napa Valley College", + "group_name": "blackbyte", + "discovered": "2022-06-26 04:14:17.035223" + }, + { + "post_title": "Medical University of Innsbruck", + "group_name": "vicesociety", + "discovered": "2022-06-26 18:45:48.718020" + }, + { + "post_title": "r1group", + "group_name": "cuba", + "discovered": "2022-06-27 11:53:12.174609" + }, + { + "post_title": "Bonneville Collections", + "group_name": "lorenz", + "discovered": "2022-06-27 17:50:23.469854" + }, + { + "post_title": "Ministry of Agriculture", + "group_name": "vicesociety", + "discovered": "2022-06-27 21:44:54.942418" + }, + { + "post_title": "datalit.it", + "group_name": "lockbit2", + "discovered": "2022-06-28 14:02:38.510305" + }, + { + "post_title": "Diskriter", + "group_name": "hiveleak", + "discovered": "2022-06-28 14:03:01.546945" + }, + { + "post_title": "SuperAlloy Industrial Co., Ltd.", + "group_name": "hiveleak", + "discovered": "2022-06-28 14:03:03.417241" + }, + { + "post_title": "Sembcorp Marine - Unpay", + "group_name": "cheers", + "discovered": "2022-06-28 20:59:31.324223" + }, + { + "post_title": "lonseal.com", + "group_name": "lockbit3", + "discovered": "2022-06-29 03:18:09.653874" + }, + { + "post_title": "metroappliancesandmore.com", + "group_name": "lockbit3", + "discovered": "2022-06-29 03:18:11.738027" + }, + { + "post_title": "New Peoples Bank", + "group_name": "blackbasta", + "discovered": "2022-06-29 10:36:37.822410" + }, + { + "post_title": "Avante Health Solutions", + "group_name": "quantum", + "discovered": "2022-06-29 18:27:04.733152" + }, + { + "post_title": "Apex", + "group_name": "snatch", + "discovered": "2022-06-29 22:30:11.064016" + }, + { + "post_title": "Crupi Group", + "group_name": "quantum", + "discovered": "2022-06-30 00:35:14.867758" + }, + { + "post_title": "diodes.com", + "group_name": "lockbit3", + "discovered": "2022-06-30 00:35:19.996317" + }, + { + "post_title": "https://", + "group_name": "cheers", + "discovered": "2022-06-30 20:30:51.467965" + }, + { + "post_title": "Atlantic Dialysis Management Services", + "group_name": "snatch", + "discovered": "2022-06-30 22:33:16.293563" + }, + { + "post_title": "Continental Management", + "group_name": "alphv", + "discovered": "2022-07-01 08:32:06.456924" + }, + { + "post_title": "An International Shipping Company - Unpay", + "group_name": "cheers", + "discovered": "2022-07-01 08:32:10.584509" + }, + { + "post_title": "Amalfitana Gas Srl", + "group_name": "everest", + "discovered": "2022-07-01 14:30:31.339224" + }, + { + "post_title": "HANSA KONTAKT", + "group_name": "alphv", + "discovered": "2022-07-01 14:30:39.592122" + }, + { + "post_title": "sigma-alimentos.com", + "group_name": "lockbit3", + "discovered": "2022-07-01 18:30:21.993353" + }, + { + "post_title": "Rocky", + "group_name": "hiveleak", + "discovered": "2022-07-02 18:45:57.960856" + }, + { + "post_title": "Cincinnati bell didn’t pay the ransom", + "group_name": "yanluowang", + "discovered": "2022-07-02 18:46:02.242140" + }, + { + "post_title": "Walmart was encrypted", + "group_name": "yanluowang", + "discovered": "2022-07-02 18:46:03.757313" + }, + { + "post_title": "Big data dump from various organizations", + "group_name": "yanluowang", + "discovered": "2022-07-02 18:46:08.058597" + }, + { + "post_title": "Greetings to havi.com and tmsw.com", + "group_name": "yanluowang", + "discovered": "2022-07-02 18:46:09.788579" + }, + { + "post_title": "Shorr.com leakage", + "group_name": "yanluowang", + "discovered": "2022-07-02 18:46:12.949629" + }, + { + "post_title": "axelcium.com", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:05.271029" + }, + { + "post_title": "slpcolombus.com", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:09.049454" + }, + { + "post_title": "plravocats.fr", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:13.843551" + }, + { + "post_title": "lesbureauxdelepargne.com", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:16.767868" + }, + { + "post_title": "faacgroup.com", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:18.834734" + }, + { + "post_title": "bosco-avocats.com", + "group_name": "lockbit3", + "discovered": "2022-07-02 22:36:20.597271" + }, + { + "post_title": "AG", + "group_name": "hiveleak", + "discovered": "2022-07-03 08:38:48.204989" + }, + { + "post_title": "V2 Logistics Corp", + "group_name": "blackbasta", + "discovered": "2022-07-03 14:31:44.879324" + }, + { + "post_title": "CAPSONIC", + "group_name": "blackbasta", + "discovered": "2022-07-03 14:31:47.672570" + }, + { + "post_title": "NETWORK4CARS", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:30.329905" + }, + { + "post_title": "WWSTEELE", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:32.781123" + }, + { + "post_title": "Massy Distribution Limited", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:34.980901" + }, + { + "post_title": "YURTICIKARGO", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:36.851454" + }, + { + "post_title": "KDE", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:39.338959" + }, + { + "post_title": "AUM", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:40.995198" + }, + { + "post_title": "CAN.COM", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:43.222369" + }, + { + "post_title": "MHIRE", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:44.987026" + }, + { + "post_title": "DIRECTFERRIES", + "group_name": "hiveleak", + "discovered": "2022-07-04 08:35:46.592267" + }, + { + "post_title": "Holland CPA", + "group_name": "alphv", + "discovered": "2022-07-04 10:38:45.599331" + }, + { + "post_title": "Hamlyns Limited", + "group_name": "hiveleak", + "discovered": "2022-07-04 14:40:51.102084" + }, + { + "post_title": "Yurtiçi Kargo", + "group_name": "hiveleak", + "discovered": "2022-07-04 18:30:58.972532" + }, + { + "post_title": "Vectalia group", + "group_name": "vicesociety", + "discovered": "2022-07-04 22:30:41.753435" + }, + { + "post_title": "Wis-Pak, Inc", + "group_name": "lorenz", + "discovered": "2022-07-05 08:32:58.772835" + }, + { + "post_title": "Pontal Engineering Constructions and Developments", + "group_name": "everest", + "discovered": "2022-07-05 18:32:06.200042" + }, + { + "post_title": "Sinclair Wilson", + "group_name": "alphv", + "discovered": "2022-07-06 10:31:09.419746" + }, + { + "post_title": "adlerdisplay.com | Adler Display", + "group_name": "alphv", + "discovered": "2022-07-06 10:31:11.507045" + }, + { + "post_title": "DPP", + "group_name": "blackbasta", + "discovered": "2022-07-06 14:45:13.781483" + }, + { + "post_title": "cabbageinc.com", + "group_name": "lockbit3", + "discovered": "2022-07-06 14:45:17.446507" + }, + { + "post_title": "alpachem.com", + "group_name": "lockbit3", + "discovered": "2022-07-06 14:45:19.309887" + }, + { + "post_title": "Lamoille Health", + "group_name": "blackbyte", + "discovered": "2022-07-06 18:31:40.721083" + }, + { + "post_title": "Dusit D2 Kenz Hotel Dubai", + "group_name": "alphv", + "discovered": "2022-07-06 18:31:57.842770" + }, + { + "post_title": "Gatewayrehab", + "group_name": "blackbyte", + "discovered": "2022-07-06 20:26:46.206817" + }, + { + "post_title": "JBKLDMN", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:08.500325" + }, + { + "post_title": "SCHMIDT Gruppe Service GmbH", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:11.188540" + }, + { + "post_title": "LOSSEWERK", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:13.666873" + }, + { + "post_title": "Roche Bobois", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:15.542602" + }, + { + "post_title": "Jinny Beauty Supply", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:18.556762" + }, + { + "post_title": "DEKIMO", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:20.472835" + }, + { + "post_title": "Sierra Pacific Industries", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:22.236412" + }, + { + "post_title": "TMI", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:25.179008" + }, + { + "post_title": "MAIN", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:27.261712" + }, + { + "post_title": "OLYMPIATILE", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:29.267616" + }, + { + "post_title": "Wipro HealthPlan Services", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:30.947532" + }, + { + "post_title": "LYDECKER", + "group_name": "blackbasta", + "discovered": "2022-07-06 20:27:33.052923" + }, + { + "post_title": "RENZEL", + "group_name": "blackbasta", + "discovered": "2022-07-06 22:22:56.286623" + }, + { + "post_title": "LOKALTOG", + "group_name": "blackbasta", + "discovered": "2022-07-06 22:22:58.504151" + }, + { + "post_title": "The Wiener Zeitung media group", + "group_name": "blackbasta", + "discovered": "2022-07-07 00:38:01.254926" + }, + { + "post_title": "carnbrea.com.au", + "group_name": "lockbit3", + "discovered": "2022-07-07 03:11:51.625293" + }, + { + "post_title": "stm-com-tw", + "group_name": "cuba", + "discovered": "2022-07-07 10:24:16.853084" + }, + { + "post_title": "lapostemobile.fr", + "group_name": "lockbit3", + "discovered": "2022-07-07 20:28:12.677219" + }, + { + "post_title": "OLYMPIA", + "group_name": "blackbasta", + "discovered": "2022-07-07 22:24:45.867923" + }, + { + "post_title": "acac.com", + "group_name": "lockbit3", + "discovered": "2022-07-08 16:27:46.343078" + }, + { + "post_title": "emprint.com", + "group_name": "lockbit3", + "discovered": "2022-07-09 06:23:08.982625" + }, + { + "post_title": "Hydraelectric", + "group_name": "alphv", + "discovered": "2022-07-11 10:27:34.622395" + }, + { + "post_title": "Bandai Namco", + "group_name": "alphv", + "discovered": "2022-07-11 10:27:37.409652" + }, + { + "post_title": "The Royal Commission for Riyadh City (RCRC)", + "group_name": "alphv", + "discovered": "2022-07-11 12:30:05.486742" + }, + { + "post_title": "PSA", + "group_name": "blackbyte", + "discovered": "2022-07-11 14:19:06.684222" + }, + { + "post_title": "Pontal Engineering Constructions and Developments Files Leak", + "group_name": "everest", + "discovered": "2022-07-11 14:19:17.254380" + }, + { + "post_title": "Uppco", + "group_name": "lorenz", + "discovered": "2022-07-11 18:37:09.236588" + }, + { + "post_title": "Summit Care", + "group_name": "ransomhouse", + "discovered": "2022-07-11 18:37:31.112183" + }, + { + "post_title": "American International Industries", + "group_name": "quantum", + "discovered": "2022-07-12 08:32:15.729462" + }, + { + "post_title": "Podhurst Orseck", + "group_name": "alphv", + "discovered": "2022-07-12 22:20:45.587650" + }, + { + "post_title": "duda.com", + "group_name": "alphv", + "discovered": "2022-07-13 14:26:30.436930" + }, + { + "post_title": "Epec.PL - Lied about the absence of Leak", + "group_name": "ragnarlocker", + "discovered": "2022-07-13 18:24:46.434893" + }, + { + "post_title": "Authentic Brands Group", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:02.316788" + }, + { + "post_title": "GROUP4 AUSTRALIA", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:04.384645" + }, + { + "post_title": "APETITO", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:06.539833" + }, + { + "post_title": "Exela Technologies", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:08.207521" + }, + { + "post_title": "AdaptIT", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:10.579262" + }, + { + "post_title": "RTVCM", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:12.718681" + }, + { + "post_title": "SANDO", + "group_name": "hiveleak", + "discovered": "2022-07-13 18:25:14.709287" + }, + { + "post_title": "Gresco", + "group_name": "lorenz", + "discovered": "2022-07-13 20:21:53.232449" + }, + { + "post_title": "Biothane usa", + "group_name": "lorenz", + "discovered": "2022-07-13 20:21:55.322042" + }, + { + "post_title": "Van Ausdall & Farrar, inc", + "group_name": "lorenz", + "discovered": "2022-07-13 20:21:57.169973" + }, + { + "post_title": "Maxey Moverley", + "group_name": "0mega", + "discovered": "2022-07-14 00:20:20.176178" + }, + { + "post_title": "Mooresville Schools", + "group_name": "bianlian", + "discovered": "2022-07-14 00:20:23.051488" + }, + { + "post_title": "High Power Technical Services", + "group_name": "bianlian", + "discovered": "2022-07-14 00:20:25.175839" + }, + { + "post_title": "Anderson Insurance Associates", + "group_name": "bianlian", + "discovered": "2022-07-14 00:20:27.043896" + }, + { + "post_title": "Mackenzie Medical", + "group_name": "bianlian", + "discovered": "2022-07-14 00:20:28.845758" + }, + { + "post_title": "syredis.fr", + "group_name": "redalert", + "discovered": "2022-07-14 00:20:30.622287" + }, + { + "post_title": "etgworld.com", + "group_name": "lockbit3", + "discovered": "2022-07-14 07:56:17.529670" + }, + { + "post_title": "iis.ac.uk", + "group_name": "lockbit3", + "discovered": "2022-07-14 07:56:19.602727" + }, + { + "post_title": "vlp.nl", + "group_name": "lockbit3", + "discovered": "2022-07-14 07:56:21.507919" + }, + { + "post_title": "ZEUS Scientific", + "group_name": "quantum", + "discovered": "2022-07-14 14:36:48.187826" + }, + { + "post_title": "genusplc.com", + "group_name": "lockbit3", + "discovered": "2022-07-14 14:36:53.065651" + }, + { + "post_title": "RALLYE-DOM", + "group_name": "hiveleak", + "discovered": "2022-07-14 16:26:46.536427" + }, + { + "post_title": "CITY-FURNITURE", + "group_name": "hiveleak", + "discovered": "2022-07-14 16:26:48.963201" + }, + { + "post_title": "FMT", + "group_name": "hiveleak", + "discovered": "2022-07-14 16:26:51.194474" + }, + { + "post_title": "Behavioral Health System", + "group_name": "hiveleak", + "discovered": "2022-07-14 16:26:52.925010" + }, + { + "post_title": "frederickco.gov", + "group_name": "lockbit3", + "discovered": "2022-07-14 16:26:55.276190" + }, + { + "post_title": "Unisuper S.A.", + "group_name": "alphv", + "discovered": "2022-07-14 18:27:28.695457" + }, + { + "post_title": "Duda Farm Fresh Foods A. Duda & Sons , Inc. Duda A. Duda & Sons Duda Farm Fresh Foods ", + "group_name": "alphv", + "discovered": "2022-07-14 18:27:33.983747" + }, + { + "post_title": "Rain the Growth Agency", + "group_name": "bianlian", + "discovered": "2022-07-14 22:31:12.425777" + }, + { + "post_title": "vahanen.com", + "group_name": "redalert", + "discovered": "2022-07-15 03:17:21.050503" + }, + { + "post_title": "Carrolls Irish Gifts", + "group_name": "hiveleak", + "discovered": "2022-07-16 16:34:06.849925" + }, + { + "post_title": "Conway Electrics", + "group_name": "bianlian", + "discovered": "2022-07-16 20:35:21.215541" + }, + { + "post_title": "VERITAS Solicitors", + "group_name": "bianlian", + "discovered": "2022-07-16 20:35:23.310352" + }, + { + "post_title": "ISGEC Heavy Engineering", + "group_name": "bianlian", + "discovered": "2022-07-16 20:35:25.272293" + }, + { + "post_title": "sig.id", + "group_name": "lockbit3", + "discovered": "2022-07-17 02:08:51.125284" + }, + { + "post_title": "Dillon Precision Products", + "group_name": "blackbasta", + "discovered": "2022-07-18 09:43:40.943077" + }, + { + "post_title": "Wallwork Truck Center", + "group_name": "blackbasta", + "discovered": "2022-07-18 09:43:43.922085" + }, + { + "post_title": "KNAUF", + "group_name": "blackbasta", + "discovered": "2022-07-18 09:43:47.178024" + }, + { + "post_title": "An International Shipping Company - Paid", + "group_name": "cheers", + "discovered": "2022-07-18 12:41:56.092446" + }, + { + "post_title": "An British Financial Company -Unpay", + "group_name": "cheers", + "discovered": "2022-07-18 13:57:51.602815" + }, + { + "post_title": "aresfoods.ca", + "group_name": "lockbit3", + "discovered": "2022-07-18 14:53:32.703277" + }, + { + "post_title": "integrate.ch", + "group_name": "lockbit3", + "discovered": "2022-07-18 14:53:34.776689" + }, + { + "post_title": "bizframe.co.za", + "group_name": "lockbit3", + "discovered": "2022-07-18 16:42:55.008747" + }, + { + "post_title": "FederalBank / Fedfina", + "group_name": "everest", + "discovered": "2022-07-18 17:42:12.601341" + }, + { + "post_title": "Broshuis | Driving innovation", + "group_name": "quantum", + "discovered": "2022-07-18 23:50:01.142788" + }, + { + "post_title": "Autohaus", + "group_name": "quantum", + "discovered": "2022-07-19 08:36:15.111348" + }, + { + "post_title": "Delon Hampton & Associates, Chartered", + "group_name": "quantum", + "discovered": "2022-07-19 08:36:17.625957" + }, + { + "post_title": "clestra.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:32:58.816277" + }, + { + "post_title": "columbiagrain.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:33:00.873626" + }, + { + "post_title": "cpicfiber.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:33:03.227488" + }, + { + "post_title": "fedefarma.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:33:04.993057" + }, + { + "post_title": "madcoenergi.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:33:06.801784" + }, + { + "post_title": "rovagnati.it", + "group_name": "lockbit3", + "discovered": "2022-07-19 12:33:08.508641" + }, + { + "post_title": "crbrandsinc.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 14:39:26.244051" + }, + { + "post_title": "cristianaspinecenter.com", + "group_name": "lockbit3", + "discovered": "2022-07-19 14:39:28.339500" + }, + { + "post_title": ".com", + "group_name": "bianlian", + "discovered": "2022-07-19 17:37:40.217728" + }, + { + "post_title": "GENSCO Inc. - allows Leak", + "group_name": "ragnarlocker", + "discovered": "2022-07-19 18:32:22.659125" + }, + { + "post_title": "An Insurance Company", + "group_name": "cheers", + "discovered": "2022-07-19 18:32:38.955515" + }, + { + "post_title": "San Luis Coastal Unified", + "group_name": "vicesociety", + "discovered": "2022-07-19 20:38:00.436840" + }, + { + "post_title": "XQUADRAT GmbH", + "group_name": "vicesociety", + "discovered": "2022-07-19 20:38:03.380616" + }, + { + "post_title": "FederalBank/Fedfina.part2", + "group_name": "everest", + "discovered": "2022-07-20 00:53:46.810587" + }, + { + "post_title": "addconsult.nl", + "group_name": "lockbit3", + "discovered": "2022-07-20 09:41:47.308597" + }, + { + "post_title": "coastalmedps.com", + "group_name": "lockbit3", + "discovered": "2022-07-20 09:41:49.989113" + }, + { + "post_title": "competencia.com.ec", + "group_name": "lockbit3", + "discovered": "2022-07-20 10:34:04.535997" + }, + { + "post_title": "The Minka Group", + "group_name": "blackbasta", + "discovered": "2022-07-20 11:41:13.697553" + }, + { + "post_title": "COS2000", + "group_name": "blackbasta", + "discovered": "2022-07-20 12:44:47.461579" + }, + { + "post_title": "LaVan & Neidenberg", + "group_name": "hiveleak", + "discovered": "2022-07-20 13:45:28.885709" + }, + { + "post_title": "keystonelegal.co.uk", + "group_name": "redalert", + "discovered": "2022-07-20 15:39:35.972986" + }, + { + "post_title": "lexingtonnational.com", + "group_name": "lockbit3", + "discovered": "2022-07-20 21:54:38.474428" + }, + { + "post_title": "mec.com", + "group_name": "lockbit3", + "discovered": "2022-07-20 21:54:40.506284" + }, + { + "post_title": "Edenfield", + "group_name": "vicesociety", + "discovered": "2022-07-20 22:52:46.716421" + }, + { + "post_title": "mwd.digital", + "group_name": "lockbit3", + "discovered": "2022-07-21 09:00:39.691236" + }, + { + "post_title": "ocrex.com", + "group_name": "lockbit3", + "discovered": "2022-07-21 10:59:14.763023" + }, + { + "post_title": "site-technology", + "group_name": "cuba", + "discovered": "2022-07-21 12:57:07.795500" + }, + { + "post_title": "a2-pas.fr", + "group_name": "lockbit3", + "discovered": "2022-07-21 12:57:17.274606" + }, + { + "post_title": "HANDLER Bau GmbH", + "group_name": "alphv", + "discovered": "2022-07-21 21:57:30.501759" + }, + { + "post_title": "CHDE POLSKA", + "group_name": "vicesociety", + "discovered": "2022-07-21 22:58:31.960753" + }, + { + "post_title": "FederalBank/Fedfina.part3", + "group_name": "everest", + "discovered": "2022-07-21 23:56:40.232737" + }, + { + "post_title": "bizebra.com", + "group_name": "lockbit3", + "discovered": "2022-07-22 08:55:33.083461" + }, + { + "post_title": "townofstmarys.com", + "group_name": "lockbit3", + "discovered": "2022-07-22 14:58:44.318708" + }, + { + "post_title": "zhulian.co.th", + "group_name": "lockbit3", + "discovered": "2022-07-22 14:58:46.998125" + }, + { + "post_title": "osde.com.ar", + "group_name": "lockbit3", + "discovered": "2022-07-22 18:50:59.769901" + }, + { + "post_title": "taylorstafford.com", + "group_name": "lockbit3", + "discovered": "2022-07-22 18:51:02.100379" + }, + { + "post_title": "yong mao environmental tech. co.,ltd", + "group_name": "lockbit3", + "discovered": "2022-07-22 22:50:09.850076" + }, + { + "post_title": "laneprint.com.au", + "group_name": "lockbit3", + "discovered": "2022-07-22 22:50:11.938077" + }, + { + "post_title": "lanormandise.fr", + "group_name": "lockbit3", + "discovered": "2022-07-22 22:50:13.884624" + }, + { + "post_title": "roedeanschool.co.za", + "group_name": "lockbit3", + "discovered": "2022-07-23 08:50:21.380386" + }, + { + "post_title": "Hometrust Mortgage Company", + "group_name": "alphv", + "discovered": "2022-07-23 13:01:07.713704" + }, + { + "post_title": "KKJM Lawfirm", + "group_name": "alphv", + "discovered": "2022-07-23 22:51:17.987814" + }, + { + "post_title": "daytonsuperior.com", + "group_name": "lockbit3", + "discovered": "2022-07-24 14:50:35.851908" + }, + { + "post_title": "riken.co.jp", + "group_name": "lockbit3", + "discovered": "2022-07-24 16:41:23.038339" + }, + { + "post_title": "SRM Technologies", + "group_name": "alphv", + "discovered": "2022-07-24 20:52:29.490718" + }, + { + "post_title": "agenziaentrate.gov.it", + "group_name": "lockbit3", + "discovered": "2022-07-25 10:48:16.005985" + }, + { + "post_title": "legacy-hospitality.com", + "group_name": "lockbit3", + "discovered": "2022-07-25 10:48:19.496698" + }, + { + "post_title": "overseas-ast.com", + "group_name": "lockbit3", + "discovered": "2022-07-25 10:48:21.101091" + }, + { + "post_title": "eclipse-print.com", + "group_name": "lockbit3", + "discovered": "2022-07-25 16:56:29.967485" + }, + { + "post_title": "SPINNEYS.COM", + "group_name": "clop", + "discovered": "2022-07-25 18:54:00.794665" + }, + { + "post_title": "OptiProERP is a leading global provider of industry-specific ERP solutions for manufacture", + "group_name": "revil", + "discovered": "2022-07-25 18:54:07.904400" + }, + { + "post_title": "ginko.com.tw", + "group_name": "lockbit3", + "discovered": "2022-07-25 20:57:52.429553" + }, + { + "post_title": "APPLEXUS.COM", + "group_name": "clop", + "discovered": "2022-07-25 23:07:07.405490" + }, + { + "post_title": "WARTSILA.COM - HACKED AND MORE THEN 2000 GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-07-25 23:07:19.707535" + }, + { + "post_title": "sppc.com.sa - HACKED and more then 900GB data leaked", + "group_name": "lv", + "discovered": "2022-07-25 23:07:21.622900" + }, + { + "post_title": "ryanhanley.ie - HACKED AND MORE THEN 200GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-07-25 23:07:23.536932" + }, + { + "post_title": "FederalBank/Fedfina.part4", + "group_name": "everest", + "discovered": "2022-07-26 01:09:43.920951" + }, + { + "post_title": "Baltholding OÜ", + "group_name": "onyx", + "discovered": "2022-07-26 08:59:16.266127" + }, + { + "post_title": "Empress EMS", + "group_name": "hiveleak", + "discovered": "2022-07-26 17:13:39.418603" + }, + { + "post_title": "Artistic Stairs & Railings", + "group_name": "onyx", + "discovered": "2022-07-26 17:13:44.460695" + }, + { + "post_title": "WAYAN NATURAL WEAR", + "group_name": "onyx", + "discovered": "2022-07-26 17:13:46.390159" + }, + { + "post_title": "CUCA FRESCA", + "group_name": "onyx", + "discovered": "2022-07-26 17:13:48.070484" + }, + { + "post_title": "sieam.fr", + "group_name": "lockbit3", + "discovered": "2022-07-26 17:13:50.245184" + }, + { + "post_title": "ymaunivers.com", + "group_name": "lockbit3", + "discovered": "2022-07-26 17:13:52.735143" + }, + { + "post_title": "cheungwoh.com.sg", + "group_name": "lockbit3", + "discovered": "2022-07-26 20:56:48.895651" + }, + { + "post_title": "studioteruzzi.com - HACKED AND MORE THEN 80GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-07-27 03:42:30.040253" + }, + { + "post_title": "Weidmueller", + "group_name": "hiveleak", + "discovered": "2022-07-27 13:03:47.673430" + }, + { + "post_title": "CIMEX", + "group_name": "hiveleak", + "discovered": "2022-07-27 14:52:32.571272" + }, + { + "post_title": "groupe-helios.com", + "group_name": "lockbit3", + "discovered": "2022-07-27 14:52:37.879816" + }, + { + "post_title": "maldegem.be", + "group_name": "lockbit3", + "discovered": "2022-07-27 14:52:39.764347" + }, + { + "post_title": "JOHN A. BODZIAK ARCHITECT AIA", + "group_name": "alphv", + "discovered": "2022-07-28 08:48:58.791562" + }, + { + "post_title": "correounir.com.ar", + "group_name": "lockbit3", + "discovered": "2022-07-28 14:55:36.206453" + }, + { + "post_title": "coarc.org", + "group_name": "redalert", + "discovered": "2022-07-28 14:55:38.962792" + }, + { + "post_title": "tnq.co.in", + "group_name": "alphv", + "discovered": "2022-07-28 16:50:19.399018" + }, + { + "post_title": "herc.com.br", + "group_name": "alphv", + "discovered": "2022-07-28 16:50:22.103221" + }, + { + "post_title": "armassist.ie", + "group_name": "lockbit3", + "discovered": "2022-07-28 18:58:36.732641" + }, + { + "post_title": "fruca.es", + "group_name": "lockbit3", + "discovered": "2022-07-28 18:58:39.238462" + }, + { + "post_title": "Fandeli", + "group_name": "lorenz", + "discovered": "2022-07-29 00:57:58.668529" + }, + { + "post_title": "Hong Kong Special Care Dentistry Association Limited", + "group_name": "lv", + "discovered": "2022-07-29 08:47:53.951617" + }, + { + "post_title": "autoliv.com", + "group_name": "lockbit3", + "discovered": "2022-07-29 18:48:34.006793" + }, + { + "post_title": "Creos Luxembourg", + "group_name": "alphv", + "discovered": "2022-07-29 22:54:22.881361" + }, + { + "post_title": "emunworks.com", + "group_name": "lockbit3", + "discovered": "2022-07-31 03:13:06.629473" + }, + { + "post_title": "vytelle.com", + "group_name": "lockbit3", + "discovered": "2022-07-31 08:33:38.476151" + }, + { + "post_title": "get.es", + "group_name": "lockbit3", + "discovered": "2022-07-31 20:59:31.885668" + }, + { + "post_title": "BAFNAGROUP.COM - HACKED AND MORE THEN 20 GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-07-31 22:50:40.445817" + }, + { + "post_title": "shopper360.com.my", + "group_name": "lockbit3", + "discovered": "2022-08-01 10:52:40.418053" + }, + { + "post_title": "ARISA CORREDORES DE SEGUROS", + "group_name": "onyx", + "discovered": "2022-08-01 16:48:28.744386" + }, + { + "post_title": "preflooring.com", + "group_name": "lockbit3", + "discovered": "2022-08-01 22:43:46.108652" + }, + { + "post_title": "scohil.com", + "group_name": "lockbit3", + "discovered": "2022-08-01 22:43:48.653964" + }, + { + "post_title": "casapellas.com", + "group_name": "lockbit3", + "discovered": "2022-08-02 01:10:25.329021" + }, + { + "post_title": "Puma Biotechnology - decided to allow Leaks", + "group_name": "ragnarlocker", + "discovered": "2022-08-02 10:43:58.981504" + }, + { + "post_title": "MarioSinacola", + "group_name": "alphv", + "discovered": "2022-08-02 12:51:21.071983" + }, + { + "post_title": "kangaroo.vn", + "group_name": "lockbit3", + "discovered": "2022-08-02 12:51:25.482439" + }, + { + "post_title": "obriengroupaustralia.com.au", + "group_name": "lockbit3", + "discovered": "2022-08-02 12:51:27.102488" + }, + { + "post_title": "tekinox.it", + "group_name": "lockbit3", + "discovered": "2022-08-02 12:51:29.098634" + }, + { + "post_title": "Doosan Group", + "group_name": "revil", + "discovered": "2022-08-02 18:39:59.243685" + }, + { + "post_title": "Trib Total Media (USA)", + "group_name": "daixin", + "discovered": "2022-08-03 03:26:52.956198" + }, + { + "post_title": "Fitzgibbon Hospital (USA)", + "group_name": "daixin", + "discovered": "2022-08-03 03:26:55.376462" + }, + { + "post_title": "AIIM", + "group_name": "alphv", + "discovered": "2022-08-03 12:59:43.359844" + }, + { + "post_title": "STTLK", + "group_name": "lv", + "discovered": "2022-08-04 08:52:28.700982" + }, + { + "post_title": "ENN Group", + "group_name": "hiveleak", + "discovered": "2022-08-04 13:00:30.458333" + }, + { + "post_title": "BEESENSE", + "group_name": "quantum", + "discovered": "2022-08-04 14:57:55.465908" + }, + { + "post_title": "Liftow LTD", + "group_name": "quantum", + "discovered": "2022-08-04 14:57:57.481513" + }, + { + "post_title": "WARTSILA DATA - ATTENTION !!!", + "group_name": "lv", + "discovered": "2022-08-04 17:00:12.130096" + }, + { + "post_title": "SEMIKRON - EXTREMELY LOW LEVEL OF CYBERSECURITY. 2 TB OF CORPORATE DATA STOLEN", + "group_name": "lv", + "discovered": "2022-08-04 23:00:48.607297" + }, + { + "post_title": "AD Consulting Group", + "group_name": "alphv", + "discovered": "2022-08-04 23:00:52.135059" + }, + { + "post_title": "Borough of Union Beach", + "group_name": "onyx", + "discovered": "2022-08-05 15:07:48.687119" + }, + { + "post_title": "Grohmann Aluworks GmbH & Co", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.007215" + }, + { + "post_title": "UNIWELL Rohrsysteme GmbH & Co.", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.134109" + }, + { + "post_title": "Wilks Tire & Battery Service", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.188100" + }, + { + "post_title": "Blairex Laboratories, Inc.", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.353998" + }, + { + "post_title": "The O'Regan", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.449642" + }, + { + "post_title": "Love, Barnes & McKew Insurance Adjusters", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.513223" + }, + { + "post_title": "Jakob Becker", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.590440" + }, + { + "post_title": "Young & Pratt", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.674051" + }, + { + "post_title": "BOERNER-GRUPPE", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.759349" + }, + { + "post_title": "RBBUSA", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.825270" + }, + { + "post_title": "CREMO", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.906775" + }, + { + "post_title": "Trade-Mark Industrial Inc.", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:11.995000" + }, + { + "post_title": "WENZEL + WENZEL", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.045868" + }, + { + "post_title": "paradise", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.135213" + }, + { + "post_title": "WALLWORKINC", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.185784" + }, + { + "post_title": "Montrose Environmental Group, Inc", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.254844" + }, + { + "post_title": "MAI", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.335777" + }, + { + "post_title": "ttdwest", + "group_name": "blackbasta", + "discovered": "2022-08-06 10:13:12.504112" + }, + { + "post_title": "hatcherins.com", + "group_name": "lockbit3", + "discovered": "2022-08-06 14:56:56.626557" + }, + { + "post_title": "newwestmetals.com", + "group_name": "lockbit3", + "discovered": "2022-08-06 14:56:59.104943" + }, + { + "post_title": "trialpro.com", + "group_name": "lockbit3", + "discovered": "2022-08-06 14:57:00.812029" + }, + { + "post_title": "wrschool.net", + "group_name": "lockbit3", + "discovered": "2022-08-06 14:57:02.563956" + }, + { + "post_title": "unimasters.com", + "group_name": "lockbit3", + "discovered": "2022-08-06 16:58:35.260204" + }, + { + "post_title": "ring-plastik.de", + "group_name": "lockbit3", + "discovered": "2022-08-07 15:08:23.293941" + }, + { + "post_title": "versma.com", + "group_name": "lockbit3", + "discovered": "2022-08-07 15:08:26.210039" + }, + { + "post_title": "Artic Building Services", + "group_name": "alphv", + "discovered": "2022-08-08 10:52:50.606725" + }, + { + "post_title": "Freyr Solutions", + "group_name": "quantum", + "discovered": "2022-08-08 12:48:45.873173" + }, + { + "post_title": "An Turkey Certified Public Accountancy Firms -Unpay", + "group_name": "cheers", + "discovered": "2022-08-09 03:34:47.958234" + }, + { + "post_title": "An Insurance Company -Paid", + "group_name": "cheers", + "discovered": "2022-08-09 03:34:50.557865" + }, + { + "post_title": "FOSUN.COM", + "group_name": "lockbit3", + "discovered": "2022-08-09 10:44:24.631990" + }, + { + "post_title": "ISTA International GmbH", + "group_name": "daixin", + "discovered": "2022-08-09 10:44:27.550608" + }, + { + "post_title": "valverdehotel.com", + "group_name": "lv", + "discovered": "2022-08-09 12:52:15.009640" + }, + { + "post_title": "ah-a.de", + "group_name": "lockbit3", + "discovered": "2022-08-09 16:46:22.989375" + }, + { + "post_title": "8 Italy Districts", + "group_name": "ransomhouse", + "discovered": "2022-08-09 21:04:50.311476" + }, + { + "post_title": "Hot news straight from Cisco", + "group_name": "yanluowang", + "discovered": "2022-08-10 16:48:46.051826" + }, + { + "post_title": "okcu.edu", + "group_name": "lockbit3", + "discovered": "2022-08-10 18:53:26.946043" + }, + { + "post_title": "whitworth.edu", + "group_name": "lockbit3", + "discovered": "2022-08-10 18:53:29.061338" + }, + { + "post_title": "beckerlaw.com", + "group_name": "lockbit3", + "discovered": "2022-08-13 06:56:45.153774" + }, + { + "post_title": "besttaxfiler.com", + "group_name": "lockbit3", + "discovered": "2022-08-13 06:56:48.253953" + }, + { + "post_title": "centuryaluminum.com", + "group_name": "lockbit3", + "discovered": "2022-08-13 06:56:50.396794" + }, + { + "post_title": "Fast Pace Health", + "group_name": "alphv", + "discovered": "2022-08-13 16:46:10.891222" + }, + { + "post_title": "pinnick.co.uk", + "group_name": "lockbit3", + "discovered": "2022-08-13 16:46:15.987053" + }, + { + "post_title": "qualitymedicalinc.com", + "group_name": "lockbit3", + "discovered": "2022-08-13 16:46:18.429670" + }, + { + "post_title": "vsainc.com", + "group_name": "lockbit3", + "discovered": "2022-08-13 18:49:48.019501" + }, + { + "post_title": "STTLK - HACKED AND MORE THEN 200GB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-08-13 21:03:24.887598" + }, + { + "post_title": "TriState HVAC Equipment", + "group_name": "hiveleak", + "discovered": "2022-08-14 10:48:01.867241" + }, + { + "post_title": "ELEFONDATI SRL - WAS HACKED. 20 GB OF SENSITIVE DATA STOLEN", + "group_name": "lv", + "discovered": "2022-08-15 07:04:02.389541" + }, + { + "post_title": "altaadhod.com", + "group_name": "lockbit3", + "discovered": "2022-08-16 14:53:51.364731" + }, + { + "post_title": "ospreyvideo.com", + "group_name": "lockbit3", + "discovered": "2022-08-16 14:53:54.458931" + }, + { + "post_title": "tier1techs.screenconnect.com", + "group_name": "lockbit3", + "discovered": "2022-08-16 14:53:56.358779" + }, + { + "post_title": "Vygon Spain", + "group_name": "vicesociety", + "discovered": "2022-08-16 20:45:38.429582" + }, + { + "post_title": "porcelanosa-usa.com", + "group_name": "lockbit3", + "discovered": "2022-08-16 22:55:25.261322" + }, + { + "post_title": "Apex Capital Corp", + "group_name": "blackbyte", + "discovered": "2022-08-17 05:33:40.687042" + }, + { + "post_title": "Accelya", + "group_name": "alphv", + "discovered": "2022-08-17 20:55:23.900071" + }, + { + "post_title": "Stratford University", + "group_name": "snatch", + "discovered": "2022-08-17 22:55:41.897906" + }, + { + "post_title": "File-tree of Tang Capital", + "group_name": "ragnarlocker", + "discovered": "2022-08-18 12:57:50.665028" + }, + { + "post_title": "WOOTTON ACADEMY TRUST", + "group_name": "hiveleak", + "discovered": "2022-08-18 12:58:08.734839" + }, + { + "post_title": "An British Financial Company -Public", + "group_name": "cheers", + "discovered": "2022-08-18 12:58:13.246399" + }, + { + "post_title": "megal.com", + "group_name": "lockbit3", + "discovered": "2022-08-18 15:05:21.013379" + }, + { + "post_title": "entrust.com", + "group_name": "lockbit3", + "discovered": "2022-08-18 20:56:15.485275" + }, + { + "post_title": "traveldoc.ca", + "group_name": "lockbit3", + "discovered": "2022-08-18 20:56:18.445711" + }, + { + "post_title": "wabteccorp.com", + "group_name": "lockbit3", + "discovered": "2022-08-18 20:56:20.232356" + }, + { + "post_title": "Consejo Superior de", + "group_name": "vicesociety", + "discovered": "2022-08-18 22:50:40.744462" + }, + { + "post_title": "Department of Indre-et-Loire", + "group_name": "vicesociety", + "discovered": "2022-08-18 22:50:42.748416" + }, + { + "post_title": "Shaw & Slavsky", + "group_name": "quantum", + "discovered": "2022-08-19 03:38:20.805681" + }, + { + "post_title": "PROSOL", + "group_name": "vicesociety", + "discovered": "2022-08-19 03:38:25.142787" + }, + { + "post_title": "Reiter Affiliated Companies", + "group_name": "hiveleak", + "discovered": "2022-08-19 08:54:14.350726" + }, + { + "post_title": "Greece pipeline company breached - DESFA", + "group_name": "ragnarlocker", + "discovered": "2022-08-19 18:42:09.604377" + }, + { + "post_title": "*.skifgroup.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:42.447167" + }, + { + "post_title": "*.feesh.ch", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:45.061614" + }, + { + "post_title": "*.directfn.net", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:46.719633" + }, + { + "post_title": "*.kru.ac.th", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:50.882177" + }, + { + "post_title": "*.kodhosting.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:52.642529" + }, + { + "post_title": "*.guneshosting.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:54.156360" + }, + { + "post_title": "*.vps-vds.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:55.763440" + }, + { + "post_title": "*.cco1.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:57.523236" + }, + { + "post_title": "*.iperactive.com.ar", + "group_name": "icefire", + "discovered": "2022-08-20 09:49:59.138587" + }, + { + "post_title": "*.bestservers.pro", + "group_name": "icefire", + "discovered": "2022-08-20 09:50:00.658148" + }, + { + "post_title": "*.algotrader.com", + "group_name": "icefire", + "discovered": "2022-08-20 09:50:02.102837" + }, + { + "post_title": "BSA Hospice of the Southwest", + "group_name": "vicesociety", + "discovered": "2022-08-21 07:13:58.192377" + }, + { + "post_title": "Family Medicine Centers", + "group_name": "vicesociety", + "discovered": "2022-08-21 07:14:01.715644" + }, + { + "post_title": "SOUTH-STAFFS-WATER.CO.UK", + "group_name": "clop", + "discovered": "2022-08-21 19:16:34.596925" + }, + { + "post_title": "northwestpipe.com", + "group_name": "lockbit3", + "discovered": "2022-08-22 11:10:14.906145" + }, + { + "post_title": "Northern Contours Inc.", + "group_name": "lorenz", + "discovered": "2022-08-22 23:17:18.361366" + }, + { + "post_title": "Moskowitz, Mandell & Salim, P.A.", + "group_name": "quantum", + "discovered": "2022-08-23 11:12:50.086574" + }, + { + "post_title": "DESFA - Pipeline company LEAK", + "group_name": "ragnarlocker", + "discovered": "2022-08-23 13:12:21.322769" + }, + { + "post_title": "Announcement. Action Lab File-tree", + "group_name": "ragnarlocker", + "discovered": "2022-08-23 15:14:54.881673" + }, + { + "post_title": "Bombardier Recreational Products (BRP)", + "group_name": "ransomexx", + "discovered": "2022-08-23 15:15:06.076056" + }, + { + "post_title": "Apex", + "group_name": "blackbyte", + "discovered": "2022-08-23 19:06:15.896372" + }, + { + "post_title": "Engine Power", + "group_name": "lorenz", + "discovered": "2022-08-23 19:06:18.134801" + }, + { + "post_title": "barrydowd.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:36.886441" + }, + { + "post_title": "destinationhope.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:38.773947" + }, + { + "post_title": "orioninc.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:40.773383" + }, + { + "post_title": "pinjuhlaw.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:45.365620" + }, + { + "post_title": "robitgroup.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:47.142084" + }, + { + "post_title": "ruffinlawyers.com.au", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:48.982388" + }, + { + "post_title": "studiobarba.com", + "group_name": "lockbit3", + "discovered": "2022-08-23 19:06:50.700200" + }, + { + "post_title": "GMX", + "group_name": "blackbyte", + "discovered": "2022-08-24 01:17:21.734969" + }, + { + "post_title": "Olamgroup", + "group_name": "everest", + "discovered": "2022-08-24 19:44:05.942916" + }, + { + "post_title": "Bombardier Recreational Products (BRP) - BONUS CONTENT (!!!)", + "group_name": "ransomexx", + "discovered": "2022-08-24 19:44:10.927069" + }, + { + "post_title": "Sheppard Robson", + "group_name": "donutleaks", + "discovered": "2022-08-24 19:44:18.469151" + }, + { + "post_title": "PlanET Biogas Solutions", + "group_name": "donutleaks", + "discovered": "2022-08-24 19:44:20.206747" + }, + { + "post_title": "CMZ UK", + "group_name": "donutleaks", + "discovered": "2022-08-24 19:44:22.353012" + }, + { + "post_title": "Sando", + "group_name": "donutleaks", + "discovered": "2022-08-24 19:44:24.220626" + }, + { + "post_title": "Enso Detego", + "group_name": "donutleaks", + "discovered": "2022-08-24 19:44:25.732414" + }, + { + "post_title": "Baton Rouge General", + "group_name": "hiveleak", + "discovered": "2022-08-24 20:59:11.119788" + }, + { + "post_title": "growag.ch", + "group_name": "lockbit3", + "discovered": "2022-08-25 11:02:37.999185" + }, + { + "post_title": "ANGT - HACKED. MORE THEN 700 GB SENSITIVE DATA LEAKED", + "group_name": "lv", + "discovered": "2022-08-25 12:58:41.426059" + }, + { + "post_title": "Altice International", + "group_name": "hiveleak", + "discovered": "2022-08-25 19:21:30.899610" + }, + { + "post_title": "Frances King School of English", + "group_name": "vicesociety", + "discovered": "2022-08-25 21:03:33.580559" + }, + { + "post_title": "Lampton School", + "group_name": "vicesociety", + "discovered": "2022-08-25 21:03:36.438084" + }, + { + "post_title": "centrodsr.it", + "group_name": "lockbit3", + "discovered": "2022-08-26 00:58:57.403654" + }, + { + "post_title": "hikadikoy.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 00:58:59.774941" + }, + { + "post_title": "canteen.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 12:44:54.328410" + }, + { + "post_title": "trufab.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 12:45:01.246598" + }, + { + "post_title": "americantilestone.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:49.816648" + }, + { + "post_title": "cenviro.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:52.358151" + }, + { + "post_title": "draperyconceptsny.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:54.799206" + }, + { + "post_title": "galenica.ma", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:56.630265" + }, + { + "post_title": "kkcsworld.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:58.200554" + }, + { + "post_title": "lenax.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:46:59.940741" + }, + { + "post_title": "microdepot.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:01.855393" + }, + { + "post_title": "perteet.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:03.427445" + }, + { + "post_title": "sportlavit.nl", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:05.155487" + }, + { + "post_title": "statravel.de", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:06.649810" + }, + { + "post_title": "stevesilvaplumbing.com", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:08.147629" + }, + { + "post_title": "stjohnvianney.org", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:09.870612" + }, + { + "post_title": "thininfra.nl", + "group_name": "lockbit3", + "discovered": "2022-08-26 16:47:12.143883" + }, + { + "post_title": "goodwillnm.org", + "group_name": "lockbit3", + "discovered": "2022-08-28 03:40:19.057956" + }, + { + "post_title": "Grande Stevens", + "group_name": "blackbyte", + "discovered": "2022-08-28 20:49:10.179154" + }, + { + "post_title": "Torin Drive", + "group_name": "blackbyte", + "discovered": "2022-08-28 20:49:12.838284" + }, + { + "post_title": "accionplus.com", + "group_name": "lockbit3", + "discovered": "2022-08-28 22:48:23.802425" + }, + { + "post_title": "embalajescapsa.com", + "group_name": "lockbit3", + "discovered": "2022-08-28 22:48:26.018515" + }, + { + "post_title": "uplexis.com.br", + "group_name": "lockbit3", + "discovered": "2022-08-28 22:48:47.561997" + }, + { + "post_title": "ygboulons.com", + "group_name": "lockbit3", + "discovered": "2022-08-28 22:48:49.243892" + }, + { + "post_title": "currierryan.com", + "group_name": "lockbit3", + "discovered": "2022-08-29 14:55:44.408239" + }, + { + "post_title": "International Custom Controls", + "group_name": "bianlian", + "discovered": "2022-08-29 20:44:25.951245" + }, + { + "post_title": "Advance Corporation", + "group_name": "bianlian", + "discovered": "2022-08-29 20:44:27.970529" + }, + { + "post_title": "The Preston Partnership", + "group_name": "bianlian", + "discovered": "2022-08-29 20:44:31.004007" + }, + { + "post_title": " Rudman", + "group_name": "bianlian", + "discovered": "2022-08-29 20:44:32.734190" + }, + { + "post_title": "Spalding Grammar School", + "group_name": "bianlian", + "discovered": "2022-08-29 20:44:34.887474" + }, + { + "post_title": "Josef Saller Services e.K. - Saller Bau", + "group_name": "alphv", + "discovered": "2022-08-29 22:52:20.263132" + }, + { + "post_title": "Laferté", + "group_name": "alphv", + "discovered": "2022-08-29 22:52:22.285219" + }, + { + "post_title": "Justman Packaging & Display Information", + "group_name": "alphv", + "discovered": "2022-08-29 22:52:24.008971" + }, + { + "post_title": "skupstina", + "group_name": "cuba", + "discovered": "2022-08-30 12:51:41.171728" + }, + { + "post_title": "GOV Brazil", + "group_name": "everest", + "discovered": "2022-08-30 18:55:05.186087" + }, + { + "post_title": "Captec-group", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:20.176784" + }, + { + "post_title": "4cRisk", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:22.415631" + }, + { + "post_title": "Community Dental Partners", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:24.124903" + }, + { + "post_title": "Ramada Hervey Bay Hotel Resort", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:25.650026" + }, + { + "post_title": "WWAY-TV, LLC", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:27.159728" + }, + { + "post_title": "Alegria Family Services", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:28.626155" + }, + { + "post_title": "Magnachem", + "group_name": "bianlian", + "discovered": "2022-08-30 20:52:30.159717" + }, + { + "post_title": "MEIJI.COM.SG", + "group_name": "lockbit3", + "discovered": "2022-08-31 05:24:19.853685" + }, + { + "post_title": "NCG Medical", + "group_name": "hiveleak", + "discovered": "2022-08-31 14:45:53.546726" + }, + { + "post_title": "Huge drama for Tap Air Portugal", + "group_name": "ragnarlocker", + "discovered": "2022-08-31 16:49:35.755156" + }, + { + "post_title": "USA Insurance company - Smith brothers File tree and some proofs", + "group_name": "ragnarlocker", + "discovered": "2022-08-31 22:46:52.300214" + }, + { + "post_title": "hspatent.com", + "group_name": "lockbit3", + "discovered": "2022-09-01 03:43:14.691777" + }, + { + "post_title": "precision.com", + "group_name": "lockbit3", + "discovered": "2022-09-01 03:43:16.937204" + }, + { + "post_title": "solidatech.com", + "group_name": "lockbit3", + "discovered": "2022-09-01 03:43:18.767968" + }, + { + "post_title": "Midea Group", + "group_name": "revil", + "discovered": "2022-09-01 10:45:01.306893" + }, + { + "post_title": "Alan Smith", + "group_name": "blackbyte", + "discovered": "2022-09-01 13:03:13.830819" + }, + { + "post_title": "Monarchnc", + "group_name": "donutleaks", + "discovered": "2022-09-01 16:50:37.273582" + }, + { + "post_title": "Moscone Center", + "group_name": "quantum", + "discovered": "2022-09-01 18:54:50.599154" + }, + { + "post_title": "An Japan Game Halls Operator", + "group_name": "cheers", + "discovered": "2022-09-01 18:54:57.537950" + }, + { + "post_title": "Moon Area School District", + "group_name": "vicesociety", + "discovered": "2022-09-01 22:52:29.283792" + }, + { + "post_title": "Instituto Agrario Dominicano", + "group_name": "quantum", + "discovered": "2022-09-02 00:51:08.683366" + }, + { + "post_title": "Eurocell", + "group_name": "hiveleak", + "discovered": "2022-09-02 07:14:13.933349" + }, + { + "post_title": "peakinternational.com", + "group_name": "lockbit3", + "discovered": "2022-09-02 12:49:50.035504" + }, + { + "post_title": "TAP Air - First Facts", + "group_name": "ragnarlocker", + "discovered": "2022-09-02 23:01:58.090538" + }, + { + "post_title": "Fundo Nacional de Desenvolvimento da Educação", + "group_name": "ransomexx", + "discovered": "2022-09-03 12:48:09.496429" + }, + { + "post_title": "Infinitely Virtual", + "group_name": "bianlian", + "discovered": "2022-09-03 20:56:56.949625" + }, + { + "post_title": "Baer's", + "group_name": "bianlian", + "discovered": "2022-09-03 20:56:59.160494" + }, + { + "post_title": "floresfunza.com", + "group_name": "lockbit3", + "discovered": "2022-09-04 18:55:31.611407" + }, + { + "post_title": "hmets.com", + "group_name": "lockbit3", + "discovered": "2022-09-04 18:55:34.224481" + }, + { + "post_title": "Elmbrook Schools", + "group_name": "vicesociety", + "discovered": "2022-09-04 23:01:42.119565" + }, + { + "post_title": "C2CORP", + "group_name": "blackbasta", + "discovered": "2022-09-04 23:01:46.551830" + }, + { + "post_title": "Cpl Architects, Engineers", + "group_name": "blackbasta", + "discovered": "2022-09-04 23:01:48.311243" + }, + { + "post_title": "Speed-Buster", + "group_name": "blackbyte", + "discovered": "2022-09-05 01:06:53.704482" + }, + { + "post_title": "eneva.com.br", + "group_name": "lockbit3", + "discovered": "2022-09-05 10:55:31.849678" + }, + { + "post_title": "divultec.pt", + "group_name": "lockbit3", + "discovered": "2022-09-05 12:51:28.829200" + }, + { + "post_title": "kamut.com", + "group_name": "lockbit3", + "discovered": "2022-09-05 12:51:31.258432" + }, + { + "post_title": "www3.comune.gorizia.it", + "group_name": "lockbit3", + "discovered": "2022-09-05 12:51:33.878669" + }, + { + "post_title": "psico", + "group_name": "blackbasta", + "discovered": "2022-09-05 15:06:13.419594" + }, + { + "post_title": "finnco.eu", + "group_name": "lockbit3", + "discovered": "2022-09-05 15:06:16.602547" + }, + { + "post_title": "sportscity.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-05 15:06:19.189768" + }, + { + "post_title": "augustacoop", + "group_name": "blackbasta", + "discovered": "2022-09-05 17:04:13.843227" + }, + { + "post_title": "CleanTech", + "group_name": "blackbasta", + "discovered": "2022-09-05 17:04:37.600790" + }, + { + "post_title": "monnensenpartners.be", + "group_name": "lockbit3", + "discovered": "2022-09-05 20:59:00.632138" + }, + { + "post_title": "pdh.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-05 20:59:05.527743" + }, + { + "post_title": "sbr-zwiesel.de", + "group_name": "lockbit3", + "discovered": "2022-09-05 20:59:07.560097" + }, + { + "post_title": "gavresorts.com.br", + "group_name": "lockbit3", + "discovered": "2022-09-06 08:07:33.970420" + }, + { + "post_title": "lafondasantafe.com", + "group_name": "lockbit3", + "discovered": "2022-09-06 08:07:36.175580" + }, + { + "post_title": "California-Oregon Telecommunications Company", + "group_name": "hiveleak", + "discovered": "2022-09-06 21:07:00.121315" + }, + { + "post_title": "DDoS instead of the Discuss - Nice try TAP Air", + "group_name": "ragnarlocker", + "discovered": "2022-09-07 07:33:34.112138" + }, + { + "post_title": "metaage.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-07 08:56:30.948704" + }, + { + "post_title": "misumi.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-07 08:56:33.273973" + }, + { + "post_title": "hunters.com", + "group_name": "lockbit3", + "discovered": "2022-09-07 10:56:38.109533" + }, + { + "post_title": "marcopolohotels.com", + "group_name": "lockbit3", + "discovered": "2022-09-07 10:56:40.665678" + }, + { + "post_title": "SHI", + "group_name": "blackbasta", + "discovered": "2022-09-07 12:54:46.171078" + }, + { + "post_title": "STEVENG", + "group_name": "blackbasta", + "discovered": "2022-09-07 12:54:51.440446" + }, + { + "post_title": "EMEPLATING", + "group_name": "blackbasta", + "discovered": "2022-09-07 12:54:53.578678" + }, + { + "post_title": "MGSMFG", + "group_name": "blackbasta", + "discovered": "2022-09-08 15:15:54.275243" + }, + { + "post_title": "kortrijkserijschool.be", + "group_name": "lockbit3", + "discovered": "2022-09-09 01:23:32.018180" + }, + { + "post_title": "kisan.com.tr", + "group_name": "lockbit3", + "discovered": "2022-09-09 11:05:47.707025" + }, + { + "post_title": "connectvitypoint.com", + "group_name": "lockbit3", + "discovered": "2022-09-09 13:12:22.017887" + }, + { + "post_title": "dcashpro.com", + "group_name": "lockbit3", + "discovered": "2022-09-09 13:12:23.844106" + }, + { + "post_title": "diakonissen-riehen.ch", + "group_name": "lockbit3", + "discovered": "2022-09-09 13:12:25.566226" + }, + { + "post_title": "lacalera.pe", + "group_name": "lockbit3", + "discovered": "2022-09-09 13:12:27.903561" + }, + { + "post_title": "marugokiso.co.jp", + "group_name": "lockbit3", + "discovered": "2022-09-09 13:12:29.908059" + }, + { + "post_title": "TIB Development Bank", + "group_name": "blackbyte", + "discovered": "2022-09-11 16:58:19.746159" + }, + { + "post_title": "Davin Industries Ltd", + "group_name": "blackbyte", + "discovered": "2022-09-11 16:58:22.886025" + }, + { + "post_title": "aralaw.cr", + "group_name": "lockbit3", + "discovered": "2022-09-11 16:58:38.699969" + }, + { + "post_title": "canadiansolar.com", + "group_name": "lockbit3", + "discovered": "2022-09-11 16:58:40.552509" + }, + { + "post_title": "hamiota.com", + "group_name": "lockbit3", + "discovered": "2022-09-11 18:59:04.431771" + }, + { + "post_title": "ch-sf.fr (old)", + "group_name": "lockbit3", + "discovered": "2022-09-12 08:58:40.174671" + }, + { + "post_title": "ch-sf.fr", + "group_name": "lockbit3", + "discovered": "2022-09-12 15:11:00.833477" + }, + { + "post_title": "frigobandeira.com", + "group_name": "lockbit3", + "discovered": "2022-09-12 15:11:03.774528" + }, + { + "post_title": "TAP AIR PORTUGAL - 115k personal data leak", + "group_name": "ragnarlocker", + "discovered": "2022-09-12 20:52:37.642477" + }, + { + "post_title": "omegaservices.com.au", + "group_name": "lockbit3", + "discovered": "2022-09-12 22:46:00.472116" + }, + { + "post_title": "OakBend Medical (USA)", + "group_name": "daixin", + "discovered": "2022-09-13 01:04:54.204845" + }, + { + "post_title": "bakkerheftrucks.local", + "group_name": "lockbit3", + "discovered": "2022-09-13 13:00:45.739922" + }, + { + "post_title": "bakkerheftrucks.com", + "group_name": "lockbit3", + "discovered": "2022-09-13 18:51:09.570964" + }, + { + "post_title": "groupg4.com", + "group_name": "redalert", + "discovered": "2022-09-13 18:51:13.233563" + }, + { + "post_title": "SERCOM", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:46.247349" + }, + { + "post_title": "COMSA CORPORATION", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:48.618828" + }, + { + "post_title": "RABAT", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:50.290749" + }, + { + "post_title": "RIVISA", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:51.980345" + }, + { + "post_title": "INDIBA", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:53.536821" + }, + { + "post_title": "Fundació Sant Francesc d'Assís ", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:56.441303" + }, + { + "post_title": "Grupo Galilea", + "group_name": "sparta", + "discovered": "2022-09-13 20:55:58.921777" + }, + { + "post_title": "Tema Litoclean Group", + "group_name": "sparta", + "discovered": "2022-09-13 20:56:00.457768" + }, + { + "post_title": "Ferrer&Ojeda", + "group_name": "sparta", + "discovered": "2022-09-13 20:56:02.119987" + }, + { + "post_title": "Font Packaging", + "group_name": "sparta", + "discovered": "2022-09-13 20:56:03.896487" + }, + { + "post_title": "Auto88", + "group_name": "sparta", + "discovered": "2022-09-13 20:56:05.442631" + }, + { + "post_title": "Gallery Hotels", + "group_name": "sparta", + "discovered": "2022-09-13 20:56:07.080892" + }, + { + "post_title": " Spa", + "group_name": "bianlian", + "discovered": "2022-09-13 22:52:40.573689" + }, + { + "post_title": "The Checker Transportation Group", + "group_name": "alphv", + "discovered": "2022-09-14 01:04:16.797219" + }, + { + "post_title": "Hayat", + "group_name": "alphv", + "discovered": "2022-09-14 01:04:19.338182" + }, + { + "post_title": "PCSupport", + "group_name": "alphv", + "discovered": "2022-09-14 01:04:21.156930" + }, + { + "post_title": "Fiveninefive", + "group_name": "alphv", + "discovered": "2022-09-14 01:04:22.937315" + }, + { + "post_title": "GHT CORP", + "group_name": "alphv", + "discovered": "2022-09-14 01:04:25.083767" + }, + { + "post_title": "idealtridon.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 01:04:29.169443" + }, + { + "post_title": "aipcenergy.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:49:56.740441" + }, + { + "post_title": "artdis.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:49:59.459573" + }, + { + "post_title": "camdomain.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:01.230959" + }, + { + "post_title": "cityofbartlett.org", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:03.157008" + }, + { + "post_title": "cmb-artimmo.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:05.479283" + }, + { + "post_title": "cultivar.net", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:06.834320" + }, + { + "post_title": "daune.org", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:08.801175" + }, + { + "post_title": "euro-modules.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:10.329474" + }, + { + "post_title": "euromip.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:11.843171" + }, + { + "post_title": "jt-engineering.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:13.802209" + }, + { + "post_title": "kcgreenholdings.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:15.374162" + }, + { + "post_title": "kwp.at", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:17.099186" + }, + { + "post_title": "lagence33.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:19.093096" + }, + { + "post_title": "mackenzie-law.co.uk", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:21.112027" + }, + { + "post_title": "maisonloisy.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:22.692747" + }, + { + "post_title": "maleosante.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:24.575197" + }, + { + "post_title": "mj-donnais.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:26.189205" + }, + { + "post_title": "pays-colombey-sudtoulois.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:27.996303" + }, + { + "post_title": "quintal.com.co", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:30.294106" + }, + { + "post_title": "sarassure.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:31.910267" + }, + { + "post_title": "sva-avignon.concession-landrover.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:33.778894" + }, + { + "post_title": "tapcocu.org", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:35.234241" + }, + { + "post_title": "taxprepandmore.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:36.728539" + }, + { + "post_title": "thezincgroup.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:38.405504" + }, + { + "post_title": "ville-faulquemont.fr", + "group_name": "lockbit3", + "discovered": "2022-09-14 03:50:39.918208" + }, + { + "post_title": "Tri-Supply", + "group_name": "alphv", + "discovered": "2022-09-14 09:04:17.642270" + }, + { + "post_title": "DYNAM JAPAN HOLDINGS CO., LTD", + "group_name": "cheers", + "discovered": "2022-09-14 11:00:11.961979" + }, + { + "post_title": "FONT PACKAGING", + "group_name": "sparta", + "discovered": "2022-09-14 11:00:15.785826" + }, + { + "post_title": "AUTO88", + "group_name": "sparta", + "discovered": "2022-09-14 11:00:17.455203" + }, + { + "post_title": "MR. WONDERFUL", + "group_name": "sparta", + "discovered": "2022-09-14 11:00:19.146782" + }, + { + "post_title": "HAYAT GROUP", + "group_name": "alphv", + "discovered": "2022-09-14 15:20:59.927105" + }, + { + "post_title": "inspecshawaii.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 15:21:09.256063" + }, + { + "post_title": "markherder.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 19:00:03.894774" + }, + { + "post_title": "cnachile.cl", + "group_name": "lockbit3", + "discovered": "2022-09-14 21:11:06.041342" + }, + { + "post_title": "independence.com.co", + "group_name": "lockbit3", + "discovered": "2022-09-14 21:11:08.707119" + }, + { + "post_title": "makler.com.ve", + "group_name": "lockbit3", + "discovered": "2022-09-14 21:11:10.418163" + }, + { + "post_title": "southamptoncounty.org", + "group_name": "lockbit3", + "discovered": "2022-09-14 21:11:12.687190" + }, + { + "post_title": "Triten", + "group_name": "alphv", + "discovered": "2022-09-14 23:10:35.151581" + }, + { + "post_title": "aliat.group", + "group_name": "lockbit3", + "discovered": "2022-09-14 23:10:38.308044" + }, + { + "post_title": "d-securite.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 23:10:40.310492" + }, + { + "post_title": "medical69.com", + "group_name": "lockbit3", + "discovered": "2022-09-14 23:10:42.292352" + }, + { + "post_title": "FederalBank/Fedfina.part5", + "group_name": "everest", + "discovered": "2022-09-15 01:01:59.422429" + }, + { + "post_title": "FONTAINEBLEAU", + "group_name": "hiveleak", + "discovered": "2022-09-15 11:16:21.227539" + }, + { + "post_title": "nakamuracorp.co.jp", + "group_name": "lockbit3", + "discovered": "2022-09-15 11:16:27.464943" + }, + { + "post_title": "midlandplastics.com", + "group_name": "lockbit3", + "discovered": "2022-09-15 12:59:05.997460" + }, + { + "post_title": "Nextlabs", + "group_name": "0mega", + "discovered": "2022-09-15 12:59:09.472386" + }, + { + "post_title": "dss-cz.com", + "group_name": "lockbit3", + "discovered": "2022-09-15 16:57:11.803943" + }, + { + "post_title": "Bell Technical Solutions", + "group_name": "hiveleak", + "discovered": "2022-09-15 20:58:01.110223" + }, + { + "post_title": "County Suffolk and contractors", + "group_name": "alphv", + "discovered": "2022-09-15 20:58:08.420430" + }, + { + "post_title": "asecna.org", + "group_name": "lockbit3", + "discovered": "2022-09-15 20:58:12.094409" + }, + { + "post_title": "software-line.it", + "group_name": "lockbit3", + "discovered": "2022-09-16 01:31:13.886499" + }, + { + "post_title": "ces-conditionneur.fr", + "group_name": "lockbit3", + "discovered": "2022-09-16 03:46:29.603279" + }, + { + "post_title": "equatortrustees.com", + "group_name": "lockbit3", + "discovered": "2022-09-16 03:46:31.792167" + }, + { + "post_title": "kaffeeberlin.com", + "group_name": "lockbit3", + "discovered": "2022-09-16 03:46:51.199321" + }, + { + "post_title": "scottobrothers.com", + "group_name": "lockbit3", + "discovered": "2022-09-16 03:46:53.231669" + }, + { + "post_title": "Laddawn Inc.", + "group_name": "lorenz", + "discovered": "2022-09-16 19:12:42.721406" + }, + { + "post_title": "first bounty payout $50,000", + "group_name": "lockbit3", + "discovered": "2022-09-17 06:52:09.761555" + }, + { + "post_title": "trisupplyhome.com", + "group_name": "alphv", + "discovered": "2022-09-17 19:21:08.547348" + }, + { + "post_title": "South Pacific Inc", + "group_name": "blackbyte", + "discovered": "2022-09-19 05:56:58.137083" + }, + { + "post_title": "Biggest News", + "group_name": "blackbyte", + "discovered": "2022-09-19 05:57:01.427406" + }, + { + "post_title": "midway", + "group_name": "blackbasta", + "discovered": "2022-09-19 11:09:48.642094" + }, + { + "post_title": "hering-heinz.de", + "group_name": "lockbit3", + "discovered": "2022-09-19 11:09:51.653953" + }, + { + "post_title": "New York Racing Association", + "group_name": "hiveleak", + "discovered": "2022-09-19 13:16:45.415505" + }, + { + "post_title": "Government Brazil", + "group_name": "everest", + "discovered": "2022-09-19 15:21:40.622298" + }, + { + "post_title": "franckbeun.fr", + "group_name": "lockbit3", + "discovered": "2022-09-19 19:24:33.770715" + }, + { + "post_title": "TAP Air Leak of more than 1.5 million of customers and many other.", + "group_name": "ragnarlocker", + "discovered": "2022-09-19 21:05:23.328860" + }, + { + "post_title": "CARITAS", + "group_name": "alphv", + "discovered": "2022-09-19 21:05:34.526498" + }, + { + "post_title": "ducanh.com", + "group_name": "lockbit3", + "discovered": "2022-09-19 21:05:38.560052" + }, + { + "post_title": "mts.mektec.com", + "group_name": "lockbit3", + "discovered": "2022-09-19 21:05:41.105013" + }, + { + "post_title": "okibrasil.com", + "group_name": "lockbit3", + "discovered": "2022-09-19 21:05:43.625885" + }, + { + "post_title": "psi.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-19 21:05:45.590084" + }, + { + "post_title": "elementnor.no", + "group_name": "lockbit3", + "discovered": "2022-09-20 11:13:05.465529" + }, + { + "post_title": "Sigmund Software", + "group_name": "hiveleak", + "discovered": "2022-09-20 17:23:27.627018" + }, + { + "post_title": "Sierra College", + "group_name": "vicesociety", + "discovered": "2022-09-20 19:19:26.893378" + }, + { + "post_title": "CORNERSTONE", + "group_name": "blackbasta", + "discovered": "2022-09-21 01:28:18.961223" + }, + { + "post_title": "Foreman Watson Land Title, LLC.", + "group_name": "blackbasta", + "discovered": "2022-09-21 09:18:14.110081" + }, + { + "post_title": "Admiral Merchants", + "group_name": "blackbasta", + "discovered": "2022-09-21 09:18:16.518838" + }, + { + "post_title": "ifwglobal.com", + "group_name": "lockbit3", + "discovered": "2022-09-21 09:18:20.159810" + }, + { + "post_title": "parrottsims.com", + "group_name": "lockbit3", + "discovered": "2022-09-21 17:18:22.435956" + }, + { + "post_title": "scrd.ca", + "group_name": "lockbit3", + "discovered": "2022-09-21 17:18:24.630180" + }, + { + "post_title": "uide.edu.ec", + "group_name": "lockbit3", + "discovered": "2022-09-21 17:18:26.451736" + }, + { + "post_title": "yourprivateitaly.com", + "group_name": "lockbit3", + "discovered": "2022-09-21 17:18:28.192622" + }, + { + "post_title": "Ministerio de Economía Argentina", + "group_name": "everest", + "discovered": "2022-09-21 23:14:08.425664" + }, + { + "post_title": "BHARBERT", + "group_name": "hiveleak", + "discovered": "2022-09-21 23:14:16.602855" + }, + { + "post_title": "www.bbadmin.com", + "group_name": "redalert", + "discovered": "2022-09-21 23:14:23.819154" + }, + { + "post_title": "thorguard.com", + "group_name": "lockbit3", + "discovered": "2022-09-22 11:18:16.970455" + }, + { + "post_title": "webnordeste.com.br", + "group_name": "lockbit3", + "discovered": "2022-09-22 11:18:21.405921" + }, + { + "post_title": "GRUPO COPISA", + "group_name": "sparta", + "discovered": "2022-09-22 11:18:23.928757" + }, + { + "post_title": "congerbuilt.com", + "group_name": "lockbit3", + "discovered": "2022-09-22 15:18:56.610058" + }, + { + "post_title": "idtech.com.tw", + "group_name": "lockbit3", + "discovered": "2022-09-22 21:17:16.873411" + }, + { + "post_title": "School of Oriental African Studies", + "group_name": "vicesociety", + "discovered": "2022-09-22 23:17:30.164984" + }, + { + "post_title": "Cornerstone Insurance Group", + "group_name": "blackbasta", + "discovered": "2022-09-23 13:07:54.009146" + }, + { + "post_title": "rbroof.com", + "group_name": "lockbit3", + "discovered": "2022-09-23 17:03:41.779852" + }, + { + "post_title": "Boyes Turner LLP", + "group_name": "alphv", + "discovered": "2022-09-24 13:02:26.238501" + }, + { + "post_title": "( POST HAS BEEN UPDATED 400GB LEAK AVAILABLE N) County Suffolk and contractors", + "group_name": "alphv", + "discovered": "2022-09-24 13:02:29.203310" + }, + { + "post_title": "Longhorn Investments", + "group_name": "alphv", + "discovered": "2022-09-24 13:02:30.930562" + }, + { + "post_title": "SolarCraft", + "group_name": "alphv", + "discovered": "2022-09-25 13:21:19.681613" + }, + { + "post_title": "melorita.com", + "group_name": "lockbit3", + "discovered": "2022-09-25 15:11:33.071650" + }, + { + "post_title": "multicareinc.com", + "group_name": "lockbit3", + "discovered": "2022-09-25 15:11:35.244952" + }, + { + "post_title": "quantumce.com", + "group_name": "lockbit3", + "discovered": "2022-09-25 15:11:37.010125" + }, + { + "post_title": "KOLLITSCH", + "group_name": "blackbasta", + "discovered": "2022-09-25 19:20:06.721351" + }, + { + "post_title": "FederalBank/Fedfina DataBase Leak", + "group_name": "everest", + "discovered": "2022-09-26 04:01:44.331137" + }, + { + "post_title": "Samuel Ryder Academy", + "group_name": "vicesociety", + "discovered": "2022-09-26 11:00:17.476264" + }, + { + "post_title": "nihonsakari co. , ltd", + "group_name": "lockbit3", + "discovered": "2022-09-26 11:00:21.233014" + }, + { + "post_title": "bliss-d.com", + "group_name": "lockbit3", + "discovered": "2022-09-26 13:11:50.856987" + }, + { + "post_title": "JANMARINI", + "group_name": "hiveleak", + "discovered": "2022-09-26 19:14:52.842930" + }, + { + "post_title": "TSMTU", + "group_name": "hiveleak", + "discovered": "2022-09-26 19:14:55.563324" + }, + { + "post_title": "GFG", + "group_name": "hiveleak", + "discovered": "2022-09-26 19:14:57.609381" + }, + { + "post_title": "TAKAO-UK", + "group_name": "hiveleak", + "discovered": "2022-09-26 19:14:59.268889" + }, + { + "post_title": "yehu.org", + "group_name": "lockbit3", + "discovered": "2022-09-26 19:15:04.664755" + }, + { + "post_title": "STADLER", + "group_name": "blackbasta", + "discovered": "2022-09-26 21:13:07.333110" + }, + { + "post_title": "Cremo", + "group_name": "blackbasta", + "discovered": "2022-09-26 21:13:09.309634" + }, + { + "post_title": "Hendry Regional Medical Center", + "group_name": "hiveleak", + "discovered": "2022-09-27 07:33:31.147935" + }, + { + "post_title": "Etna GmbH", + "group_name": "blackbasta", + "discovered": "2022-09-27 07:33:35.757617" + }, + { + "post_title": "AES Clean Technology", + "group_name": "blackbasta", + "discovered": "2022-09-27 07:33:37.860100" + }, + { + "post_title": "ginspectionservices", + "group_name": "cuba", + "discovered": "2022-09-27 11:19:20.564635" + }, + { + "post_title": "vitalityhp.net", + "group_name": "lockbit3", + "discovered": "2022-09-27 11:19:31.843845" + }, + { + "post_title": "Ministerio de Relaciones Exteriores", + "group_name": "onyx", + "discovered": "2022-09-27 17:14:30.881515" + }, + { + "post_title": "hdhopwood.com", + "group_name": "lockbit3", + "discovered": "2022-09-27 17:14:34.318128" + }, + { + "post_title": "bew.co.th", + "group_name": "lockbit3", + "discovered": "2022-09-27 19:19:48.128994" + }, + { + "post_title": "Southwell, Inc.", + "group_name": "hiveleak", + "discovered": "2022-09-27 23:13:24.753063" + }, + { + "post_title": "Evo exhibits", + "group_name": "donutleaks", + "discovered": "2022-09-28 19:42:28.896682" + }, + { + "post_title": "Health Care Solutions Group", + "group_name": "donutleaks", + "discovered": "2022-09-28 21:39:45.873034" + }, + { + "post_title": "NJVC", + "group_name": "alphv", + "discovered": "2022-09-29 01:54:20.284914" + }, + { + "post_title": "ID-ware", + "group_name": "alphv", + "discovered": "2022-09-29 01:54:22.367283" + }, + { + "post_title": "samyang.com", + "group_name": "lockbit3", + "discovered": "2022-09-29 09:33:35.204641" + }, + { + "post_title": "Associated Bag", + "group_name": "blackbasta", + "discovered": "2022-09-29 13:44:58.125141" + }, + { + "post_title": "Stages Pediatric Care", + "group_name": "everest", + "discovered": "2022-09-29 19:51:50.559354" + }, + { + "post_title": "Karl Gemünden GmbH & Co. KG", + "group_name": "blackbasta", + "discovered": "2022-09-30 09:33:29.160628" + }, + { + "post_title": "toyotaalabang.com.ph", + "group_name": "lockbit3", + "discovered": "2022-09-30 17:38:18.519407" + }, + { + "post_title": "Mansfield Independent School District (MISD)", + "group_name": "hiveleak", + "discovered": "2022-09-30 19:49:38.088925" + }, + { + "post_title": "aidsalabama.org", + "group_name": "lockbit3", + "discovered": "2022-09-30 19:49:43.597684" + }, + { + "post_title": "hriindia.com", + "group_name": "lockbit3", + "discovered": "2022-09-30 19:49:45.779851" + }, + { + "post_title": "kimed.pl", + "group_name": "lockbit3", + "discovered": "2022-09-30 19:49:48.173450" + }, + { + "post_title": "Los Angeles Unified School District", + "group_name": "vicesociety", + "discovered": "2022-09-30 21:32:12.654051" + }, + { + "post_title": "seaviewresortkhaolak.com", + "group_name": "lockbit3", + "discovered": "2022-10-01 01:44:54.590462" + }, + { + "post_title": "Bombardier Recreational Products (BRP) - SOURCE CODES", + "group_name": "ransomexx", + "discovered": "2022-10-01 15:37:47.174700" + }, + { + "post_title": "Almoayed ICT", + "group_name": "blackbyte", + "discovered": "2022-10-01 19:39:58.400551" + }, + { + "post_title": "Swiss American", + "group_name": "blackbyte", + "discovered": "2022-10-01 19:40:00.703753" + }, + { + "post_title": "Aesthetic Dermatology Associates", + "group_name": "bianlian", + "discovered": "2022-10-01 19:40:19.615801" + }, + { + "post_title": "MultiCare Home Health", + "group_name": "everest", + "discovered": "2022-10-01 21:28:35.971674" + }, + { + "post_title": "Ferrari", + "group_name": "ransomexx", + "discovered": "2022-10-02 23:27:38.301435" + }, + { + "post_title": "Simex Defence Inc", + "group_name": "alphv", + "discovered": "2022-10-02 23:27:45.258511" + }, + { + "post_title": "Midwest Petroleum", + "group_name": "alphv", + "discovered": "2022-10-02 23:27:47.252778" + }, + { + "post_title": "NJVC [ post has been updated - 2 Oct.]", + "group_name": "alphv", + "discovered": "2022-10-02 23:27:48.739872" + }, + { + "post_title": "ASSOCIATED RETAILERS LIMITED HACKED MORE THEN 500G SENSITIVE DATA LEAKED", + "group_name": "alphv", + "discovered": "2022-10-02 23:27:50.321939" + }, + { + "post_title": "PENDULUM ASSOCIATES HACKED AND MORE THEN 2 TB SENSITIVE DATA LEAKED", + "group_name": "alphv", + "discovered": "2022-10-02 23:27:52.266754" + }, + { + "post_title": "Malayan Flour Mills Bhd. Data Leak", + "group_name": "ragnarlocker", + "discovered": "2022-10-03 23:34:27.849476" + }, + { + "post_title": "AudioQuest Data Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-03 23:34:30.666423" + }, + { + "post_title": "Gate Precast", + "group_name": "blackbasta", + "discovered": "2022-10-04 15:45:42.100683" + }, + { + "post_title": "Rick Shipman Construction", + "group_name": "blackbasta", + "discovered": "2022-10-04 15:45:44.469388" + }, + { + "post_title": "Bartelt", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:40.978559" + }, + { + "post_title": "Seanic Ocean Systems", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:43.093358" + }, + { + "post_title": "derach", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:44.681752" + }, + { + "post_title": " Company, LLC", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:46.127117" + }, + { + "post_title": "Berg Kaprow Lewis", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:47.960240" + }, + { + "post_title": "Aarti Drugs Ltd", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:49.707805" + }, + { + "post_title": "Sunflower Farms Distributors, Inc", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:51.535017" + }, + { + "post_title": "Peter Duffy Ltd", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:53.206035" + }, + { + "post_title": "Mayfield School", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:54.954313" + }, + { + "post_title": "McGann Facial Design", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:56.393294" + }, + { + "post_title": "BMW of Sherman Oaks", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:57.896422" + }, + { + "post_title": "Dorsey metrology", + "group_name": "bianlian", + "discovered": "2022-10-04 17:50:59.628711" + }, + { + "post_title": " Meisenkothen", + "group_name": "bianlian", + "discovered": "2022-10-04 17:51:01.277639" + }, + { + "post_title": "Veritas Solicitors", + "group_name": "bianlian", + "discovered": "2022-10-04 17:51:02.931325" + }, + { + "post_title": "Avalon luxury transport company - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-05 15:59:23.476751" + }, + { + "post_title": "OPPLE Lighting", + "group_name": "snatch", + "discovered": "2022-10-05 17:51:08.814000" + }, + { + "post_title": "Willemen Group", + "group_name": "blackbasta", + "discovered": "2022-10-05 17:51:17.161463" + }, + { + "post_title": "apunipima.org.au", + "group_name": "lockbit3", + "discovered": "2022-10-05 17:51:19.977944" + }, + { + "post_title": "Oil India Limited", + "group_name": "snatch", + "discovered": "2022-10-05 19:32:49.744046" + }, + { + "post_title": "Unicity", + "group_name": "snatch", + "discovered": "2022-10-05 19:32:51.822505" + }, + { + "post_title": "Empower Insurance", + "group_name": "snatch", + "discovered": "2022-10-05 19:32:53.543055" + }, + { + "post_title": "Rundle Eye Care", + "group_name": "everest", + "discovered": "2022-10-06 13:28:09.441681" + }, + { + "post_title": "MultiCare pt.2", + "group_name": "everest", + "discovered": "2022-10-06 23:39:01.492903" + }, + { + "post_title": "The UNITED GRINDING Group", + "group_name": "blackbasta", + "discovered": "2022-10-06 23:39:12.002617" + }, + { + "post_title": "Pinnacle Incorporated", + "group_name": "alphv", + "discovered": "2022-10-07 07:34:35.479805" + }, + { + "post_title": "Knoll", + "group_name": "alphv", + "discovered": "2022-10-07 07:34:38.041551" + }, + { + "post_title": "Clarion Communication Management Ltd", + "group_name": "alphv", + "discovered": "2022-10-07 07:34:39.932780" + }, + { + "post_title": "NJVC [ post has been updated ]", + "group_name": "alphv", + "discovered": "2022-10-07 07:34:41.711813" + }, + { + "post_title": "SPERONI S.P.A / Data Lamborghini, Ferrari, Fiat Group, VAG, Brembo", + "group_name": "everest", + "discovered": "2022-10-07 15:30:10.698822" + }, + { + "post_title": "Electricity company", + "group_name": "everest", + "discovered": "2022-10-07 23:21:54.158990" + }, + { + "post_title": "www.emtelco.com.co", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:01.577826" + }, + { + "post_title": "lojastorra.com.br", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:05.286412" + }, + { + "post_title": "contempocard.com", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:06.838344" + }, + { + "post_title": "robertbernard.com", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:08.372735" + }, + { + "post_title": "scinopharm.com", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:10.034028" + }, + { + "post_title": "dialog.com.au", + "group_name": "qilin", + "discovered": "2022-10-08 05:43:11.666451" + }, + { + "post_title": "Notos Com", + "group_name": "alphv", + "discovered": "2022-10-08 15:34:13.786123" + }, + { + "post_title": "Deutsche Saatveredelung AG", + "group_name": "alphv", + "discovered": "2022-10-08 15:34:16.495851" + }, + { + "post_title": "Home Dynamix", + "group_name": "alphv", + "discovered": "2022-10-08 15:34:19.176451" + }, + { + "post_title": "Município De Loures", + "group_name": "hiveleak", + "discovered": "2022-10-09 11:33:32.686122" + }, + { + "post_title": "alliedusa.com", + "group_name": "lockbit3", + "discovered": "2022-10-09 13:41:19.236452" + }, + { + "post_title": "buydps.com", + "group_name": "lockbit3", + "discovered": "2022-10-09 13:41:21.855561" + }, + { + "post_title": "dragages-ports.fr", + "group_name": "lockbit3", + "discovered": "2022-10-09 13:41:23.783561" + }, + { + "post_title": "cedemo.com", + "group_name": "lockbit3", + "discovered": "2022-10-09 15:43:04.934466" + }, + { + "post_title": "securityalliancegroup.com", + "group_name": "lockbit3", + "discovered": "2022-10-09 23:41:49.546058" + }, + { + "post_title": "RS.GOV.BR/Government Brazil", + "group_name": "everest", + "discovered": "2022-10-10 09:33:56.055102" + }, + { + "post_title": "Shiloh Industries", + "group_name": "blackbasta", + "discovered": "2022-10-10 09:34:07.472103" + }, + { + "post_title": "dmcinet.com", + "group_name": "lockbit3", + "discovered": "2022-10-10 11:38:52.968474" + }, + { + "post_title": "polycube.co.th", + "group_name": "lockbit3", + "discovered": "2022-10-10 11:38:56.463905" + }, + { + "post_title": "jtchapman.com", + "group_name": "lockbit3", + "discovered": "2022-10-10 13:46:21.187452" + }, + { + "post_title": "Electricity company pt.2", + "group_name": "everest", + "discovered": "2022-10-10 15:38:25.352382" + }, + { + "post_title": "tdwood.com", + "group_name": "lockbit3", + "discovered": "2022-10-10 15:38:39.303100" + }, + { + "post_title": "TANG CAPITAL LEAKED", + "group_name": "ragnarlocker", + "discovered": "2022-10-10 19:35:58.044493" + }, + { + "post_title": "The Hibbert Group", + "group_name": "alphv", + "discovered": "2022-10-11 09:41:00.122012" + }, + { + "post_title": "Consorci Sanitari Integral & Geseme", + "group_name": "ransomexx", + "discovered": "2022-10-11 17:38:37.210738" + }, + { + "post_title": "DMCI Holding Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-11 19:10:50.010694" + }, + { + "post_title": "Stages Pediatric Care Update", + "group_name": "everest", + "discovered": "2022-10-11 21:36:12.868061" + }, + { + "post_title": "Severn Glocon Group", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:36.209856" + }, + { + "post_title": "ADATA Technology", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:39.354837" + }, + { + "post_title": "ROFA INDUSTRIAL AUTOMATION", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:41.305521" + }, + { + "post_title": "Carmen Copper Corporation", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:43.250015" + }, + { + "post_title": "Ipca Laboratories", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:45.698848" + }, + { + "post_title": "Fairfax - Crum & Forster", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:47.679070" + }, + { + "post_title": "Advanced Micro Devices, Inc", + "group_name": "ransomhouse", + "discovered": "2022-10-12 01:43:49.579812" + }, + { + "post_title": "mtrx.com", + "group_name": "lockbit3", + "discovered": "2022-10-12 04:03:41.022727" + }, + { + "post_title": "bigcenters.rs", + "group_name": "lockbit3", + "discovered": "2022-10-12 05:29:30.146884" + }, + { + "post_title": "Michael Sullivan & Associates", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:45.877572" + }, + { + "post_title": "AMPORTS", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:48.574315" + }, + { + "post_title": "ALFATECH", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:50.899949" + }, + { + "post_title": "Quality Telecom Consultants Inc", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:53.424407" + }, + { + "post_title": "SMART Mechanical Solutions", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:55.356597" + }, + { + "post_title": "MERCOLA", + "group_name": "blackbasta", + "discovered": "2022-10-12 07:14:59.314369" + }, + { + "post_title": "martel.es", + "group_name": "lockbit3", + "discovered": "2022-10-12 07:15:02.980222" + }, + { + "post_title": "marktel.es", + "group_name": "lockbit3", + "discovered": "2022-10-12 15:10:02.452940" + }, + { + "post_title": "MultiCare pt.3", + "group_name": "everest", + "discovered": "2022-10-12 19:29:09.942399" + }, + { + "post_title": "nelsonautohaus.com", + "group_name": "lockbit3", + "discovered": "2022-10-13 17:07:24.305787" + }, + { + "post_title": "Fashion company ZIGI NY - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-13 19:17:55.041634" + }, + { + "post_title": "Electricity company pt.3", + "group_name": "everest", + "discovered": "2022-10-13 20:59:59.321983" + }, + { + "post_title": "bankruptcypa.com", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:05.048783" + }, + { + "post_title": "heronconstruction.co.nz", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:08.370328" + }, + { + "post_title": "kilvington.vic.edu.au", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:10.823319" + }, + { + "post_title": "mk.co.th", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:12.832445" + }, + { + "post_title": "tamhash.co.il", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:15.489091" + }, + { + "post_title": "villajuris.be", + "group_name": "lockbit3", + "discovered": "2022-10-14 15:48:17.428052" + }, + { + "post_title": "RecordTV", + "group_name": "alphv", + "discovered": "2022-10-14 17:48:48.455145" + }, + { + "post_title": "Jam Filled Entertainment", + "group_name": "alphv", + "discovered": "2022-10-14 17:48:50.749186" + }, + { + "post_title": "Electricity company / Air Defense Solutions company", + "group_name": "everest", + "discovered": "2022-10-14 21:40:02.840868" + }, + { + "post_title": "MultiCare DataBase Leak", + "group_name": "everest", + "discovered": "2022-10-15 11:39:03.463868" + }, + { + "post_title": "Döhler HACKED! More then 800 GB sensitive data LEAKED!", + "group_name": "alphv", + "discovered": "2022-10-15 13:28:52.823543" + }, + { + "post_title": "castemark.tw", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:39:57.237009" + }, + { + "post_title": "centurion.com.pl", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:39:59.508481" + }, + { + "post_title": "eeckman.eu", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:02.534035" + }, + { + "post_title": "eureka-puzzle.eu", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:04.389767" + }, + { + "post_title": "groupesavoie.com", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:06.531782" + }, + { + "post_title": "kingteam.com.tw", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:08.273674" + }, + { + "post_title": "oomiya.co.jp", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:11.008216" + }, + { + "post_title": "tokaisolidtire.com", + "group_name": "lockbit3", + "discovered": "2022-10-15 15:40:13.264665" + }, + { + "post_title": "kingfisherinsurance.com", + "group_name": "lockbit3", + "discovered": "2022-10-17 13:07:54.111774" + }, + { + "post_title": "CSW GmbH", + "group_name": "blackbasta", + "discovered": "2022-10-17 21:25:26.520320" + }, + { + "post_title": "Stages Pediatric Care new personal data", + "group_name": "everest", + "discovered": "2022-10-18 11:34:42.982497" + }, + { + "post_title": "MultiCareInc DataBase Leak", + "group_name": "everest", + "discovered": "2022-10-18 11:34:45.722154" + }, + { + "post_title": "MultiCareInc pt.3", + "group_name": "everest", + "discovered": "2022-10-18 11:34:47.725156" + }, + { + "post_title": "Unimed Belem", + "group_name": "ransomexx", + "discovered": "2022-10-18 15:45:14.117853" + }, + { + "post_title": "Rosenblatt Securities", + "group_name": "quantum", + "discovered": "2022-10-18 17:40:29.173993" + }, + { + "post_title": "Dollmar SpA - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-18 23:32:51.607325" + }, + { + "post_title": "Weidmuller", + "group_name": "snatch", + "discovered": "2022-10-18 23:33:02.782671" + }, + { + "post_title": "Wes-tec inc.", + "group_name": "lorenz", + "discovered": "2022-10-19 01:34:34.540954" + }, + { + "post_title": "DIPF-INTERN - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-10-19 01:34:40.766732" + }, + { + "post_title": "MARCELSOLUTION.COM", + "group_name": "clop", + "discovered": "2022-10-19 11:40:52.186546" + }, + { + "post_title": "BOOTZ", + "group_name": "blackbasta", + "discovered": "2022-10-19 21:43:52.609338" + }, + { + "post_title": "A G Equipment Company", + "group_name": "blackbasta", + "discovered": "2022-10-19 21:43:56.080015" + }, + { + "post_title": "TSC", + "group_name": "blackbasta", + "discovered": "2022-10-19 21:43:57.957801" + }, + { + "post_title": "METASYS", + "group_name": "blackbasta", + "discovered": "2022-10-19 23:49:08.589669" + }, + { + "post_title": "KEMET", + "group_name": "alphv", + "discovered": "2022-10-20 04:31:09.858050" + }, + { + "post_title": "Stages Pediatric Care New 40 personal records", + "group_name": "everest", + "discovered": "2022-10-20 15:44:46.811630" + }, + { + "post_title": "STONE1", + "group_name": "blackbasta", + "discovered": "2022-10-20 15:44:58.706254" + }, + { + "post_title": "ALRO", + "group_name": "blackbasta", + "discovered": "2022-10-20 15:45:00.969367" + }, + { + "post_title": "J.M. Rodgers Co.", + "group_name": "blackbasta", + "discovered": "2022-10-20 15:45:03.171242" + }, + { + "post_title": "EDC3", + "group_name": "blackbasta", + "discovered": "2022-10-20 15:45:05.322916" + }, + { + "post_title": "Pitman Family Farms", + "group_name": "blackbyte", + "discovered": "2022-10-20 23:34:17.654352" + }, + { + "post_title": "Lightbank", + "group_name": "quantum", + "discovered": "2022-10-20 23:34:37.170172" + }, + { + "post_title": "Diamond Mowers", + "group_name": "blackbasta", + "discovered": "2022-10-21 01:42:19.512563" + }, + { + "post_title": "Stages Pediatric Care New 250 personal records", + "group_name": "everest", + "discovered": "2022-10-21 19:41:45.317672" + }, + { + "post_title": "UNE", + "group_name": "blackbyte", + "discovered": "2022-10-21 21:30:37.387089" + }, + { + "post_title": "Egyptian Electric Cooperative Association", + "group_name": "alphv", + "discovered": "2022-10-22 09:30:08.331529" + }, + { + "post_title": "Maternite des Bluets", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:14:56.955195" + }, + { + "post_title": "Mars Area School District", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:14:59.951334" + }, + { + "post_title": "Test Valley School", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:02.109700" + }, + { + "post_title": "Pate's Grammar School", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:04.075239" + }, + { + "post_title": "Marist College Ashgrove", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:06.420285" + }, + { + "post_title": "HALYVOURGIKI.S.A.", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:08.491098" + }, + { + "post_title": "TMShipping", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:10.350355" + }, + { + "post_title": "Grupo Jaime Camara", + "group_name": "vicesociety", + "discovered": "2022-10-23 13:15:12.027045" + }, + { + "post_title": "ORDEREXPRESS.COM.MX", + "group_name": "clop", + "discovered": "2022-10-23 21:43:51.830997" + }, + { + "post_title": "LOESCHGROUP.DE", + "group_name": "clop", + "discovered": "2022-10-23 21:43:54.449457" + }, + { + "post_title": "Kenosha Unified School District", + "group_name": "snatch", + "discovered": "2022-10-23 23:30:17.721028" + }, + { + "post_title": "pendragonplc.com", + "group_name": "lockbit3", + "discovered": "2022-10-24 17:25:03.824129" + }, + { + "post_title": "Tata Power", + "group_name": "hiveleak", + "discovered": "2022-10-25 09:32:09.068166" + }, + { + "post_title": "Lantek Systems Inс", + "group_name": "ransomhouse", + "discovered": "2022-10-25 11:31:47.542590" + }, + { + "post_title": "Rundle Eye Care DataBase Leak", + "group_name": "everest", + "discovered": "2022-10-25 16:06:38.559490" + }, + { + "post_title": "sskb.com.au", + "group_name": "lockbit3", + "discovered": "2022-10-25 17:37:34.780770" + }, + { + "post_title": "Essick Air Products", + "group_name": "blackbasta", + "discovered": "2022-10-26 11:36:41.155692" + }, + { + "post_title": "Associated Lighting Representatives", + "group_name": "blackbasta", + "discovered": "2022-10-26 11:36:41.570407" + }, + { + "post_title": "DURAVIT A.G. - Last Call", + "group_name": "ragnarlocker", + "discovered": "2022-10-26 21:50:35.566487" + }, + { + "post_title": "Municipio de Chihuahua", + "group_name": "blackbyte", + "discovered": "2022-10-26 23:55:09.032316" + }, + { + "post_title": "CCLint", + "group_name": "blackbyte", + "discovered": "2022-10-26 23:55:09.771169" + }, + { + "post_title": "Stages Pediatric Care DataBase on Sale", + "group_name": "everest", + "discovered": "2022-10-27 01:41:56.731532" + }, + { + "post_title": "tiffinmetal.com", + "group_name": "lockbit3", + "discovered": "2022-10-27 09:20:31.578942" + }, + { + "post_title": "steelesolutions.com", + "group_name": "lockbit3", + "discovered": "2022-10-27 11:25:52.554978" + }, + { + "post_title": "Miracapo pizza company", + "group_name": "lorenz", + "discovered": "2022-10-27 13:29:13.891788" + }, + { + "post_title": "Comando Conjunto de las Fuerzas Armadas Del Ecuador", + "group_name": "alphv", + "discovered": "2022-10-27 13:29:37.148184" + }, + { + "post_title": "unipiloto.edu.co", + "group_name": "alphv", + "discovered": "2022-10-27 13:29:37.961575" + }, + { + "post_title": "Mdaemon Technologies", + "group_name": "alphv", + "discovered": "2022-10-27 13:29:38.582045" + }, + { + "post_title": "rjyoung.com", + "group_name": "alphv", + "discovered": "2022-10-27 13:29:39.162909" + }, + { + "post_title": "DURAVIT A.G. - Announcement before publishing data", + "group_name": "ragnarlocker", + "discovered": "2022-10-27 21:36:39.360030" + }, + { + "post_title": "AT&T", + "group_name": "everest", + "discovered": "2022-10-28 09:50:27.248744" + }, + { + "post_title": "The Bishop of Hereford's Bluecoat School", + "group_name": "vicesociety", + "discovered": "2022-10-28 15:35:43.260483" + }, + { + "post_title": "Rankam China Manufacturing", + "group_name": "alphv", + "discovered": "2022-10-28 21:00:22.156763" + }, + { + "post_title": "Kujalleq Municipality", + "group_name": "vicesociety", + "discovered": "2022-10-28 21:00:23.223572" + }, + { + "post_title": "greenstamp.co.jp", + "group_name": "lockbit3", + "discovered": "2022-10-29 11:07:49.093350" + }, + { + "post_title": "fvsra.org", + "group_name": "lockbit3", + "discovered": "2022-10-29 15:11:51.419747" + }, + { + "post_title": "Asahi Group", + "group_name": "blackbyte", + "discovered": "2022-10-29 17:02:31.954548" + }, + { + "post_title": "Kolas Law Firm", + "group_name": "alphv", + "discovered": "2022-10-29 20:48:42.006931" + }, + { + "post_title": "Network Communications Inc", + "group_name": "alphv", + "discovered": "2022-10-29 20:48:44.396418" + }, + { + "post_title": "saurer.com", + "group_name": "lockbit3", + "discovered": "2022-10-29 22:47:39.969319" + }, + { + "post_title": "lincare.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 03:29:41.515819" + }, + { + "post_title": "railway.gov.tw", + "group_name": "lockbit3", + "discovered": "2022-10-30 03:29:43.777546" + }, + { + "post_title": "byp-global.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:08.715007" + }, + { + "post_title": "cacula.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:09.756824" + }, + { + "post_title": "close-upinternational.com.uy", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:10.436129" + }, + { + "post_title": "gruposanford.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:11.888542" + }, + { + "post_title": "hoosierco.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:12.926040" + }, + { + "post_title": "macrotel.com.ar", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:13.912200" + }, + { + "post_title": "seamlessglobalsolutions.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:15.169356" + }, + { + "post_title": "sociedadbilbaina.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:16.117540" + }, + { + "post_title": "zurifurniture.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 16:58:17.035847" + }, + { + "post_title": "aaanchorbolt.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:42.401015" + }, + { + "post_title": "bellettiascensori.it", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:43.127088" + }, + { + "post_title": "coopavegra.fi.cr", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:43.972684" + }, + { + "post_title": "exco.fr", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:44.659358" + }, + { + "post_title": "happmobi.com.br", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:45.225616" + }, + { + "post_title": "santimuni.com", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:46.651693" + }, + { + "post_title": "will-b.jp", + "group_name": "lockbit3", + "discovered": "2022-10-30 18:44:47.574579" + }, + { + "post_title": "HENSOLDT France", + "group_name": "snatch", + "discovered": "2022-10-30 20:56:27.491766" + }, + { + "post_title": "thalesgroup.com", + "group_name": "lockbit3", + "discovered": "2022-10-31 06:52:55.657965" + }, + { + "post_title": "CADEPLOY", + "group_name": "blackbasta", + "discovered": "2022-10-31 10:44:48.864623" + }, + { + "post_title": "STECINT_2", + "group_name": "blackbasta", + "discovered": "2022-10-31 10:44:49.566282" + }, + { + "post_title": "Genesys Aerosystems", + "group_name": "blackbasta", + "discovered": "2022-10-31 20:43:52.339753" + }, + { + "post_title": "Greetings to havi.com and tmsw.com", + "group_name": "shaoleaks", + "discovered": "2022-10-31 22:49:48.642329" + }, + { + "post_title": "Update for boxerproperty", + "group_name": "shaoleaks", + "discovered": "2022-10-31 22:49:49.192279" + }, + { + "post_title": "Some of our customers was not payed to us for data decryption. So we publish some of his d", + "group_name": "shaoleaks", + "discovered": "2022-10-31 22:49:49.659475" + }, + { + "post_title": "Welcome to new customers!", + "group_name": "shaoleaks", + "discovered": "2022-10-31 22:49:50.155307" + }, + { + "post_title": "Midland Cogeneration Venture, Michigan", + "group_name": "quantum", + "discovered": "2022-11-01 18:48:27.813070" + }, + { + "post_title": "fiscosaudepe.com.br", + "group_name": "lockbit3", + "discovered": "2022-11-01 18:48:33.000209" + }, + { + "post_title": "Rooks Heath School", + "group_name": "vicesociety", + "discovered": "2022-11-01 20:43:49.518930" + }, + { + "post_title": "Unidad Medica Angloamericana", + "group_name": "vicesociety", + "discovered": "2022-11-01 20:43:50.366102" + }, + { + "post_title": "YMCA of Metropolitan Washington", + "group_name": "vicesociety", + "discovered": "2022-11-01 20:43:50.922668" + }, + { + "post_title": "Grandview, MO", + "group_name": "snatch", + "discovered": "2022-11-01 22:39:13.006298" + }, + { + "post_title": "MCV Holding Company LLC ", + "group_name": "quantum", + "discovered": "2022-11-02 03:29:23.327339" + }, + { + "post_title": "SICOTEC WAS HACKED. 200GB SENSETIVE DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:24.761006" + }, + { + "post_title": "KINETIC.PH WAS HACKED. 200 GB ENGINEERING AND CONFIDENTIAL DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:25.280556" + }, + { + "post_title": "SUBCARN WAS HACKED AND OVER 200 GB OF SENSETIVE DATA WAS STOLEN", + "group_name": "lv", + "discovered": "2022-11-02 03:29:26.104234" + }, + { + "post_title": "GRUPO SIFU HACKED. MORE THEN 2TB SENSETIVE DATA LEAKED AND READY FOR PUBLICATION", + "group_name": "lv", + "discovered": "2022-11-02 03:29:26.734911" + }, + { + "post_title": "ROUGIER HACKED. 1 TB SENSITIVE DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:27.388475" + }, + { + "post_title": "THEHURSTGROUP.CO.UK - HACKED AND MORE THEN 2000GB SENSITIVE DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:27.923210" + }, + { + "post_title": "PARAMOUNT ENTERPRISE INTERNATIONAL HACKED AND MORE THEN 1.5 TB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:28.529576" + }, + { + "post_title": "WICKERSHAMCONSTRUCTION.COM - HACKED AND MORE THEN 1000GB DATA LEAKED!", + "group_name": "lv", + "discovered": "2022-11-02 03:29:29.110663" + }, + { + "post_title": "AWESOME-DENTAL.COM - HACKED AND MORE THEN 100GB LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:29.766652" + }, + { + "post_title": "Saint Jean Industries - MORE THEN 1.5 TB DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-02 03:29:30.295010" + }, + { + "post_title": "Bitron", + "group_name": "blackbasta", + "discovered": "2022-11-02 10:47:49.623765" + }, + { + "post_title": "tekniplex.be", + "group_name": "lockbit3", + "discovered": "2022-11-02 14:54:48.641014" + }, + { + "post_title": "CONSUMAX.COM.AR - WAS HACKED AND MORE THEN 2TB SENSETIVE DATA LEAKED", + "group_name": "lv", + "discovered": "2022-11-03 06:42:37.368881" + }, + { + "post_title": "continental.com", + "group_name": "lockbit3", + "discovered": "2022-11-03 16:56:23.389318" + }, + { + "post_title": "Landi Renzo", + "group_name": "hiveleak", + "discovered": "2022-11-03 18:56:09.933351" + }, + { + "post_title": "hettichbenelux.com", + "group_name": "lockbit3", + "discovered": "2022-11-03 21:02:52.126985" + }, + { + "post_title": "Dialogsas", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.428169" + }, + { + "post_title": "Ginspectionservices", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.478743" + }, + { + "post_title": "Murphyfamilyventures", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.529664" + }, + { + "post_title": "Skupstina", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.580383" + }, + { + "post_title": "Ville-chaville", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.631544" + }, + { + "post_title": "afts", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.682623" + }, + { + "post_title": "axley", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.742411" + }, + { + "post_title": "bcintlgroup.com", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.805669" + }, + { + "post_title": "berding-weil", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.858885" + }, + { + "post_title": "bfw", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.909672" + }, + { + "post_title": "blackhawk", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:53.961138" + }, + { + "post_title": "creditriskmonitor", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.042300" + }, + { + "post_title": "datamatics", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.094637" + }, + { + "post_title": "e.h._wachs_pipe_cutters", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.158769" + }, + { + "post_title": "first_coast_logistics_services", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.293377" + }, + { + "post_title": "forefront_dermatology", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.363282" + }, + { + "post_title": "gascaribe", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.427551" + }, + { + "post_title": "get-integrated", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.480939" + }, + { + "post_title": "innovairre", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.532878" + }, + { + "post_title": "landofrost", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.593383" + }, + { + "post_title": "learning_resources", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.645388" + }, + { + "post_title": "linkmfg", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.695836" + }, + { + "post_title": "lycra", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.746186" + }, + { + "post_title": "megaforce", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.798104" + }, + { + "post_title": "meriplex", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.851058" + }, + { + "post_title": "ncmutuallife2", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:54.948792" + }, + { + "post_title": "nwdusa", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.000661" + }, + { + "post_title": "ohagin", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.052276" + }, + { + "post_title": "otrcapital", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.101792" + }, + { + "post_title": "quercus", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.168864" + }, + { + "post_title": "schultheis-ins", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.238232" + }, + { + "post_title": "site-technology_", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.297793" + }, + { + "post_title": "stm.com.tw", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.367427" + }, + { + "post_title": "technicote", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.437283" + }, + { + "post_title": "the_rose_executive_team", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.489179" + }, + { + "post_title": "trant.co.uk", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.540929" + }, + { + "post_title": "usairports", + "group_name": "cuba", + "discovered": "2022-11-04 10:19:55.601777" + }, + { + "post_title": "Läderach", + "group_name": "bianlian", + "discovered": "2022-11-04 10:20:05.346007" + }, + { + "post_title": "CLUB DE TENIS LA PAZ", + "group_name": "mallox", + "discovered": "2022-11-04 10:20:06.734330" + }, + { + "post_title": "Aerotech Precision Manufacturing", + "group_name": "mallox", + "discovered": "2022-11-04 10:20:06.786996" + }, + { + "post_title": "API MDC Technical Research Centre Sdn Bhd", + "group_name": "mallox", + "discovered": "2022-11-04 10:20:06.837033" + }, + { + "post_title": "Canny Elevator Co Ltd", + "group_name": "mallox", + "discovered": "2022-11-04 10:20:06.892504" + }, + { + "post_title": "https://quantumplastics.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.010494" + }, + { + "post_title": "https://fishmans.ca", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.070353" + }, + { + "post_title": "http://www.cymax.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.137201" + }, + { + "post_title": "http://www.pressco.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.208880" + }, + { + "post_title": "http://www.veroni.it", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.269267" + }, + { + "post_title": "http://www.pandafunds.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.336366" + }, + { + "post_title": "https://www.whitneyoilco.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.446699" + }, + { + "post_title": "http://www.royalimaging.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.538347" + }, + { + "post_title": "http://www.wiseyes.net", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.598558" + }, + { + "post_title": "https://www.infocision.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.650275" + }, + { + "post_title": "https://www.mmemed.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.719971" + }, + { + "post_title": "https://orthoexperts.com/", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.798603" + }, + { + "post_title": "http://www.power-soft.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.866599" + }, + { + "post_title": "https://www.sunwell.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:07.939059" + }, + { + "post_title": "https://millermilling.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.040633" + }, + { + "post_title": "https://www.benbrooklibrary.org", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.268343" + }, + { + "post_title": "https://www.caminorealkitchens.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.337886" + }, + { + "post_title": "https://happysapiensdental.com", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.411543" + }, + { + "post_title": "https://www.prioritypower.net", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.496390" + }, + { + "post_title": "https://nmhsi.org", + "group_name": "royal", + "discovered": "2022-11-04 10:20:08.548951" + }, + { + "post_title": "Broto Legal", + "group_name": "blackbyte", + "discovered": "2022-11-05 08:50:05.973749" + }, + { + "post_title": "PETERSON & HANSON", + "group_name": "blackbyte", + "discovered": "2022-11-05 08:50:06.897115" + }, + { + "post_title": "MITCON Consultancy & Engineering Services Limited", + "group_name": "blackbasta", + "discovered": "2022-11-05 13:07:47.714164" + }, + { + "post_title": "KEARNEYCO.COM", + "group_name": "lockbit3", + "discovered": "2022-11-05 16:59:18.868478" + }, + { + "post_title": "everstrong.com", + "group_name": "lockbit3", + "discovered": "2022-11-05 16:59:20.642734" + }, + { + "post_title": "https://www.zoominfo.com/c/maynards-industries-ltd/24117794", + "group_name": "royal", + "discovered": "2022-11-05 16:59:24.594363" + }, + { + "post_title": "HUSSEY GAY BELL", + "group_name": "alphv", + "discovered": "2022-11-06 08:56:59.122435" + }, + { + "post_title": "optiprint.ca", + "group_name": "lockbit3", + "discovered": "2022-11-06 21:04:05.336910" + }, + { + "post_title": "rockworthindia.com", + "group_name": "lockbit3", + "discovered": "2022-11-06 21:04:06.648240" + }, + { + "post_title": "thenet.group", + "group_name": "lockbit3", + "discovered": "2022-11-06 21:04:07.734703" + }, + { + "post_title": "CR&R Environmental Services", + "group_name": "vicesociety", + "discovered": "2022-11-06 23:01:38.248915" + }, + { + "post_title": "richard-wolf.com", + "group_name": "lockbit3", + "discovered": "2022-11-07 15:03:55.461542" + }, + { + "post_title": "http://www.sheehanfamilycompanies.com", + "group_name": "royal", + "discovered": "2022-11-07 15:03:57.793484" + }, + { + "post_title": "Bosselman Energy Inc", + "group_name": "alphv", + "discovered": "2022-11-07 16:57:59.698245" + }, + { + "post_title": "Wilken Software Group", + "group_name": "blackbasta", + "discovered": "2022-11-07 19:01:53.773903" + }, + { + "post_title": "ALTEK", + "group_name": "blackbyte", + "discovered": "2022-11-07 21:06:30.983473" + }, + { + "post_title": "https://www.sohnen.com/", + "group_name": "royal", + "discovered": "2022-11-07 21:06:59.086032" + }, + { + "post_title": "http://ivacorm.com", + "group_name": "royal", + "discovered": "2022-11-07 21:06:59.898336" + }, + { + "post_title": "ROYAL GATEWAY CO., LTD", + "group_name": "hiveleak", + "discovered": "2022-11-07 22:57:52.173893" + }, + { + "post_title": "TCQ", + "group_name": "hiveleak", + "discovered": "2022-11-07 22:57:53.399405" + }, + { + "post_title": "Cornwell Quality Tools", + "group_name": "hiveleak", + "discovered": "2022-11-07 22:57:54.887707" + }, + { + "post_title": "METRO", + "group_name": "blackbasta", + "discovered": "2022-11-07 22:57:57.400294" + }, + { + "post_title": "crtl.com", + "group_name": "lockbit3", + "discovered": "2022-11-08 12:58:44.856331" + }, + { + "post_title": "thaiho.com", + "group_name": "lockbit3", + "discovered": "2022-11-08 12:58:47.132537" + }, + { + "post_title": "APM Terminals", + "group_name": "hiveleak", + "discovered": "2022-11-08 17:06:31.008613" + }, + { + "post_title": "Motional", + "group_name": "alphv", + "discovered": "2022-11-08 19:15:39.376630" + }, + { + "post_title": "http://aviso.ci", + "group_name": "royal", + "discovered": "2022-11-08 22:59:12.456384" + }, + { + "post_title": "http://www.h-ortmeier.de", + "group_name": "royal", + "discovered": "2022-11-08 22:59:13.169905" + }, + { + "post_title": "http://www.zender.de", + "group_name": "royal", + "discovered": "2022-11-09 01:23:23.995819" + }, + { + "post_title": "http://www.silverstone.co.uk", + "group_name": "royal", + "discovered": "2022-11-09 01:23:24.628055" + }, + { + "post_title": "waltersandwolf", + "group_name": "cuba", + "discovered": "2022-11-09 08:59:24.126862" + }, + { + "post_title": "LAW OFFICES OF JOHN T ORCUTT WAS HACKED. MORE THEN 2TB SENSETIVE DATA LEAKED.", + "group_name": "lv", + "discovered": "2022-11-09 10:49:56.957525" + }, + { + "post_title": "http://www.adven.com", + "group_name": "royal", + "discovered": "2022-11-09 13:11:37.146236" + }, + { + "post_title": "shmcomputers.screenconnect.com", + "group_name": "lockbit3", + "discovered": "2022-11-09 18:59:51.010761" + }, + { + "post_title": "carone.com.mx", + "group_name": "lockbit3", + "discovered": "2022-11-09 21:00:54.484191" + }, + { + "post_title": "oehc.corsica", + "group_name": "lockbit3", + "discovered": "2022-11-09 21:00:56.315922" + }, + { + "post_title": "sinopecthc.com", + "group_name": "lockbit3", + "discovered": "2022-11-09 21:00:57.825448" + }, + { + "post_title": "stavbar.cz", + "group_name": "lockbit3", + "discovered": "2022-11-09 21:00:58.638459" + }, + { + "post_title": "Hartnell College", + "group_name": "vicesociety", + "discovered": "2022-11-09 22:53:11.193514" + }, + { + "post_title": "adnec.ae", + "group_name": "lockbit3", + "discovered": "2022-11-09 22:53:13.190151" + }, + { + "post_title": "chahousing.org", + "group_name": "lockbit3", + "discovered": "2022-11-09 22:53:13.995154" + }, + { + "post_title": "thecondorgroup.com", + "group_name": "lockbit3", + "discovered": "2022-11-09 22:53:16.081840" + }, + { + "post_title": "CONFORAMA - HACKED AND MORE THEN 1TB DATA LEAKED!", + "group_name": "alphv", + "discovered": "2022-11-10 07:00:48.917664" + }, + { + "post_title": "MCCROSSAN", + "group_name": "hiveleak", + "discovered": "2022-11-10 13:03:09.326033" + }, + { + "post_title": "Main & Main Capital Group", + "group_name": "lorenz", + "discovered": "2022-11-10 21:31:29.388337" + }, + { + "post_title": "Kreisverwaltung Rhein-Pfalz-Kreis", + "group_name": "vicesociety", + "discovered": "2022-11-10 23:39:21.901213" + }, + { + "post_title": "Aeronautics company Canada", + "group_name": "everest", + "discovered": "2022-11-11 01:26:05.015876" + }, + { + "post_title": "amarillogeeks.webhop.org", + "group_name": "lockbit3", + "discovered": "2022-11-11 03:48:53.603132" + }, + { + "post_title": "J & D Pierce Contracts Ltd", + "group_name": "alphv", + "discovered": "2022-11-11 07:15:53.640072" + }, + { + "post_title": "http://bfernandez.com", + "group_name": "royal", + "discovered": "2022-11-11 11:27:52.708300" + }, + { + "post_title": "Motional.com", + "group_name": "alphv", + "discovered": "2022-11-11 15:27:00.653198" + }, + { + "post_title": "BRAZILIAN PET FOODS", + "group_name": "lv", + "discovered": "2022-11-11 19:06:52.696437" + }, + { + "post_title": "https://www.qep.com", + "group_name": "royal", + "discovered": "2022-11-11 19:07:01.378519" + }, + { + "post_title": "http://doctorscenterhospital.com", + "group_name": "projectrelic", + "discovered": "2022-11-12 03:38:32.676642" + }, + { + "post_title": "http://sterlingbattery.com", + "group_name": "projectrelic", + "discovered": "2022-11-12 03:38:33.336604" + }, + { + "post_title": "http://turnercpas.com", + "group_name": "projectrelic", + "discovered": "2022-11-12 03:38:33.947087" + }, + { + "post_title": "http://broad-med.com", + "group_name": "projectrelic", + "discovered": "2022-11-12 03:38:34.578405" + }, + { + "post_title": "http://willisklein.com", + "group_name": "projectrelic", + "discovered": "2022-11-12 03:38:35.206594" + }, + { + "post_title": "nobilityrcm.com / altapartnersllc.com / MFAST.com / MSBS.biz sym / elitemedicalbill.com", + "group_name": "alphv", + "discovered": "2022-11-12 10:50:59.444712" + }, + { + "post_title": "Blog is empty", + "group_name": "revil", + "discovered": "2022-11-12 21:00:07.476324" + }, + { + "post_title": "CENTRAL BANK OF GAMBIA HACKED. 2 TB OF CRITICAL DATA WAS STOLEN.", + "group_name": "alphv", + "discovered": "2022-11-13 13:15:13.145789" + }, + { + "post_title": "Midland Cogeneration Venture", + "group_name": "quantum", + "discovered": "2022-11-13 19:40:23.135812" + }, + { + "post_title": "Saurer", + "group_name": "snatch", + "discovered": "2022-11-13 21:40:03.572767" + }, + { + "post_title": "Popp Hutcheson PLLC", + "group_name": "blackbasta", + "discovered": "2022-11-13 21:40:07.495168" + }, + { + "post_title": "YASH Technologies", + "group_name": "snatch", + "discovered": "2022-11-13 23:35:14.705595" + }, + { + "post_title": "Salud Family Health", + "group_name": "lorenz", + "discovered": "2022-11-14 09:35:42.510434" + }, + { + "post_title": "Nissan of Las Cruces", + "group_name": "lorenz", + "discovered": "2022-11-14 09:35:43.095433" + }, + { + "post_title": "THEW ASSOCIATES HACKED. MORE THEN 50 GB SENSETIVE DATA LEAKED.", + "group_name": "lv", + "discovered": "2022-11-14 13:49:32.563048" + }, + { + "post_title": "Baysgarth School", + "group_name": "vicesociety", + "discovered": "2022-11-14 21:31:31.407485" + }, + { + "post_title": "scottindustrialsystems.com", + "group_name": "lockbit3", + "discovered": "2022-11-14 21:31:36.317466" + }, + { + "post_title": "https://www.keenanins.com", + "group_name": "royal", + "discovered": "2022-11-15 01:31:26.722480" + }, + { + "post_title": "Dyatech company", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:15.762107" + }, + { + "post_title": "BIOPLAN", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:15.814962" + }, + { + "post_title": "Autosoft company", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:15.864532" + }, + { + "post_title": "lawtrade company", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:15.914046" + }, + { + "post_title": "MCCLEAN16 company", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:15.963952" + }, + { + "post_title": "LEGAZPIBANK", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.013759" + }, + { + "post_title": "Zelena Laguna Hotel", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.065335" + }, + { + "post_title": "Fonderia Boccacci", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.115891" + }, + { + "post_title": "ALTlTUDE AEROSPACE INC", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.165765" + }, + { + "post_title": "archimages inc", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.214881" + }, + { + "post_title": "atlantisholidays", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.265128" + }, + { + "post_title": "tristatefabricators_inc", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.315245" + }, + { + "post_title": "Salmon Software", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.366613" + }, + { + "post_title": "hwrpc.com", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.417236" + }, + { + "post_title": "exheat.com", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.467432" + }, + { + "post_title": "goldcreekfoods", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.516812" + }, + { + "post_title": "fidelityunited.ae", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.566826" + }, + { + "post_title": "AURIS KONINKLIJKE AURIS GROEP", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.617035" + }, + { + "post_title": "MIDAS Company", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.666592" + }, + { + "post_title": "emscrm", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.716794" + }, + { + "post_title": "DGLEGAL", + "group_name": "ransomblog_noname", + "discovered": "2022-11-15 07:39:16.766218" + }, + { + "post_title": "LCMH", + "group_name": "hiveleak", + "discovered": "2022-11-15 09:25:45.088133" + }, + { + "post_title": "amend.com.br", + "group_name": "lockbit3", + "discovered": "2022-11-15 13:18:55.174913" + }, + { + "post_title": "gulfcoastwindows.com", + "group_name": "lockbit3", + "discovered": "2022-11-15 13:18:56.951263" + }, + { + "post_title": "itis-technology.com", + "group_name": "lockbit3", + "discovered": "2022-11-15 13:18:57.790248" + }, + { + "post_title": "linkplus.com.hk", + "group_name": "lockbit3", + "discovered": "2022-11-15 13:18:58.705280" + }, + { + "post_title": "zagiel.pl", + "group_name": "lockbit3", + "discovered": "2022-11-15 13:19:01.067159" + }, + { + "post_title": "Hydro-Gear & Agri-Fab", + "group_name": "hiveleak", + "discovered": "2022-11-15 17:22:58.641365" + }, + { + "post_title": "http://www.lamtec.com", + "group_name": "royal", + "discovered": "2022-11-15 17:23:06.959592" + }, + { + "post_title": "https://www.cristalcontrols.com", + "group_name": "royal", + "discovered": "2022-11-15 23:13:25.073805" + }, + { + "post_title": "Aeronautics company Canada / Production of parts for aircraft engines", + "group_name": "everest", + "discovered": "2022-11-16 15:39:38.064462" + }, + { + "post_title": "IMA Financial Group, Inc.", + "group_name": "blackbasta", + "discovered": "2022-11-16 15:39:47.846136" + }, + { + "post_title": "Belgium company Zwijndrecht - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-11-16 17:38:09.144244" + }, + { + "post_title": "https://www.m2selectronics.com", + "group_name": "royal", + "discovered": "2022-11-17 09:42:08.167518" + }, + { + "post_title": "Kessing Rechtsanwälte und Fachanwälte in PartGmbB", + "group_name": "blackbasta", + "discovered": "2022-11-17 13:28:05.055499" + }, + { + "post_title": "Giambalvo, Stalzer & Co.", + "group_name": "alphv", + "discovered": "2022-11-17 15:34:12.857827" + }, + { + "post_title": "Institute of Science and Technology Austria", + "group_name": "vicesociety", + "discovered": "2022-11-17 21:19:27.090444" + }, + { + "post_title": "https://naulty.com/", + "group_name": "royal", + "discovered": "2022-11-18 01:58:15.259525" + }, + { + "post_title": "KlamoyaCasino", + "group_name": "alphv", + "discovered": "2022-11-18 04:28:01.950353" + }, + { + "post_title": "https://www.vafb.com", + "group_name": "royal", + "discovered": "2022-11-18 17:26:34.574667" + }, + { + "post_title": "UNITEDAUTO.MX HAVE BEEN HACKED DUE TO MULTIPLE NETWORK VULNERABILITIES. MORE THAN 2TB OF P", + "group_name": "lv", + "discovered": "2022-11-19 09:24:44.704165" + }, + { + "post_title": "norseman.ca", + "group_name": "lockbit3", + "discovered": "2022-11-19 09:24:53.589733" + }, + { + "post_title": "AirAsia Group (MY, ID, TH)", + "group_name": "daixin", + "discovered": "2022-11-19 23:29:49.780614" + }, + { + "post_title": "https://mcandrewslaw.com/", + "group_name": "royal", + "discovered": "2022-11-20 04:18:38.123357" + }, + { + "post_title": "westmount.org", + "group_name": "lockbit3", + "discovered": "2022-11-20 15:25:57.885295" + }, + { + "post_title": "Nok Air", + "group_name": "alphv", + "discovered": "2022-11-20 19:34:48.279263" + }, + { + "post_title": "SAIPRESS", + "group_name": "snatch", + "discovered": "2022-11-20 23:37:12.931570" + }, + { + "post_title": "McGRATH", + "group_name": "snatch", + "discovered": "2022-11-20 23:37:13.599733" + }, + { + "post_title": "www.projectredirectdc.org", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:05.862278" + }, + { + "post_title": "www.minex.gob.gt", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:06.653586" + }, + { + "post_title": "www.jaspercountysheriffoffice.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:07.289147" + }, + { + "post_title": "www.arisaseguros.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:08.146601" + }, + { + "post_title": "www.cucafresca.com.br", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:08.918426" + }, + { + "post_title": "www.advantagedirectcare.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:09.442291" + }, + { + "post_title": "www.waynefamilypractice.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:10.326403" + }, + { + "post_title": "www.pacmaritime.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:11.174018" + }, + { + "post_title": "www.baltholding.eu", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:11.914359" + }, + { + "post_title": "www.semaphorehq.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:12.437373" + }, + { + "post_title": "www.ackermanplumbinginc.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:13.219310" + }, + { + "post_title": "www.candcfarmsupply.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:13.823129" + }, + { + "post_title": "www.wayan.com.mx", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:14.463258" + }, + { + "post_title": "www.artisticstairs.com", + "group_name": "onyx", + "discovered": "2022-11-21 08:12:15.337923" + }, + { + "post_title": "https://emtelco.com.co", + "group_name": "qilin", + "discovered": "2022-11-21 08:12:20.353396" + }, + { + "post_title": "https://lojastorra.com.br", + "group_name": "qilin", + "discovered": "2022-11-21 08:12:20.906452" + }, + { + "post_title": "https://contempocard.com", + "group_name": "qilin", + "discovered": "2022-11-21 08:12:21.486595" + }, + { + "post_title": "https://robertbernard.com", + "group_name": "qilin", + "discovered": "2022-11-21 08:12:22.319394" + }, + { + "post_title": "https://dialog.com.au", + "group_name": "qilin", + "discovered": "2022-11-21 08:12:22.940037" + }, + { + "post_title": "Aeronautics company Canada / UTC Aerospace Systems, Bombardier aerospace partners", + "group_name": "everest", + "discovered": "2022-11-21 21:40:37.139139" + }, + { + "post_title": "ryokikogyo.co.jp", + "group_name": "lockbit3", + "discovered": "2022-11-22 01:49:56.731742" + }, + { + "post_title": "ssp-worldwide.com", + "group_name": "lockbit3", + "discovered": "2022-11-22 01:49:58.200466" + }, + { + "post_title": "Leak Announcement - IT company ITonCLOUD", + "group_name": "ragnarlocker", + "discovered": "2022-11-22 13:33:18.086394" + }, + { + "post_title": "SMB Solutions", + "group_name": "ransomhouse", + "discovered": "2022-11-22 13:33:36.941165" + }, + { + "post_title": "lapiamontesa", + "group_name": "blackbyte", + "discovered": "2022-11-22 17:24:50.387447" + }, + { + "post_title": "Aeronautics company Canada / UTC Aerospace Systems, Bombardier aerospace, NASA partners", + "group_name": "everest", + "discovered": "2022-11-23 17:00:48.008898" + }, + { + "post_title": "Norman Public Schools", + "group_name": "hiveleak", + "discovered": "2022-11-23 17:00:56.136027" + }, + { + "post_title": "Astra Daihatsu Motor (ID)", + "group_name": "daixin", + "discovered": "2022-11-24 01:17:50.808034" + }, + { + "post_title": "Pmc-group", + "group_name": "cuba", + "discovered": "2022-11-24 15:08:36.436341" + }, + { + "post_title": "Cincinnati State", + "group_name": "vicesociety", + "discovered": "2022-11-24 15:08:42.308605" + }, + { + "post_title": "https://www.labusinessjournal.com", + "group_name": "royal", + "discovered": "2022-11-24 19:26:01.543822" + }, + { + "post_title": "Ta Chen Stainless Pipe Co., Ltd", + "group_name": "alphv", + "discovered": "2022-11-24 21:08:49.561248" + }, + { + "post_title": "Harry Rosen", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:27.979552" + }, + { + "post_title": "Rentz Management", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:28.788528" + }, + { + "post_title": "Boon Tool Co", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:29.334271" + }, + { + "post_title": "Gazelle International Ltd", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:30.310040" + }, + { + "post_title": "Versah", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:30.872035" + }, + { + "post_title": "Centura College", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:31.434896" + }, + { + "post_title": "Modular Mining", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:32.065962" + }, + { + "post_title": "Myton School", + "group_name": "bianlian", + "discovered": "2022-11-24 23:00:32.570096" + }, + { + "post_title": "Guilford College", + "group_name": "hiveleak", + "discovered": "2022-11-25 09:06:29.630278" + }, + { + "post_title": "ITM", + "group_name": "blackbasta", + "discovered": "2022-11-25 13:05:31.581409" + }, + { + "post_title": "Essent company - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-11-25 15:06:17.492343" + }, + { + "post_title": "https://www.friedmanlawoffices.com/", + "group_name": "royal", + "discovered": "2022-11-26 01:38:30.613088" + }, + { + "post_title": "GLEN DIMPLEX GROUP UNITS WERE HACKED (DEFOND, DEFONDTECH AND OTHER). MORE THAN 1TB DATA WA", + "group_name": "lv", + "discovered": "2022-11-27 17:31:10.829280" + }, + { + "post_title": "Badger Truck Refrigeration, Inc", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:19.722462" + }, + { + "post_title": "Block Buildings LLC", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:20.331117" + }, + { + "post_title": "Altec Engineering LLC", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:20.807562" + }, + { + "post_title": "Samrin Services Pvt Ltd", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:21.400528" + }, + { + "post_title": "Power Plant Services LLC", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:21.956787" + }, + { + "post_title": "VANOSS Public School", + "group_name": "bianlian", + "discovered": "2022-11-27 17:31:22.449363" + }, + { + "post_title": "STGi", + "group_name": "snatch", + "discovered": "2022-11-27 21:42:06.827247" + }, + { + "post_title": "IKEA Morocco", + "group_name": "vicesociety", + "discovered": "2022-11-28 01:40:24.285706" + }, + { + "post_title": "https://tubularsteel.ca", + "group_name": "royal", + "discovered": "2022-11-28 01:40:30.219217" + }, + { + "post_title": "Vision Technologies", + "group_name": "alphv", + "discovered": "2022-11-28 09:50:36.502465" + }, + { + "post_title": "bankseta.org.za", + "group_name": "lockbit3", + "discovered": "2022-11-28 09:50:40.091510" + }, + { + "post_title": "Sunknowledge Services Inc", + "group_name": "revil", + "discovered": "2022-11-28 13:49:18.258806" + }, + { + "post_title": "kusd.edu", + "group_name": "revil", + "discovered": "2022-11-28 23:39:36.519686" + }, + { + "post_title": "https://www.cates.com", + "group_name": "royal", + "discovered": "2022-11-29 02:06:23.184150" + }, + { + "post_title": "https://www.rmclaw.net/", + "group_name": "royal", + "discovered": "2022-11-29 02:06:23.909761" + }, + { + "post_title": "Stibbs & Co", + "group_name": "alphv", + "discovered": "2022-11-29 11:21:27.664191" + }, + { + "post_title": "colonialgeneral.com", + "group_name": "lockbit3", + "discovered": "2022-11-29 11:21:31.646726" + }, + { + "post_title": "Plascar Participacoes Industriais", + "group_name": "vicesociety", + "discovered": "2022-11-29 19:52:44.395827" + }, + { + "post_title": "Shenzhen INVT Electric Co.,Ltd", + "group_name": "alphv", + "discovered": "2022-11-30 11:26:06.294958" + }, + { + "post_title": "Patton", + "group_name": "cuba", + "discovered": "2022-11-30 15:17:10.233602" + }, + { + "post_title": "Holler-Classic", + "group_name": "lorenz", + "discovered": "2022-12-01 13:40:30.988815" + }, + { + "post_title": "Boss-inc", + "group_name": "cuba", + "discovered": "2022-12-01 13:40:50.936102" + }, + { + "post_title": "Generator-power", + "group_name": "cuba", + "discovered": "2022-12-01 13:40:51.670462" + }, + { + "post_title": "Landaumedia", + "group_name": "cuba", + "discovered": "2022-12-01 13:40:52.315412" + }, + { + "post_title": "Maple Leaf Foods", + "group_name": "blackbasta", + "discovered": "2022-12-01 13:41:00.482514" + }, + { + "post_title": "8x8.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:50.437863" + }, + { + "post_title": "adamjeeinsurance.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:51.417848" + }, + { + "post_title": "ckfinc.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:52.556289" + }, + { + "post_title": "hildinganders.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:53.812799" + }, + { + "post_title": "menziesaviation.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:54.839082" + }, + { + "post_title": "smithsinterconnect.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:56.038192" + }, + { + "post_title": "st-group.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:56.773787" + }, + { + "post_title": "thorntontomasetti.com", + "group_name": "lockbit3", + "discovered": "2022-12-02 11:35:57.511477" + }, + { + "post_title": "http://www.yoursummit.com", + "group_name": "royal", + "discovered": "2022-12-02 19:29:54.902308" + }, + { + "post_title": "http://www.pgtinnovations.com", + "group_name": "royal", + "discovered": "2022-12-02 19:29:56.279283" + }, + { + "post_title": "https://allseasonmovers.com", + "group_name": "royal", + "discovered": "2022-12-03 17:04:01.308386" + }, + { + "post_title": "abilways.com", + "group_name": "lockbit3", + "discovered": "2022-12-04 01:35:33.688724" + }, + { + "post_title": "Cappagh Contractors Construction (London) Ltd", + "group_name": "alphv", + "discovered": "2022-12-04 05:44:02.558853" + }, + { + "post_title": "Philippine Economic Zone Authority (PEZA) peza.gov.ph", + "group_name": "alphv", + "discovered": "2022-12-04 05:44:03.418998" + }, + { + "post_title": "pro office Büro + Wohnkultur GmbH", + "group_name": "alphv", + "discovered": "2022-12-04 05:44:04.038507" + }, + { + "post_title": "Jubilant", + "group_name": "alphv", + "discovered": "2022-12-04 05:44:04.963617" + }, + { + "post_title": "Grupo NGN", + "group_name": "alphv", + "discovered": "2022-12-04 11:53:51.320195" + }, + { + "post_title": "https://duplicatorsales.net/", + "group_name": "royal", + "discovered": "2022-12-04 15:53:47.845585" + }, + { + "post_title": "https://www.trussbilt.com", + "group_name": "royal", + "discovered": "2022-12-04 15:53:48.708808" + }, + { + "post_title": "brunoy.fr", + "group_name": "lockbit3", + "discovered": "2022-12-04 23:29:17.603344" + }, + { + "post_title": "handrhealthcare.com", + "group_name": "lockbit3", + "discovered": "2022-12-04 23:29:19.307583" + }, + { + "post_title": "sentenia.net", + "group_name": "lockbit3", + "discovered": "2022-12-04 23:29:21.365121" + }, + { + "post_title": "moruga it", + "group_name": "alphv", + "discovered": "2022-12-05 11:41:53.357894" + }, + { + "post_title": "LJ Hooker Palm Beach", + "group_name": "alphv", + "discovered": "2022-12-05 11:41:54.159696" + }, + { + "post_title": "Technologies", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:13.198479" + }, + { + "post_title": "AV Solutions", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:14.245140" + }, + { + "post_title": " School", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:15.488482" + }, + { + "post_title": "IM Group", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:16.293441" + }, + { + "post_title": "CROWN TECHNOLOGY Ltd", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:16.868550" + }, + { + "post_title": "Ability Commerce", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:17.700938" + }, + { + "post_title": " Restaurant", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:18.503770" + }, + { + "post_title": "Bonn Nutrients Pvt", + "group_name": "bianlian", + "discovered": "2022-12-05 19:38:19.783593" + }, + { + "post_title": "Glutz", + "group_name": "vicesociety", + "discovered": "2022-12-05 21:32:13.868649" + }, + { + "post_title": "littleswitzerland.com", + "group_name": "lockbit3", + "discovered": "2022-12-05 21:32:17.600899" + }, + { + "post_title": "prinovaglobal.com", + "group_name": "lockbit3", + "discovered": "2022-12-05 21:32:19.220922" + }, + { + "post_title": "BRYCON Construction", + "group_name": "ransomhouse", + "discovered": "2022-12-05 23:51:57.046146" + }, + { + "post_title": "NCI CABLING INC", + "group_name": "alphv", + "discovered": "2022-12-06 01:53:20.789147" + }, + { + "post_title": "Novak Law Offices", + "group_name": "alphv", + "discovered": "2022-12-06 01:53:22.207538" + }, + { + "post_title": "Elias Motsoaledi Local Municiapality", + "group_name": "alphv", + "discovered": "2022-12-06 01:53:22.943918" + }, + { + "post_title": "INTERSPORT France", + "group_name": "hiveleak", + "discovered": "2022-12-06 03:44:25.633007" + }, + { + "post_title": "amundson.co.nz", + "group_name": "lockbit3", + "discovered": "2022-12-06 15:52:28.120439" + }, + { + "post_title": "g4s.com", + "group_name": "lockbit3", + "discovered": "2022-12-06 15:52:30.158800" + }, + { + "post_title": "myersontooth.com", + "group_name": "lockbit3", + "discovered": "2022-12-06 15:52:31.708002" + }, + { + "post_title": "PANOLAM", + "group_name": "blackbasta", + "discovered": "2022-12-06 17:28:51.600236" + }, + { + "post_title": "Feu Vert", + "group_name": "vicesociety", + "discovered": "2022-12-06 21:34:11.168711" + }, + { + "post_title": "Requena", + "group_name": "alphv", + "discovered": "2022-12-07 03:27:08.584520" + }, + { + "post_title": "https://afasd.net", + "group_name": "royal", + "discovered": "2022-12-07 07:15:10.149615" + }, + { + "post_title": "Albina Asphalt", + "group_name": "lorenz", + "discovered": "2022-12-07 13:17:36.231134" + }, + { + "post_title": "Warren County Community College", + "group_name": "alphv", + "discovered": "2022-12-08 19:20:40.587797" + }, + { + "post_title": "New Partners", + "group_name": "vicesociety", + "discovered": "2022-12-08 23:09:03.960563" + }, + { + "post_title": "AHT Wisconsin Windows", + "group_name": "quantum", + "discovered": "2022-12-09 01:27:59.909716" + }, + { + "post_title": "Pilenpak", + "group_name": "quantum", + "discovered": "2022-12-09 01:28:00.967660" + }, + { + "post_title": "Acquarius Trust Group", + "group_name": "quantum", + "discovered": "2022-12-09 01:28:02.004641" + }, + { + "post_title": "Orotex", + "group_name": "quantum", + "discovered": "2022-12-09 01:28:02.671469" + }, + { + "post_title": "Radical Sportscars", + "group_name": "quantum", + "discovered": "2022-12-09 01:28:03.700077" + }, + { + "post_title": "ChemiFlex", + "group_name": "quantum", + "discovered": "2022-12-09 01:28:04.515767" + }, + { + "post_title": "nworksllc", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:36.536998" + }, + { + "post_title": "SEACAST", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:37.679740" + }, + { + "post_title": "Panolam Surface Systems", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:38.346347" + }, + { + "post_title": "AIRCOMECHANICAL", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:38.959958" + }, + { + "post_title": "Cleveland Brothers", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:39.599509" + }, + { + "post_title": "A.R. Thomson Group", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:40.271398" + }, + { + "post_title": "ARRI", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:40.865751" + }, + { + "post_title": "Mortons Media Group Ltd", + "group_name": "blackbasta", + "discovered": "2022-12-09 11:18:41.556660" + }, + { + "post_title": "Dingbro Ltd", + "group_name": "blackbasta", + "discovered": "2022-12-09 13:16:57.647869" + }, + { + "post_title": "Atcore", + "group_name": "blackbasta", + "discovered": "2022-12-09 13:16:58.646440" + }, + { + "post_title": "Maney | Gordon | Zeller, P.A.", + "group_name": "blackbasta", + "discovered": "2022-12-09 15:33:20.051641" + }, + { + "post_title": "SOFTEQ.COM", + "group_name": "clop", + "discovered": "2022-12-09 17:25:21.813297" + }, + { + "post_title": "hawanasalalah.com", + "group_name": "lockbit3", + "discovered": "2022-12-09 17:25:43.031971" + }, + { + "post_title": "rhotelja.com", + "group_name": "lockbit3", + "discovered": "2022-12-09 17:25:44.779605" + }, + { + "post_title": "oltax.com", + "group_name": "lockbit3", + "discovered": "2022-12-10 01:40:58.102268" + }, + { + "post_title": "Aeroproductsco", + "group_name": "alphv", + "discovered": "2022-12-10 03:46:44.681839" + }, + { + "post_title": "biotipo.com.br", + "group_name": "lockbit3", + "discovered": "2022-12-10 07:12:51.973635" + }, + { + "post_title": "koda.com.tw", + "group_name": "lockbit3", + "discovered": "2022-12-10 09:30:14.905614" + }, + { + "post_title": "dothousehealth.org", + "group_name": "alphv", + "discovered": "2022-12-10 13:07:23.044388" + }, + { + "post_title": "KNOX College", + "group_name": "hiveleak", + "discovered": "2022-12-10 15:32:14.428410" + }, + { + "post_title": "The Beacon Insurance Company Limited", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:21.286705" + }, + { + "post_title": "grantweber.com", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:22.166449" + }, + { + "post_title": "wiesauplast.de", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:22.877923" + }, + { + "post_title": "ni*usa.com", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:23.682082" + }, + { + "post_title": "rkw-group.com Disclose the compressed package password", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:24.347895" + }, + { + "post_title": "nissin.com.br Disclose the compressed package password", + "group_name": "dataleak", + "discovered": "2022-12-11 07:53:25.342168" + }, + { + "post_title": "???????", + "group_name": "play", + "discovered": "2022-12-11 07:53:26.096349" + }, + { + "post_title": "Hilldrup", + "group_name": "play", + "discovered": "2022-12-11 07:53:26.797651" + }, + { + "post_title": "????????? ???? ?????", + "group_name": "play", + "discovered": "2022-12-11 07:53:27.477422" + }, + { + "post_title": "UJV Rez", + "group_name": "play", + "discovered": "2022-12-11 07:53:28.345140" + }, + { + "post_title": "Wrota Mazowsza", + "group_name": "play", + "discovered": "2022-12-11 07:53:29.094375" + }, + { + "post_title": "Conseil departemental - Alpes-Maritimes", + "group_name": "play", + "discovered": "2022-12-11 07:53:30.292036" + }, + { + "post_title": "Origin Property Company Limited", + "group_name": "play", + "discovered": "2022-12-11 07:53:31.288195" + }, + { + "post_title": "Itsgroup", + "group_name": "play", + "discovered": "2022-12-11 07:53:32.211912" + }, + { + "post_title": "Ministry of Transport and Public Works", + "group_name": "play", + "discovered": "2022-12-11 07:53:32.934415" + }, + { + "post_title": "Leadtek", + "group_name": "play", + "discovered": "2022-12-11 07:53:33.722397" + }, + { + "post_title": "PVFCCo", + "group_name": "play", + "discovered": "2022-12-11 07:53:34.463403" + }, + { + "post_title": "Centrisys cnp", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:35.431139" + }, + { + "post_title": "BauVal", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:36.112796" + }, + { + "post_title": "Stratus", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:36.784111" + }, + { + "post_title": "Roxboro", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:37.469862" + }, + { + "post_title": "PTSC", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:38.289938" + }, + { + "post_title": "Legend Holdings", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:38.999261" + }, + { + "post_title": "Abdullah Al-Othaim Markets", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:39.769369" + }, + { + "post_title": "Ethigen Limited", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:40.546772" + }, + { + "post_title": "Cromwell Management Inc.", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:41.211241" + }, + { + "post_title": "Cheval Electronic Enclosure", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:42.053189" + }, + { + "post_title": "Club Asteria Belek", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:42.840275" + }, + { + "post_title": "R1 Group", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:43.670262" + }, + { + "post_title": "Trantor", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:44.519548" + }, + { + "post_title": "Deerberg", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:45.221782" + }, + { + "post_title": "Vercity", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:45.901509" + }, + { + "post_title": "Regulatory Authority for Telecommunications and Posts (ARTP)", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:46.541778" + }, + { + "post_title": "Schrader-Pacific International", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:47.316736" + }, + { + "post_title": "San Benito Consolidated Independent School District", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:48.347566" + }, + { + "post_title": "Urban", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:49.215804" + }, + { + "post_title": "The Summit", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:50.329226" + }, + { + "post_title": "ipb Baggenstos Montagen", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:51.140372" + }, + { + "post_title": "Medilife Hastanesi", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:51.815465" + }, + { + "post_title": "Özel GözAkademi Hastanesi", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:52.490889" + }, + { + "post_title": "Qualified Staffing", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:53.373983" + }, + { + "post_title": "Davenport Community School", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:54.053591" + }, + { + "post_title": "Metroclean", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:54.854325" + }, + { + "post_title": "Bergamo Metal", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:55.556508" + }, + { + "post_title": "APECQ", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:56.418964" + }, + { + "post_title": "South Jersey Glass & Doors", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:57.245511" + }, + { + "post_title": "Latitude 37", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:58.339660" + }, + { + "post_title": "APSM Systems", + "group_name": "karakurt", + "discovered": "2022-12-11 07:53:59.070868" + }, + { + "post_title": "KINSHOFER GmbH", + "group_name": "karakurt", + "discovered": "2022-12-11 07:54:00.337267" + }, + { + "post_title": "Energy Transfer Durafin Tubes", + "group_name": "karakurt", + "discovered": "2022-12-11 07:54:01.081265" + }, + { + "post_title": "Hiersun Jewelry Co Ltd", + "group_name": "karakurt", + "discovered": "2022-12-11 07:54:01.622480" + }, + { + "post_title": "Infinitum", + "group_name": "karakurt", + "discovered": "2022-12-11 07:54:02.487561" + }, + { + "post_title": "William A. Kibbe & Associates", + "group_name": "karakurt", + "discovered": "2022-12-11 07:54:03.018847" + }, + { + "post_title": "Municipalidad de belen", + "group_name": "karakurt", + "discovered": "2022-12-11 14:51:20.921191" + }, + { + "post_title": "REC Silicon", + "group_name": "ransomexx", + "discovered": "2022-12-11 17:01:04.168483" + }, + { + "post_title": "B****** *b*", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.068342" + }, + { + "post_title": "**a***** H****** ******r****", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.122945" + }, + { + "post_title": "**i* **s****", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.177693" + }, + { + "post_title": "*** Technologies", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.231253" + }, + { + "post_title": "****** ******* School", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.298110" + }, + { + "post_title": "*u****", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.365109" + }, + { + "post_title": "Golden Coin Bake Shop and Restaurant", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.509102" + }, + { + "post_title": "Company, LLC", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.700855" + }, + { + "post_title": "Meisenkothen", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.884997" + }, + { + "post_title": "Spa", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:24.947894" + }, + { + "post_title": "Rudman", + "group_name": "bianlian", + "discovered": "2022-12-11 19:30:25.095031" + }, + { + "post_title": "Antwerpen", + "group_name": "play", + "discovered": "2022-12-11 22:52:37.909986" + }, + { + "post_title": "Una Seguros", + "group_name": "play", + "discovered": "2022-12-12 01:01:15.803691" + }, + { + "post_title": "2networkit", + "group_name": "cuba", + "discovered": "2022-12-12 09:05:17.644097" + }, + { + "post_title": "amazing-global.com", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:52.163185" + }, + { + "post_title": "dof.ca.gov", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:53.367104" + }, + { + "post_title": "financierareyes.com.mx", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:54.105912" + }, + { + "post_title": "jieh.vn", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:55.300621" + }, + { + "post_title": "k-toko.com", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:55.994754" + }, + { + "post_title": "luxeprint.com.tw", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:56.959382" + }, + { + "post_title": "rkfoodland.com", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:58.985193" + }, + { + "post_title": "sentecgroup.com", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:21:59.732890" + }, + { + "post_title": "tdtu.edu.vn", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:22:00.633847" + }, + { + "post_title": "veolus.com", + "group_name": "lockbit3", + "discovered": "2022-12-12 11:22:01.420613" + }, + { + "post_title": "*****a*** law", + "group_name": "bianlian", + "discovered": "2022-12-12 13:13:14.411419" + }, + { + "post_title": "BRYCON Construction", + "group_name": "bianlian", + "discovered": "2022-12-12 13:13:15.878616" + }, + { + "post_title": "Modular Mining Systems", + "group_name": "bianlian", + "discovered": "2022-12-12 13:13:16.609498" + }, + { + "post_title": "Cetrogar", + "group_name": "play", + "discovered": "2022-12-13 01:01:55.039963" + }, + { + "post_title": "VFS", + "group_name": "play", + "discovered": "2022-12-13 01:01:55.817782" + }, + { + "post_title": "V3 Companies", + "group_name": "alphv", + "discovered": "2022-12-13 04:54:37.650879" + }, + { + "post_title": "Schnee Berger", + "group_name": "alphv", + "discovered": "2022-12-13 04:54:39.017650" + }, + { + "post_title": "PARIC CORPORATION", + "group_name": "alphv", + "discovered": "2022-12-13 12:54:43.843528" + }, + { + "post_title": "http://www.pinnaclecommunications.com", + "group_name": "royal", + "discovered": "2022-12-13 14:48:47.905736" + }, + { + "post_title": "Pella", + "group_name": "blackbasta", + "discovered": "2022-12-13 19:04:49.992594" + }, + { + "post_title": "ITONCLOUD - LEAKED", + "group_name": "ragnarlocker", + "discovered": "2022-12-13 20:51:14.699238" + }, + { + "post_title": "Batesville Products", + "group_name": "karakurt", + "discovered": "2022-12-13 20:51:38.630635" + }, + { + "post_title": "Ban Leong Technologies Ltd", + "group_name": "mallox", + "discovered": "2022-12-14 01:04:17.688617" + }, + { + "post_title": "MME Group", + "group_name": "play", + "discovered": "2022-12-14 01:04:19.044574" + }, + { + "post_title": "Skoda Praha", + "group_name": "play", + "discovered": "2022-12-14 01:04:20.306787" + }, + { + "post_title": "Austria Presse Agentur", + "group_name": "play", + "discovered": "2022-12-14 01:04:21.117677" + }, + { + "post_title": "TEIJIN AUTOMOTIVE TECHNOLOGIES", + "group_name": "alphv", + "discovered": "2022-12-14 03:19:29.462529" + }, + { + "post_title": "Expand Group", + "group_name": "hiveleak", + "discovered": "2022-12-14 22:54:31.472566" + }, + { + "post_title": "Mark-Taylor", + "group_name": "hiveleak", + "discovered": "2022-12-14 22:54:32.775992" + }, + { + "post_title": "Bailey Cavalieri LLC", + "group_name": "alphv", + "discovered": "2022-12-15 03:09:07.055980" + }, + { + "post_title": "mcft.com", + "group_name": "lockbit3", + "discovered": "2022-12-15 04:49:42.715067" + }, + { + "post_title": "Events DC", + "group_name": "alphv", + "discovered": "2022-12-15 13:00:47.130004" + }, + { + "post_title": "http://vincentfister.com", + "group_name": "royal", + "discovered": "2022-12-15 15:10:12.032095" + }, + { + "post_title": "ZXP Technologies", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:33.302318" + }, + { + "post_title": "CIMT College", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:34.263435" + }, + { + "post_title": "Aria systems", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:35.089244" + }, + { + "post_title": "Emilio Sanchez American School", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:35.867446" + }, + { + "post_title": "Eureka Casino Resort", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:36.704998" + }, + { + "post_title": "Hci Systems Inc", + "group_name": "bianlian", + "discovered": "2022-12-15 21:17:37.463185" + }, + { + "post_title": "https://www.leohamel.com", + "group_name": "royal", + "discovered": "2022-12-15 21:17:39.519519" + }, + { + "post_title": "Universidade Catolica Portuguesa", + "group_name": "vicesociety", + "discovered": "2022-12-15 22:50:11.681572" + }, + { + "post_title": "Gage Brothers", + "group_name": "karakurt", + "discovered": "2022-12-16 01:11:56.161069" + }, + { + "post_title": "JMicron", + "group_name": "play", + "discovered": "2022-12-16 08:46:23.245220" + }, + { + "post_title": "Arsat", + "group_name": "play", + "discovered": "2022-12-16 08:46:24.114120" + }, + { + "post_title": "http://molcy.com", + "group_name": "royal", + "discovered": "2022-12-16 10:57:43.310182" + }, + { + "post_title": "Publicare", + "group_name": "vicesociety", + "discovered": "2022-12-16 12:50:36.105147" + }, + { + "post_title": "TLC", + "group_name": "karakurt", + "discovered": "2022-12-16 12:50:42.722538" + }, + { + "post_title": "Bevolution Group", + "group_name": "karakurt", + "discovered": "2022-12-16 12:50:43.439632" + }, + { + "post_title": "University Institute of Technology of Paris", + "group_name": "vicesociety", + "discovered": "2022-12-17 10:47:01.277256" + }, + { + "post_title": "Australian Real Estate Group Pty Ltd", + "group_name": "bianlian", + "discovered": "2022-12-17 14:45:01.105858" + }, + { + "post_title": "S??????????", + "group_name": "play", + "discovered": "2022-12-18 04:44:36.926295" + }, + { + "post_title": "https://www.conform.it", + "group_name": "royal", + "discovered": "2022-12-18 07:29:23.841126" + }, + { + "post_title": "Creta Farm", + "group_name": "play", + "discovered": "2022-12-18 09:13:01.177962" + }, + { + "post_title": "C???e????? ?????????????", + "group_name": "play", + "discovered": "2022-12-18 09:13:02.667931" + }, + { + "post_title": "H-Hotels", + "group_name": "play", + "discovered": "2022-12-18 09:13:03.567032" + }, + { + "post_title": "OPUS IT Services", + "group_name": "play", + "discovered": "2022-12-18 09:13:04.456380" + }, + { + "post_title": "accuro.co.nz", + "group_name": "lockbit3", + "discovered": "2022-12-19 11:05:05.974057" + }, + { + "post_title": "mercuryit.co.nz", + "group_name": "lockbit3", + "discovered": "2022-12-19 11:05:08.442988" + }, + { + "post_title": "senateshj.com", + "group_name": "lockbit3", + "discovered": "2022-12-19 11:05:09.948075" + }, + { + "post_title": "businesscentral.org.nz", + "group_name": "lockbit3", + "discovered": "2022-12-19 13:00:24.614838" + }, + { + "post_title": "catalyst-group.co.nz", + "group_name": "lockbit3", + "discovered": "2022-12-19 13:00:25.539328" + }, + { + "post_title": "polyflor.co.nz", + "group_name": "lockbit3", + "discovered": "2022-12-19 13:00:28.105784" + }, + { + "post_title": "rgvfirm.com", + "group_name": "lockbit3", + "discovered": "2022-12-19 14:49:52.512952" + }, + { + "post_title": "stmc.edu.hk", + "group_name": "lockbit3", + "discovered": "2022-12-19 14:49:53.863211" + }, + { + "post_title": "monte cristalina s.a.", + "group_name": "lockbit3", + "discovered": "2022-12-19 16:57:47.353348" + }, + { + "post_title": "agriobtentions.com", + "group_name": "lockbit3", + "discovered": "2022-12-19 16:57:48.492778" + }, + { + "post_title": "jka.co.uk", + "group_name": "lockbit3", + "discovered": "2022-12-19 16:57:50.559805" + }, + { + "post_title": "mayflowerdentalgroup.com", + "group_name": "lockbit3", + "discovered": "2022-12-19 16:57:51.892189" + }, + { + "post_title": "womgroup.com", + "group_name": "lockbit3", + "discovered": "2022-12-19 16:57:54.180873" + }, + { + "post_title": "https://www.mark-taylor.com", + "group_name": "royal", + "discovered": "2022-12-19 18:57:16.698015" + }, + { + "post_title": "Keralty", + "group_name": "ransomhouse", + "discovered": "2022-12-19 22:52:06.192926" + }, + { + "post_title": "Stolle Machinery", + "group_name": "hiveleak", + "discovered": "2022-12-20 01:05:12.024007" + }, + { + "post_title": "JAKKS Pacific Inc", + "group_name": "hiveleak", + "discovered": "2022-12-20 01:05:13.495869" + }, + { + "post_title": "Xavier University of Louisiana", + "group_name": "vicesociety", + "discovered": "2022-12-20 08:55:18.000742" + }, + { + "post_title": "teknowsource.in", + "group_name": "lockbit3", + "discovered": "2022-12-20 08:55:22.273751" + }, + { + "post_title": "Sae-a", + "group_name": "cuba", + "discovered": "2022-12-20 14:53:58.721862" + }, + { + "post_title": "North Idaho College", + "group_name": "hiveleak", + "discovered": "2022-12-20 18:50:06.876987" + }, + { + "post_title": "City Of Huntsville, Texas", + "group_name": "hiveleak", + "discovered": "2022-12-20 18:50:08.005256" + }, + { + "post_title": "Dixons Allerton Academy", + "group_name": "hiveleak", + "discovered": "2022-12-20 18:50:09.501664" + }, + { + "post_title": "Innovative Education Management", + "group_name": "hiveleak", + "discovered": "2022-12-20 18:50:10.624486" + }, + { + "post_title": "Wrapex Industrial - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-12-20 20:45:51.810264" + }, + { + "post_title": "Serena Hotels - Leaked", + "group_name": "ragnarlocker", + "discovered": "2022-12-20 20:45:52.528820" + }, + { + "post_title": "https://www.zehnders.com", + "group_name": "royal", + "discovered": "2022-12-20 20:46:18.499593" + }, + { + "post_title": "LIBERTY PULTRUSIONS", + "group_name": "karakurt", + "discovered": "2022-12-20 20:46:19.908427" + }, + { + "post_title": "Interface", + "group_name": "hiveleak", + "discovered": "2022-12-21 01:04:33.819031" + }, + { + "post_title": "Goodwill industries", + "group_name": "karakurt", + "discovered": "2022-12-21 14:53:58.836934" + }, + { + "post_title": "http://www.atlascommodities.com", + "group_name": "royal", + "discovered": "2022-12-21 16:48:14.356620" + }, + { + "post_title": "M*******l***", + "group_name": "bianlian", + "discovered": "2022-12-21 18:56:10.717571" + }, + { + "post_title": "M*****", + "group_name": "bianlian", + "discovered": "2022-12-21 18:56:11.527594" + }, + { + "post_title": "Alvaria", + "group_name": "hiveleak", + "discovered": "2022-12-21 22:56:13.484545" + }, + { + "post_title": "Berlina Tbk", + "group_name": "bianlian", + "discovered": "2022-12-21 22:56:20.345914" + }, + { + "post_title": "The Gucciardo Law Firm", + "group_name": "bianlian", + "discovered": "2022-12-21 22:56:21.464136" + }, + { + "post_title": "F???????, ???, D????????, T???????, S?????????????", + "group_name": "play", + "discovered": "2022-12-22 08:54:36.304773" + }, + { + "post_title": "Cervecería Regional", + "group_name": "play", + "discovered": "2022-12-22 08:54:37.168962" + }, + { + "post_title": "MHMR Authority Of Brazos Valley", + "group_name": "hiveleak", + "discovered": "2022-12-22 15:01:17.712522" + }, + { + "post_title": "maxionwheels.com", + "group_name": "lockbit3", + "discovered": "2022-12-22 19:28:32.763650" + }, + { + "post_title": "Every one of you been a good customer this year", + "group_name": "monti", + "discovered": "2022-12-22 20:49:57.991610" + }, + { + "post_title": "Protecmedia", + "group_name": "alphv", + "discovered": "2022-12-22 22:43:45.769899" + }, + { + "post_title": "Bregman Berbert Schwartz & Gilday", + "group_name": "alphv", + "discovered": "2022-12-22 22:43:46.691445" + }, + { + "post_title": "Strem Chemicals", + "group_name": "ransomhouse", + "discovered": "2022-12-22 22:43:49.284569" + }, + { + "post_title": "thedonovancompany.com", + "group_name": "lockbit3", + "discovered": "2022-12-22 22:43:53.557414" + }, + { + "post_title": "bavelloni.com", + "group_name": "lockbit3", + "discovered": "2022-12-23 10:51:30.496658" + }, + { + "post_title": "excentiahumanservices.org", + "group_name": "lockbit3", + "discovered": "2022-12-23 10:51:32.311231" + }, + { + "post_title": "https://www.rech.com.br", + "group_name": "royal", + "discovered": "2022-12-23 10:51:36.496183" + }, + { + "post_title": "https://www.aegea.com.br", + "group_name": "royal", + "discovered": "2022-12-23 10:51:37.179458" + }, + { + "post_title": "Realstar Holdings Partnership", + "group_name": "bianlian", + "discovered": "2022-12-23 12:42:20.596587" + }, + { + "post_title": "*****", + "group_name": "bianlian", + "discovered": "2022-12-23 17:02:07.620137" + }, + { + "post_title": "SEMITEC Corporation", + "group_name": "bianlian", + "discovered": "2022-12-23 17:02:08.553505" + }, + { + "post_title": "Myofficeplace Inc.", + "group_name": "bianlian", + "discovered": "2022-12-23 17:02:09.356071" + }, + { + "post_title": "aristopharma.com", + "group_name": "lockbit3", + "discovered": "2022-12-24 10:48:25.323065" + }, + { + "post_title": "Republic of Vanuatu", + "group_name": "ransomhouse", + "discovered": "2022-12-24 21:32:34.979950" + }, + { + "post_title": "https://www.atlatec.com", + "group_name": "royal", + "discovered": "2022-12-25 15:04:26.904891" + }, + { + "post_title": "STRESSER ASSOCIATES CPA", + "group_name": "alphv", + "discovered": "2022-12-26 07:02:58.048431" + }, + { + "post_title": "Ucar", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:43.002114" + }, + { + "post_title": "Barakat Travel Co", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:44.085208" + }, + { + "post_title": "The Chedi Muscat", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:44.747054" + }, + { + "post_title": "Whatcom County Library System", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:45.462298" + }, + { + "post_title": "Dooly County School System", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:46.156148" + }, + { + "post_title": "Wings Etc", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:46.899266" + }, + { + "post_title": "G.R. Sponaugle", + "group_name": "unsafeleak", + "discovered": "2022-12-26 08:52:47.578226" + }, + { + "post_title": "https://www.fantasyspringsresort.com", + "group_name": "royal", + "discovered": "2022-12-26 21:09:12.499349" + }, + { + "post_title": "https://www.robinsonpharma.com", + "group_name": "royal", + "discovered": "2022-12-26 21:09:13.433978" + }, + { + "post_title": "FURETANK,SIRIUS SHIPPING,VAS,DONSONET", + "group_name": "play", + "discovered": "2022-12-27 00:54:25.148795" + }, + { + "post_title": "SSI Schäfer Shop", + "group_name": "alphv", + "discovered": "2022-12-27 03:03:30.694269" + }, + { + "post_title": "Meyer & Meyer Holding SE & Co. KG", + "group_name": "alphv", + "discovered": "2022-12-27 03:03:32.005451" + }, + { + "post_title": "CR&R", + "group_name": "alphv", + "discovered": "2022-12-27 03:03:32.776231" + }, + { + "post_title": "FARMS.COM", + "group_name": "alphv", + "discovered": "2022-12-27 03:03:33.685099" + }, + { + "post_title": "Empresas Públicas de Medellín", + "group_name": "alphv", + "discovered": "2022-12-27 03:03:34.396312" + }, + { + "post_title": "pu.edu.lb", + "group_name": "cuba", + "discovered": "2022-12-27 10:54:03.292125" + }, + { + "post_title": "https://www.grupoibiapina.com.br", + "group_name": "royal", + "discovered": "2022-12-27 16:48:30.524274" + }, + { + "post_title": "https://www.helma.de/", + "group_name": "royal", + "discovered": "2022-12-27 16:48:31.651737" + }, + { + "post_title": "https://www.inforlandia.com", + "group_name": "royal", + "discovered": "2022-12-27 16:48:32.221939" + }, + { + "post_title": "http://www.intrado.com", + "group_name": "royal", + "discovered": "2022-12-27 18:53:07.668861" + }, + { + "post_title": "http://www.buildersmutual.com", + "group_name": "royal", + "discovered": "2022-12-27 22:48:29.548820" + }, + { + "post_title": "Einatec", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:12.641719" + }, + { + "post_title": "Trubee, Collins & Co", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:13.547630" + }, + { + "post_title": "TCL Chinese Theatres", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:14.428833" + }, + { + "post_title": "Square Yards", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:15.067341" + }, + { + "post_title": "ET GLOBAL", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:15.950708" + }, + { + "post_title": "Centro Turistico Giovanile", + "group_name": "snatch", + "discovered": "2022-12-28 00:58:16.802054" + }, + { + "post_title": "Hundred thousands of personal data, leak preview", + "group_name": "ragnarlocker", + "discovered": "2022-12-28 16:51:08.517727" + }, + { + "post_title": "http://www.emoneyfinance.com.au", + "group_name": "royal", + "discovered": "2022-12-28 16:51:36.962884" + }, + { + "post_title": "SUMITOMO BAKELITE USA", + "group_name": "alphv", + "discovered": "2022-12-28 22:44:02.692398" + }, + { + "post_title": "JAKKS Pacific, Inc.", + "group_name": "alphv", + "discovered": "2022-12-28 22:44:03.291485" + }, + { + "post_title": "portodelisboa.pt", + "group_name": "lockbit3", + "discovered": "2022-12-29 04:46:58.933892" + }, + { + "post_title": "*********** E*****", + "group_name": "bianlian", + "discovered": "2022-12-29 12:56:14.393066" + }, + { + "post_title": "MITCON Consultancy and Engineering Services", + "group_name": "bianlian", + "discovered": "2022-12-29 12:56:15.304679" + }, + { + "post_title": "St. Rose Hospital", + "group_name": "bianlian", + "discovered": "2022-12-29 12:56:16.612056" + }, + { + "post_title": "Restaurant", + "group_name": "bianlian", + "discovered": "2022-12-29 12:56:17.580817" + }, + { + "post_title": "CPTM", + "group_name": "blackbyte", + "discovered": "2022-12-29 16:59:53.340176" + }, + { + "post_title": "https://www.wwfc.ca", + "group_name": "royal", + "discovered": "2022-12-29 22:52:09.729750" + }, + { + "post_title": "http://www.iowapbs.org", + "group_name": "royal", + "discovered": "2022-12-29 22:52:11.002628" + }, + { + "post_title": "Camst Group", + "group_name": "hiveleak", + "discovered": "2022-12-30 13:05:03.459827" + }, + { + "post_title": "presco.com", + "group_name": "lockbit3", + "discovered": "2022-12-30 16:46:17.280466" + }, + { + "post_title": "http://www.agostini.com", + "group_name": "royal", + "discovered": "2022-12-30 22:58:26.603184" + }, + { + "post_title": "hacla.org", + "group_name": "lockbit3", + "discovered": "2022-12-31 17:10:55.830504" + }, + { + "post_title": "http://www.qut.edu.au", + "group_name": "royal", + "discovered": "2022-12-31 17:11:00.939236" + }, + { + "post_title": "sickkids.ca", + "group_name": "lockbit3", + "discovered": "2022-12-31 18:50:24.884768" + }, + { + "post_title": "Centro Médico Virgen De La Caridad", + "group_name": "hiveleak", + "discovered": "2022-12-31 20:49:38.761480" + }, + { + "post_title": "eds-automotive.de", + "group_name": "lockbit3", + "discovered": "2023-01-01 00:57:58.096468" + }, + { + "post_title": "CDER", + "group_name": "play", + "discovered": "2023-01-01 18:49:12.071876" + }, + { + "post_title": "S???", + "group_name": "play", + "discovered": "2023-01-02 01:02:48.272355" + }, + { + "post_title": "Stratacache", + "group_name": "play", + "discovered": "2023-01-02 14:51:03.354469" + }, + { + "post_title": "Dental One", + "group_name": "alphv", + "discovered": "2023-01-03 04:50:15.982640" + }, + { + "post_title": "Furetank", + "group_name": "play", + "discovered": "2023-01-03 14:48:57.619619" + }, + { + "post_title": "SUNY Polytechnic Institute", + "group_name": "play", + "discovered": "2023-01-03 16:48:37.543554" + }, + { + "post_title": "Sirius Shipping", + "group_name": "play", + "discovered": "2023-01-03 16:48:38.441380" + }, + { + "post_title": "Aeronautics company Canada | UTC Aerospace Systems, Bombardier, NASA partners", + "group_name": "everest", + "discovered": "2023-01-03 18:47:39.658155" + }, + { + "post_title": "Tarntank Ship Management", + "group_name": "play", + "discovered": "2023-01-03 22:51:06.728427" + }, + { + "post_title": "CAPMC", + "group_name": "blackbyte", + "discovered": "2023-01-04 17:00:41.345072" + }, + { + "post_title": "http://www.dsbj.com/", + "group_name": "royal", + "discovered": "2023-01-05 08:52:20.430180" + }, + { + "post_title": "Nexon Asia Pacific", + "group_name": "nokoyawa", + "discovered": "2023-01-05 08:52:22.091938" + }, + { + "post_title": "Kansas City Homes", + "group_name": "blackbyte", + "discovered": "2023-01-05 18:46:59.334164" + }, + { + "post_title": "Hayward", + "group_name": "blackbyte", + "discovered": "2023-01-05 18:47:00.465302" + }, + { + "post_title": "Ellison Technologies", + "group_name": "blackbyte", + "discovered": "2023-01-05 18:47:01.303177" + }, + { + "post_title": "Consulate Health Care", + "group_name": "hiveleak", + "discovered": "2023-01-06 08:46:46.773331" + }, + { + "post_title": "LetMeRepair", + "group_name": "vicesociety", + "discovered": "2023-01-06 10:55:10.055124" + }, + { + "post_title": "PROQUINAL Spradling Group", + "group_name": "vicesociety", + "discovered": "2023-01-06 10:55:11.500519" + }, + { + "post_title": "Sub-drill Supply", + "group_name": "vicesociety", + "discovered": "2023-01-06 10:55:12.649044" + }, + { + "post_title": "http://bevolutiongroup.com", + "group_name": "royal", + "discovered": "2023-01-06 14:53:02.298819" + }, + { + "post_title": "https://lekhabo.nl", + "group_name": "royal", + "discovered": "2023-01-06 16:54:28.011754" + }, + { + "post_title": "Bay Area Rapid Transit", + "group_name": "vicesociety", + "discovered": "2023-01-06 22:53:49.615581" + }, + { + "post_title": "City Lit", + "group_name": "vicesociety", + "discovered": "2023-01-06 22:53:51.336517" + }, + { + "post_title": "Park View", + "group_name": "vicesociety", + "discovered": "2023-01-06 22:53:52.920472" + }, + { + "post_title": "Pendulum Associates public website of data leak", + "group_name": "alphv", + "discovered": "2023-01-07 03:09:28.991927" + }, + { + "post_title": "Grupo Estrategas EMM", + "group_name": "alphv", + "discovered": "2023-01-07 03:09:30.878824" + }, + { + "post_title": "Buffco Production, Inc.", + "group_name": "alphv", + "discovered": "2023-01-07 03:09:31.592974" + }, + { + "post_title": "100x100banco.com", + "group_name": "lockbit3", + "discovered": "2023-01-07 10:48:10.018211" + }, + { + "post_title": "juarez.gob.mx", + "group_name": "lockbit3", + "discovered": "2023-01-07 10:48:12.660451" + }, + { + "post_title": "takamiya.co", + "group_name": "lockbit3", + "discovered": "2023-01-07 10:48:14.594629" + }, + { + "post_title": "Duty Free Philippines", + "group_name": "vicesociety", + "discovered": "2023-01-07 12:47:19.127045" + }, + { + "post_title": "Swift Academies", + "group_name": "vicesociety", + "discovered": "2023-01-07 12:47:21.351936" + }, + { + "post_title": "Fruttagel", + "group_name": "alphv", + "discovered": "2023-01-07 22:54:23.721679" + }, + { + "post_title": "millennia.pro", + "group_name": "lockbit3", + "discovered": "2023-01-08 12:52:57.694870" + }, + { + "post_title": "asianrecorp.com", + "group_name": "lockbit3", + "discovered": "2023-01-08 18:45:32.755480" + }, + { + "post_title": "Koo Wee Rup Secondary College", + "group_name": "alphv", + "discovered": "2023-01-09 01:02:43.407747" + }, + { + "post_title": "River City Science Academy", + "group_name": "karakurt", + "discovered": "2023-01-09 14:55:26.122634" + }, + { + "post_title": "Aviacode", + "group_name": "0mega", + "discovered": "2023-01-09 18:46:25.804502" + }, + { + "post_title": "Fire Rescue Victoria", + "group_name": "vicesociety", + "discovered": "2023-01-10 14:53:57.547481" + }, + { + "post_title": "datair.com", + "group_name": "lockbit3", + "discovered": "2023-01-10 16:48:19.256985" + }, + { + "post_title": "Chestertons Inc.", + "group_name": "lorenz", + "discovered": "2023-01-10 18:53:46.664136" + }, + { + "post_title": "Shelco", + "group_name": "lorenz", + "discovered": "2023-01-10 18:53:47.351093" + }, + { + "post_title": "Thor Specialties, Inc.", + "group_name": "lorenz", + "discovered": "2023-01-10 18:53:48.345008" + }, + { + "post_title": "ADIVA CO. LTD", + "group_name": "mallox", + "discovered": "2023-01-11 09:20:36.476615" + }, + { + "post_title": "circlevillecourt.com", + "group_name": "lockbit3", + "discovered": "2023-01-11 10:53:32.109524" + }, + { + "post_title": "A????? ????k", + "group_name": "play", + "discovered": "2023-01-11 17:10:17.982383" + }, + { + "post_title": "D???? P??????s", + "group_name": "play", + "discovered": "2023-01-11 18:54:44.903219" + }, + { + "post_title": "G.W. Becker", + "group_name": "hiveleak", + "discovered": "2023-01-11 22:53:32.047365" + }, + { + "post_title": "IMI Hydronic Engineering", + "group_name": "ransomhouse", + "discovered": "2023-01-12 00:49:30.176771" + }, + { + "post_title": "Physician Partners of America", + "group_name": "snatch", + "discovered": "2023-01-12 08:46:35.029140" + }, + { + "post_title": "lloyddowson.co.uk", + "group_name": "lockbit3", + "discovered": "2023-01-12 10:42:31.034992" + }, + { + "post_title": "muellergartenbau.ch", + "group_name": "lockbit3", + "discovered": "2023-01-12 10:42:32.153540" + }, + { + "post_title": "lidestrifoodanddrink.com", + "group_name": "lockbit3", + "discovered": "2023-01-12 12:43:06.859720" + }, + { + "post_title": "nuxe.com", + "group_name": "lockbit3", + "discovered": "2023-01-12 12:43:08.161789" + }, + { + "post_title": "russellfinex.com", + "group_name": "lockbit3", + "discovered": "2023-01-12 12:43:09.335638" + }, + { + "post_title": "versteden.com", + "group_name": "lockbit3", + "discovered": "2023-01-12 12:43:10.842004" + }, + { + "post_title": "http://www.ruhrpumpen.com", + "group_name": "royal", + "discovered": "2023-01-12 14:59:19.886293" + }, + { + "post_title": "http://www.tasupply.com", + "group_name": "royal", + "discovered": "2023-01-12 18:57:36.236802" + }, + { + "post_title": "http://www.lvcdlaw.com", + "group_name": "royal", + "discovered": "2023-01-12 18:57:37.690574" + }, + { + "post_title": "Air Comm Corporation", + "group_name": "alphv", + "discovered": "2023-01-13 01:01:16.963536" + }, + { + "post_title": "Fu Yu Corporation", + "group_name": "alphv", + "discovered": "2023-01-13 01:01:17.719114" + }, + { + "post_title": "TIME TECHNOPLAST LIMITED", + "group_name": "alphv", + "discovered": "2023-01-13 01:01:18.578471" + }, + { + "post_title": "Liebra Permana", + "group_name": "alphv", + "discovered": "2023-01-13 01:01:19.424261" + }, + { + "post_title": "Trans Maldivian Airways", + "group_name": "ransomhouse", + "discovered": "2023-01-13 01:01:22.255283" + }, + { + "post_title": "fujikura-electronics.co.th", + "group_name": "lockbit3", + "discovered": "2023-01-13 06:51:52.367194" + }, + { + "post_title": "K2 Sports", + "group_name": "blackbyte", + "discovered": "2023-01-14 14:54:46.204124" + }, + { + "post_title": "Central Texas College", + "group_name": "vicesociety", + "discovered": "2023-01-14 16:51:26.543102" + }, + { + "post_title": "https://www.samuelsseafood.com", + "group_name": "royal", + "discovered": "2023-01-14 16:51:35.538494" + }, + { + "post_title": "http://www.hills-motors.co.uk", + "group_name": "royal", + "discovered": "2023-01-14 16:51:36.272644" + }, + { + "post_title": "TIMco", + "group_name": "vicesociety", + "discovered": "2023-01-14 20:50:50.005680" + }, + { + "post_title": "Holovis", + "group_name": "ransomhouse", + "discovered": "2023-01-14 20:50:51.800818" + }, + { + "post_title": "matrixschools.edu.my", + "group_name": "lockbit3", + "discovered": "2023-01-14 23:02:22.051893" + }, + { + "post_title": "El Seif Development", + "group_name": "mallox", + "discovered": "2023-01-15 19:04:43.813512" + }, + { + "post_title": "DAYTON PROGRESS", + "group_name": "play", + "discovered": "2023-01-15 23:07:13.899695" + }, + { + "post_title": "Arnold Clark", + "group_name": "play", + "discovered": "2023-01-16 01:17:10.379542" + }, + { + "post_title": "fulfilmentmatters.co.uk", + "group_name": "lockbit3", + "discovered": "2023-01-16 11:04:52.266991" + }, + { + "post_title": "Yayla Enerji Uretim Turizm ve Insaat Ticaret", + "group_name": "mallox", + "discovered": "2023-01-16 11:04:56.712747" + }, + { + "post_title": "University of Duisburg-Essen", + "group_name": "vicesociety", + "discovered": "2023-01-16 13:00:25.281012" + }, + { + "post_title": "ak.com.sa", + "group_name": "lockbit3", + "discovered": "2023-01-16 13:00:27.356947" + }, + { + "post_title": "atcuae.ae", + "group_name": "lockbit3", + "discovered": "2023-01-16 13:00:28.559256" + }, + { + "post_title": "melody.com.tr", + "group_name": "lockbit3", + "discovered": "2023-01-16 13:00:31.027390" + }, + { + "post_title": "politriz.ind.br", + "group_name": "lockbit3", + "discovered": "2023-01-16 13:00:32.511358" + }, + { + "post_title": "https://www.fh-zwickau.de", + "group_name": "royal", + "discovered": "2023-01-16 17:19:21.662656" + }, + { + "post_title": "ARC", + "group_name": "blackbyte", + "discovered": "2023-01-16 21:03:24.662442" + }, + { + "post_title": "https://www.autodelta.pt/", + "group_name": "royal", + "discovered": "2023-01-16 21:03:52.908945" + }, + { + "post_title": "R C Stevens Construction", + "group_name": "hiveleak", + "discovered": "2023-01-16 22:58:56.865153" + }, + { + "post_title": "http://www.carinya.nsw.edu.au", + "group_name": "royal", + "discovered": "2023-01-17 15:04:23.719232" + }, + { + "post_title": "NYCBAR.ORG", + "group_name": "clop", + "discovered": "2023-01-17 22:56:03.828243" + }, + { + "post_title": "http://www.livingstonintl.com", + "group_name": "royal", + "discovered": "2023-01-17 22:56:26.065427" + }, + { + "post_title": "https://www.kazcolaw.com", + "group_name": "royal", + "discovered": "2023-01-18 06:54:43.119908" + }, + { + "post_title": "Alhambra-Eidos", + "group_name": "mallox", + "discovered": "2023-01-18 14:57:08.132179" + }, + { + "post_title": "duomed.com", + "group_name": "lockbit3", + "discovered": "2023-01-18 18:51:55.631402" + }, + { + "post_title": "tvk.nl", + "group_name": "lockbit3", + "discovered": "2023-01-18 21:04:08.736139" + }, + { + "post_title": "Pharmacare", + "group_name": "alphv", + "discovered": "2023-01-19 03:19:20.653507" + }, + { + "post_title": "Fresh Del Monte", + "group_name": "alphv", + "discovered": "2023-01-19 03:19:21.793845" + }, + { + "post_title": "NextGen", + "group_name": "alphv", + "discovered": "2023-01-19 03:19:22.668056" + }, + { + "post_title": "Monmouth College", + "group_name": "vicesociety", + "discovered": "2023-01-20 01:12:15.064825" + }, + { + "post_title": "flatironssolutions.com", + "group_name": "lockbit3", + "discovered": "2023-01-20 14:54:17.357228" + }, + { + "post_title": "Guardian Analytics (US)", + "group_name": "daixin", + "discovered": "2023-01-20 17:01:31.760003" + }, + { + "post_title": "NatureWorks", + "group_name": "blackbasta", + "discovered": "2023-01-21 01:25:10.458295" + }, + { + "post_title": "Sterling", + "group_name": "blackbasta", + "discovered": "2023-01-21 01:25:11.268526" + }, + { + "post_title": "The Exchange Bank", + "group_name": "blackbasta", + "discovered": "2023-01-21 01:25:11.844579" + }, + { + "post_title": "Jeppesen", + "group_name": "blackbasta", + "discovered": "2023-01-21 01:25:12.598312" + }, + { + "post_title": "https://cadmet.com/", + "group_name": "royal", + "discovered": "2023-01-21 01:25:18.370260" + }, + { + "post_title": "diia.gov.ua - 765 GB *NEW*", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:19.821567" + }, + { + "post_title": "e-driver.hsc.gov.ua - 431 GB SOLD", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:21.502850" + }, + { + "post_title": "wanted.mvs.gov.ua - 3.29 GB", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:22.074283" + }, + { + "post_title": "minregion.gov.ua - 904 GB", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:22.718826" + }, + { + "post_title": "health.mia - 96.7 GB", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:23.669063" + }, + { + "post_title": "mtsbu.ua - OVER 3 TB", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:24.233790" + }, + { + "post_title": "motorsich.com", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:25.148197" + }, + { + "post_title": "kyivcity.com", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:25.710769" + }, + { + "post_title": "bdr.mvs.gov.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:26.338979" + }, + { + "post_title": "gkh.in.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:26.932817" + }, + { + "post_title": "kmu.gov.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:27.746693" + }, + { + "post_title": "mon.gov.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:28.358918" + }, + { + "post_title": "minagro.gov.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:28.931176" + }, + { + "post_title": "mfa.gov.ua", + "group_name": "freecivilian", + "discovered": "2023-01-21 01:25:29.561437" + }, + { + "post_title": "A", + "group_name": "bianlian", + "discovered": "2023-01-21 10:54:25.858608" + }, + { + "post_title": "N****", + "group_name": "bianlian", + "discovered": "2023-01-21 10:54:27.031184" + }, + { + "post_title": "HRL Technology Group", + "group_name": "bianlian", + "discovered": "2023-01-21 10:54:27.814529" + }, + { + "post_title": "https://www.pillar.ca", + "group_name": "royal", + "discovered": "2023-01-21 13:03:05.126914" + }, + { + "post_title": "payroll2u.com", + "group_name": "lockbit3", + "discovered": "2023-01-21 21:14:53.746340" + }, + { + "post_title": "ibb-business-team.de", + "group_name": "lockbit3", + "discovered": "2023-01-22 09:05:01.190918" + }, + { + "post_title": "miguelmechanical.com", + "group_name": "lockbit3", + "discovered": "2023-01-22 09:05:03.128818" + }, + { + "post_title": "CloudCall &", + "group_name": "vicesociety", + "discovered": "2023-01-23 13:01:03.620981" + }, + { + "post_title": "A?????L S?????????? ????", + "group_name": "play", + "discovered": "2023-01-23 21:07:15.305756" + }, + { + "post_title": "IFPA", + "group_name": "alphv", + "discovered": "2023-01-24 03:14:13.332442" + }, + { + "post_title": "elsan.care", + "group_name": "lockbit3", + "discovered": "2023-01-24 13:08:17.978724" + }, + { + "post_title": "xlntinc.com", + "group_name": "lockbit3", + "discovered": "2023-01-24 15:07:30.607575" + }, + { + "post_title": "First International Food co Ltd", + "group_name": "mallox", + "discovered": "2023-01-25 03:23:03.680018" + }, + { + "post_title": "BOMCALCADO", + "group_name": "mallox", + "discovered": "2023-01-25 06:50:41.667347" + }, + { + "post_title": "Copper Mountain", + "group_name": "alphv", + "discovered": "2023-01-25 13:01:14.350591" + }, + { + "post_title": "merlinpcbgroup.com", + "group_name": "lockbit3", + "discovered": "2023-01-25 13:01:19.884795" + }, + { + "post_title": "Navnit Group", + "group_name": "mallox", + "discovered": "2023-01-25 23:06:10.548820" + }, + { + "post_title": "ADMIRAL Sportwetten", + "group_name": "play", + "discovered": "2023-01-26 01:14:47.496090" + }, + { + "post_title": "SOLAR INDUSTRIES INDIA WAS HACKED. MORE THAN 2TB SECRET MILITARY DATA LEAKED", + "group_name": "alphv", + "discovered": "2023-01-26 10:53:54.528228" + }, + { + "post_title": "CHARLES P VONDERHAAR CPA WAS HACKED. MORE TNAH 50GB SENSETIVE DATA LEAKED.CHARLES P VONDER", + "group_name": "alphv", + "discovered": "2023-01-26 13:12:04.677186" + }, + { + "post_title": "https://www.traviscountytx.gov", + "group_name": "royal", + "discovered": "2023-01-26 15:01:54.202841" + }, + { + "post_title": "https://www.servicemasterclr.com", + "group_name": "royal", + "discovered": "2023-01-26 15:01:55.902426" + }, + { + "post_title": "http://www.ioccompany.com", + "group_name": "royal", + "discovered": "2023-01-26 15:01:56.601566" + }, + { + "post_title": "*******", + "group_name": "bianlian", + "discovered": "2023-01-26 19:07:55.351815" + }, + { + "post_title": "********* ******** ***** ***", + "group_name": "bianlian", + "discovered": "2023-01-26 19:07:56.401252" + }, + { + "post_title": "Bristol Community College", + "group_name": "vicesociety", + "discovered": "2023-01-27 01:20:49.431575" + }, + { + "post_title": "sdfsdf.dfg", + "group_name": "lockbit3", + "discovered": "2023-01-27 07:03:15.150234" + }, + { + "post_title": "Ultrabulk", + "group_name": "alphv", + "discovered": "2023-01-27 22:53:47.605995" + }, + { + "post_title": "EGR", + "group_name": "vicesociety", + "discovered": "2023-01-28 01:12:04.788366" + }, + { + "post_title": "Westmont Hospitality Group", + "group_name": "alphv", + "discovered": "2023-01-28 03:23:27.372159" + }, + { + "post_title": "Helicar", + "group_name": "play", + "discovered": "2023-01-28 03:23:35.200624" + }, + { + "post_title": "UNISALLE.EDU.CO", + "group_name": "clop", + "discovered": "2023-01-28 18:54:27.485154" + }, + { + "post_title": "Portnoff Law Associates", + "group_name": "alphv", + "discovered": "2023-01-28 18:54:45.213556" + }, + { + "post_title": "ylresin.com", + "group_name": "lockbit3", + "discovered": "2023-01-28 21:08:17.345172" + }, + { + "post_title": "Seguros Equinoccial", + "group_name": "vicesociety", + "discovered": "2023-01-28 23:26:23.303840" + }, + { + "post_title": "azliver.com", + "group_name": "lockbit3", + "discovered": "2023-01-29 12:59:30.267651" + }, + { + "post_title": "NPTC Group of Colleges", + "group_name": "vicesociety", + "discovered": "2023-01-29 17:08:03.558725" + }, + { + "post_title": "airalbania.com.al", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:11.084728" + }, + { + "post_title": "bulldoggroupinc.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:12.429791" + }, + { + "post_title": "cm-vimioso.pt", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:13.315433" + }, + { + "post_title": "cplindustries.co.uk", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:14.072403" + }, + { + "post_title": "dsavocats.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:14.875559" + }, + { + "post_title": "fritsche.eu.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:16.062534" + }, + { + "post_title": "itsservicios.com.mx", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:17.193581" + }, + { + "post_title": "juvaskin.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:18.256384" + }, + { + "post_title": "kvie.org", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:19.249719" + }, + { + "post_title": "luacesasesores.es", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:20.142570" + }, + { + "post_title": "thermal.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 04:59:22.267481" + }, + { + "post_title": "perenitysoftware.com", + "group_name": "lockbit3", + "discovered": "2023-01-30 07:01:40.152481" + }, + { + "post_title": "wealthwise.com.au", + "group_name": "lockbit3", + "discovered": "2023-01-30 07:01:41.879666" + }, + { + "post_title": "fujikura.co.jp", + "group_name": "lockbit3", + "discovered": "2023-01-30 10:59:38.318779" + }, + { + "post_title": "Scheppersinstituut Wetteren", + "group_name": "vicesociety", + "discovered": "2023-01-30 17:16:13.347894" + }, + { + "post_title": "http://comune.torredelgreco.na.it", + "group_name": "royal", + "discovered": "2023-01-30 21:13:54.535381" + }, + { + "post_title": "Okanagan College", + "group_name": "vicesociety", + "discovered": "2023-01-31 01:12:36.874396" + }, + { + "post_title": "2cara.fr", + "group_name": "lockbit3", + "discovered": "2023-01-31 03:30:20.899989" + }, + { + "post_title": "geraardsbergen.be", + "group_name": "lockbit3", + "discovered": "2023-01-31 03:30:23.447193" + }, + { + "post_title": "parkavedoors.com", + "group_name": "lockbit3", + "discovered": "2023-01-31 03:30:25.651273" + }, + { + "post_title": "tcels.or.th", + "group_name": "lockbit3", + "discovered": "2023-01-31 03:30:27.349326" + }, + { + "post_title": "Societa Italiana Brevetti SpA", + "group_name": "vicesociety", + "discovered": "2023-01-31 19:04:41.814831" + }, + { + "post_title": "TechInsights", + "group_name": "vicesociety", + "discovered": "2023-01-31 19:04:43.350904" + }, + { + "post_title": "Guildford County School", + "group_name": "vicesociety", + "discovered": "2023-02-01 06:58:19.957738" + }, + { + "post_title": "https://www.tkelevator.com", + "group_name": "royal", + "discovered": "2023-02-01 06:58:27.697730" + }, + { + "post_title": "N** ******", + "group_name": "bianlian", + "discovered": "2023-02-01 18:53:44.324813" + }, + { + "post_title": "pharmagestao.com.br", + "group_name": "lockbit3", + "discovered": "2023-02-02 01:23:35.041418" + }, + { + "post_title": "SOTO Consulting Engineers", + "group_name": "alphv", + "discovered": "2023-02-02 04:54:37.156222" + }, + { + "post_title": "https://www.casaley.com.mx/", + "group_name": "royal", + "discovered": "2023-02-02 06:53:56.619137" + }, + { + "post_title": "iongroup.com", + "group_name": "lockbit3", + "discovered": "2023-02-02 08:58:19.992151" + }, + { + "post_title": "https://us.messer-cutting.com/", + "group_name": "royal", + "discovered": "2023-02-02 17:05:56.148260" + }, + { + "post_title": "McEwan Fraser Legal", + "group_name": "alphv", + "discovered": "2023-02-02 21:05:11.393283" + }, + { + "post_title": "avantetextil.com.mx", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:31.850133" + }, + { + "post_title": "biosonicsinc.com", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:32.930695" + }, + { + "post_title": "byte.gr", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:33.802993" + }, + { + "post_title": "nlsmichigan.org", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:36.473840" + }, + { + "post_title": "plasmasurgical.com", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:37.591841" + }, + { + "post_title": "seelllc.com", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:39.009054" + }, + { + "post_title": "transportsn.com", + "group_name": "lockbit3", + "discovered": "2023-02-02 22:56:40.175573" + }, + { + "post_title": "bethrivkah.edu", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:18.471066" + }, + { + "post_title": "crystalcreamery.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:19.985248" + }, + { + "post_title": "fabricatedpipe.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:21.294260" + }, + { + "post_title": "guardiananalytics.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:22.500891" + }, + { + "post_title": "kostika.co.il", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:24.019434" + }, + { + "post_title": "sakrgroup.net", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:25.861573" + }, + { + "post_title": "scandia.ro", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:26.716032" + }, + { + "post_title": "tonoli.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 01:19:28.012735" + }, + { + "post_title": "jjdentistry.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 13:07:31.301383" + }, + { + "post_title": "redfordpd.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 15:04:26.909223" + }, + { + "post_title": "Point Dedicated Services", + "group_name": "play", + "discovered": "2023-02-03 19:01:06.216134" + }, + { + "post_title": "urmgroup.com.au", + "group_name": "lockbit3", + "discovered": "2023-02-03 23:08:10.257165" + }, + { + "post_title": "virtuosgames.com", + "group_name": "lockbit3", + "discovered": "2023-02-03 23:08:11.068663" + }, + { + "post_title": "nexuspoint.com", + "group_name": "lockbit3", + "discovered": "2023-02-04 12:58:00.147403" + }, + { + "post_title": "Five Guys Enterprises, LLC", + "group_name": "alphv", + "discovered": "2023-02-04 23:07:59.162336" + }, + { + "post_title": "Finaport", + "group_name": "alphv", + "discovered": "2023-02-05 11:02:56.560679" + }, + { + "post_title": "bplawyers.co.id", + "group_name": "lockbit3", + "discovered": "2023-02-05 11:03:01.152997" + }, + { + "post_title": "qsi-q3.de", + "group_name": "lockbit3", + "discovered": "2023-02-05 15:03:32.713398" + }, + { + "post_title": "El-Mohandes", + "group_name": "alphv", + "discovered": "2023-02-06 13:05:00.626319" + }, + { + "post_title": "https://www.ics-nett.com/", + "group_name": "royal", + "discovered": "2023-02-06 13:05:09.389283" + }, + { + "post_title": "crispinvalve.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:06.206251" + }, + { + "post_title": "etbrick.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:07.518241" + }, + { + "post_title": "hkri.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:09.151015" + }, + { + "post_title": "jams.edu.jo", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:10.303988" + }, + { + "post_title": "medellin.gov.co", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:11.914747" + }, + { + "post_title": "nicklaus.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:13.177826" + }, + { + "post_title": "prlabs.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:14.511338" + }, + { + "post_title": "wcinet.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 15:02:16.688459" + }, + { + "post_title": "A*********", + "group_name": "bianlian", + "discovered": "2023-02-06 15:02:17.871360" + }, + { + "post_title": "A***", + "group_name": "bianlian", + "discovered": "2023-02-06 15:02:18.763740" + }, + { + "post_title": "*r***** ********** ******** ***********", + "group_name": "bianlian", + "discovered": "2023-02-06 15:02:19.717517" + }, + { + "post_title": "teleapps.com", + "group_name": "lockbit3", + "discovered": "2023-02-06 17:00:31.268858" + }, + { + "post_title": "Woodmeister Master Builders, Inc.", + "group_name": "bianlian", + "discovered": "2023-02-06 17:00:32.725998" + }, + { + "post_title": "AmerisourceBergen/Censora - MWI Animal Health", + "group_name": "lorenz", + "discovered": "2023-02-06 18:55:17.298299" + }, + { + "post_title": "?C?", + "group_name": "play", + "discovered": "2023-02-06 23:02:55.785940" + }, + { + "post_title": "L?? C??e", + "group_name": "play", + "discovered": "2023-02-06 23:02:56.799332" + }, + { + "post_title": "The DGCX", + "group_name": "ransomhouse", + "discovered": "2023-02-07 03:14:34.122435" + }, + { + "post_title": "royalmailgroup.com", + "group_name": "lockbit3", + "discovered": "2023-02-07 05:11:14.822203" + }, + { + "post_title": "cantinatollo.it", + "group_name": "lockbit3", + "discovered": "2023-02-07 13:22:11.950558" + }, + { + "post_title": "Penn Power Group", + "group_name": "blackbyte", + "discovered": "2023-02-07 21:11:14.129319" + }, + { + "post_title": "transports-feuillet.fr", + "group_name": "lockbit3", + "discovered": "2023-02-08 10:53:15.319221" + }, + { + "post_title": "http://www.trendsetterengineering.com", + "group_name": "royal", + "discovered": "2023-02-08 17:17:18.833583" + }, + { + "post_title": "Kerber, Eck & Braeckel LLP", + "group_name": "alphv", + "discovered": "2023-02-08 23:06:11.004586" + }, + { + "post_title": "JReynolds", + "group_name": "alphv", + "discovered": "2023-02-08 23:06:11.802458" + }, + { + "post_title": "Menken Orlando", + "group_name": "alphv", + "discovered": "2023-02-08 23:06:12.624675" + }, + { + "post_title": "A10", + "group_name": "play", + "discovered": "2023-02-08 23:06:21.259800" + }, + { + "post_title": "ACS", + "group_name": "play", + "discovered": "2023-02-08 23:06:22.068423" + }, + { + "post_title": "Cave Beblenheim", + "group_name": "play", + "discovered": "2023-02-08 23:06:22.887052" + }, + { + "post_title": "Mount Saint Mary College", + "group_name": "vicesociety", + "discovered": "2023-02-09 03:16:31.719374" + }, + { + "post_title": "phihong.com.tw", + "group_name": "lockbit3", + "discovered": "2023-02-09 04:54:45.771462" + }, + { + "post_title": "arcessex.org", + "group_name": "lockbit3", + "discovered": "2023-02-09 10:53:05.652732" + }, + { + "post_title": "M???????? S??", + "group_name": "play", + "discovered": "2023-02-09 19:04:23.326207" + }, + { + "post_title": "Jeffries Morris", + "group_name": "ransomhouse", + "discovered": "2023-02-10 01:00:23.176600" + }, + { + "post_title": "http://www.tusd1.org", + "group_name": "royal", + "discovered": "2023-02-10 14:48:09.681281" + }, + { + "post_title": "HAK Grazbachgasse", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:32.127484" + }, + { + "post_title": "Thompson Safety", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:32.878426" + }, + { + "post_title": "ANXA", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:33.555909" + }, + { + "post_title": "Advance2000", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:34.309303" + }, + { + "post_title": "Danielski Farms Inc.", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:35.841082" + }, + { + "post_title": "I*****", + "group_name": "bianlian", + "discovered": "2023-02-11 16:59:36.700775" + }, + { + "post_title": "Aviacode (GeBBS)", + "group_name": "0mega", + "discovered": "2023-02-12 01:10:44.250305" + }, + { + "post_title": "B&G Foods (CA, US)", + "group_name": "daixin", + "discovered": "2023-02-12 01:10:46.326522" + }, + { + "post_title": "interpaving.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 11:17:32.231242" + }, + { + "post_title": "maysecc.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 11:17:34.562290" + }, + { + "post_title": "covermeinsurance.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 14:58:32.840776" + }, + { + "post_title": "mrkpc.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 14:58:35.787005" + }, + { + "post_title": "Cork Institute of Technology & Munster Technological University", + "group_name": "alphv", + "discovered": "2023-02-12 17:02:27.082773" + }, + { + "post_title": "Inland Group", + "group_name": "blackbyte", + "discovered": "2023-02-12 18:51:07.295726" + }, + { + "post_title": "lhermite-agri.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 20:54:46.847070" + }, + { + "post_title": "mhstech.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 20:54:48.393476" + }, + { + "post_title": "olsenlawgroup.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 20:54:49.435328" + }, + { + "post_title": "ppinvestors.com", + "group_name": "lockbit3", + "discovered": "2023-02-12 20:54:50.597410" + }, + { + "post_title": "wilsonart.co.th", + "group_name": "lockbit3", + "discovered": "2023-02-12 20:54:52.708070" + }, + { + "post_title": "greekpeak.net", + "group_name": "lockbit3", + "discovered": "2023-02-13 08:58:12.815099" + }, + { + "post_title": "laganscg.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 08:58:14.263749" + }, + { + "post_title": "mdstrucking.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 08:58:15.472517" + }, + { + "post_title": "chempartner.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:36.833094" + }, + { + "post_title": "dana-group.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:38.075608" + }, + { + "post_title": "hidalgocounty.us", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:39.783240" + }, + { + "post_title": "mangalagroup.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:41.258358" + }, + { + "post_title": "nonson.com.vn", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:42.451315" + }, + { + "post_title": "tucsoneyecare.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:45.999851" + }, + { + "post_title": "vanderkaay.com", + "group_name": "lockbit3", + "discovered": "2023-02-13 13:08:46.804730" + }, + { + "post_title": "http://www.reventics.com", + "group_name": "royal", + "discovered": "2023-02-13 13:08:49.876529" + }, + { + "post_title": "cassaragionieri.it", + "group_name": "lockbit3", + "discovered": "2023-02-13 16:51:40.835104" + }, + { + "post_title": "Banco Sol", + "group_name": "alphv", + "discovered": "2023-02-14 03:39:40.315818" + }, + { + "post_title": "Vitas", + "group_name": "alphv", + "discovered": "2023-02-14 03:39:41.171474" + }, + { + "post_title": "Hospital Service SpA", + "group_name": "ransomhouse", + "discovered": "2023-02-14 03:39:44.221111" + }, + { + "post_title": "srf.com", + "group_name": "lockbit3", + "discovered": "2023-02-14 08:58:35.330315" + }, + { + "post_title": "albanesi.com.ar", + "group_name": "lockbit3", + "discovered": "2023-02-14 10:59:41.601019" + }, + { + "post_title": "cefcostores.com", + "group_name": "lockbit3", + "discovered": "2023-02-14 12:56:44.380704" + }, + { + "post_title": "https://www.delallo.com", + "group_name": "royal", + "discovered": "2023-02-14 19:06:53.863523" + }, + { + "post_title": "http://www.alexandercityal.gov", + "group_name": "royal", + "discovered": "2023-02-14 19:06:54.830816" + }, + { + "post_title": "Energie Pool Schweiz", + "group_name": "play", + "discovered": "2023-02-14 22:55:07.080416" + }, + { + "post_title": "Microgame SpA", + "group_name": "play", + "discovered": "2023-02-14 22:55:08.330877" + }, + { + "post_title": "gruppobeltrame.com", + "group_name": "lockbit3", + "discovered": "2023-02-15 01:12:04.214131" + }, + { + "post_title": "Leal Group", + "group_name": "alphv", + "discovered": "2023-02-15 03:17:31.122771" + }, + { + "post_title": "montibello.com", + "group_name": "lockbit3", + "discovered": "2023-02-15 11:00:31.777632" + }, + { + "post_title": "nationallocums.co.uk", + "group_name": "lockbit3", + "discovered": "2023-02-15 11:00:32.709625" + }, + { + "post_title": "richardsind.com", + "group_name": "lockbit3", + "discovered": "2023-02-15 11:00:33.895824" + }, + { + "post_title": "semsinc.net", + "group_name": "lockbit3", + "discovered": "2023-02-15 12:57:19.912076" + }, + { + "post_title": "vipar.com", + "group_name": "lockbit3", + "discovered": "2023-02-15 12:57:21.461588" + }, + { + "post_title": "blackandwhitecabs.com.au", + "group_name": "lockbit3", + "discovered": "2023-02-16 01:05:26.486932" + }, + { + "post_title": "trudi.it", + "group_name": "lockbit3", + "discovered": "2023-02-16 01:05:32.316645" + }, + { + "post_title": "Mecaro Co., Ltd", + "group_name": "mallox", + "discovered": "2023-02-16 01:05:35.455998" + }, + { + "post_title": "Gallier Orléans", + "group_name": "mallox", + "discovered": "2023-02-16 03:10:18.016524" + }, + { + "post_title": "Hydrofit Alliance Ltd", + "group_name": "mallox", + "discovered": "2023-02-16 03:10:18.768120" + }, + { + "post_title": "coreautomation.com", + "group_name": "lockbit3", + "discovered": "2023-02-16 13:01:42.165792" + }, + { + "post_title": "http://www.evansonline.com", + "group_name": "royal", + "discovered": "2023-02-16 13:01:47.810695" + }, + { + "post_title": "royallepage.ca", + "group_name": "lockbit3", + "discovered": "2023-02-16 20:55:21.093158" + }, + { + "post_title": "vitrox.com", + "group_name": "lockbit3", + "discovered": "2023-02-16 20:55:23.091788" + }, + { + "post_title": "ziapueblo.org", + "group_name": "lockbit3", + "discovered": "2023-02-16 20:55:24.067286" + }, + { + "post_title": "myerspower.com", + "group_name": "lockbit3", + "discovered": "2023-02-17 01:12:46.857581" + }, + { + "post_title": "vissan.com.vn", + "group_name": "lockbit3", + "discovered": "2023-02-17 01:12:49.649277" + }, + { + "post_title": "newbridge.org", + "group_name": "lockbit3", + "discovered": "2023-02-17 10:56:46.555451" + }, + { + "post_title": "cordfinancial.com", + "group_name": "lockbit3", + "discovered": "2023-02-17 14:51:15.394821" + }, + { + "post_title": "fikes.com", + "group_name": "lockbit3", + "discovered": "2023-02-17 14:51:16.740294" + }, + { + "post_title": "Suburban Laboratories", + "group_name": "bianlian", + "discovered": "2023-02-17 14:51:20.816244" + }, + { + "post_title": "Fibertec", + "group_name": "bianlian", + "discovered": "2023-02-17 14:51:22.106312" + }, + { + "post_title": "NESG", + "group_name": "bianlian", + "discovered": "2023-02-17 14:51:23.081880" + }, + { + "post_title": "NewYorker", + "group_name": "bianlian", + "discovered": "2023-02-17 14:51:23.954550" + }, + { + "post_title": "Lawadami", + "group_name": "bianlian", + "discovered": "2023-02-17 14:51:24.943213" + }, + { + "post_title": "alliedtools.com", + "group_name": "lockbit3", + "discovered": "2023-02-17 16:51:05.633834" + }, + { + "post_title": "hotdesk.me", + "group_name": "lockbit3", + "discovered": "2023-02-18 01:05:16.209571" + }, + { + "post_title": "innophaseinc.com", + "group_name": "lockbit3", + "discovered": "2023-02-18 01:05:19.382293" + }, + { + "post_title": "piercetransit.org", + "group_name": "lockbit3", + "discovered": "2023-02-18 06:54:09.234470" + }, + { + "post_title": "aguasdoporto.pt", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:17.246413" + }, + { + "post_title": "diavaz.com", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:19.074123" + }, + { + "post_title": "inowai.com", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:20.818738" + }, + { + "post_title": "isosteo.fr", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:22.253189" + }, + { + "post_title": "primorossi.com.br", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:24.388224" + }, + { + "post_title": "sandycove.org", + "group_name": "lockbit3", + "discovered": "2023-02-18 10:57:25.286059" + }, + { + "post_title": "championfp.com", + "group_name": "lockbit3", + "discovered": "2023-02-18 16:52:30.945578" + }, + { + "post_title": "SINGLESOURCE", + "group_name": "alphv", + "discovered": "2023-02-18 20:51:02.187460" + }, + { + "post_title": "Wawasee Community School Corporation", + "group_name": "alphv", + "discovered": "2023-02-18 20:51:02.996600" + }, + { + "post_title": "Cansew", + "group_name": "alphv", + "discovered": "2023-02-18 20:51:03.851570" + }, + { + "post_title": "Hengmei Optoelectronics Co.,Ltd.", + "group_name": "alphv", + "discovered": "2023-02-18 20:51:04.484562" + }, + { + "post_title": "AMADA WELD TECH", + "group_name": "alphv", + "discovered": "2023-02-18 20:51:05.271678" + }, + { + "post_title": "bakermechanicalinc.com", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:23.841145" + }, + { + "post_title": "anthonymartin.be", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:25.667209" + }, + { + "post_title": "elliotthomes.com", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:27.635273" + }, + { + "post_title": "jetboxcargo.com", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:29.288192" + }, + { + "post_title": "laremo.de", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:30.474051" + }, + { + "post_title": "servicesfinanciersjdf.com", + "group_name": "lockbit3", + "discovered": "2023-02-19 17:06:32.661255" + }, + { + "post_title": "carlocksystems.com", + "group_name": "lockbit3", + "discovered": "2023-02-20 09:07:20.003253" + }, + { + "post_title": "http://www.dallas.k12.or.us", + "group_name": "royal", + "discovered": "2023-02-20 12:58:28.068424" + }, + { + "post_title": "https://gigatron.rs/", + "group_name": "qilin", + "discovered": "2023-02-20 14:50:57.781407" + }, + { + "post_title": "https://www.unisco.com", + "group_name": "royal", + "discovered": "2023-02-20 14:50:59.034658" + }, + { + "post_title": "https://www.ancora.com.br", + "group_name": "royal", + "discovered": "2023-02-20 14:50:59.859195" + }, + { + "post_title": "Hopsteiner", + "group_name": "lorenz", + "discovered": "2023-02-21 01:14:14.173671" + }, + { + "post_title": "I???o e???t???", + "group_name": "play", + "discovered": "2023-02-21 01:14:44.204240" + }, + { + "post_title": "lasegunda.com.ar", + "group_name": "lockbit3", + "discovered": "2023-02-21 19:08:18.858886" + }, + { + "post_title": "lyonhealy.com", + "group_name": "lockbit3", + "discovered": "2023-02-21 20:57:44.703435" + }, + { + "post_title": "beacontech.net", + "group_name": "lockbit3", + "discovered": "2023-02-21 23:14:19.062333" + }, + { + "post_title": "kboattorneys.com", + "group_name": "lockbit3", + "discovered": "2023-02-21 23:14:21.986956" + }, + { + "post_title": "treves-group.com", + "group_name": "lockbit3", + "discovered": "2023-02-21 23:14:25.305386" + }, + { + "post_title": "vuu.edu", + "group_name": "lockbit3", + "discovered": "2023-02-21 23:14:26.350437" + }, + { + "post_title": "EncinoEnergy", + "group_name": "alphv", + "discovered": "2023-02-22 12:58:38.285064" + }, + { + "post_title": "City of Lakewood", + "group_name": "alphv", + "discovered": "2023-02-22 12:58:39.096319" + }, + { + "post_title": "FUTURE BUILDINGS WAS HACKED. MORE THAN 150GB SENSETIVE DATA LEAKED", + "group_name": "alphv", + "discovered": "2023-02-22 12:58:40.046123" + }, + { + "post_title": "Summit Brands", + "group_name": "alphv", + "discovered": "2023-02-22 12:58:41.244341" + }, + { + "post_title": "Markas", + "group_name": "alphv", + "discovered": "2023-02-22 12:58:42.210393" + }, + { + "post_title": "skylinetrisource.com", + "group_name": "lockbit3", + "discovered": "2023-02-22 12:58:51.009365" + }, + { + "post_title": "fosterfarms.com", + "group_name": "lockbit3", + "discovered": "2023-02-22 14:57:29.607965" + }, + { + "post_title": "nougat-carlier.be", + "group_name": "lockbit3", + "discovered": "2023-02-22 14:57:32.624479" + }, + { + "post_title": "siqueiracastro.com.br", + "group_name": "lockbit3", + "discovered": "2023-02-22 14:57:34.535414" + }, + { + "post_title": "BULOG", + "group_name": "ransomexx", + "discovered": "2023-02-22 19:04:28.007248" + }, + { + "post_title": "PRESTIGE MAINTENANCE USA WAS HACKED", + "group_name": "alphv", + "discovered": "2023-02-22 21:01:39.809494" + }, + { + "post_title": "AASP claim there was no data leakage!", + "group_name": "ragnarlocker", + "discovered": "2023-02-22 23:01:09.841079" + }, + { + "post_title": "Kendall Hunt Publishing", + "group_name": "alphv", + "discovered": "2023-02-22 23:01:22.584200" + }, + { + "post_title": "AESCULAPIUS Farmaceutici", + "group_name": "ransomhouse", + "discovered": "2023-02-23 01:10:23.710475" + }, + { + "post_title": "Bond It", + "group_name": "ransomhouse", + "discovered": "2023-02-23 01:10:24.530955" + }, + { + "post_title": "Empresa Distribuidora de Electricidad del Este, Revenue $633.6M", + "group_name": "alphv", + "discovered": "2023-02-23 03:09:12.516314" + }, + { + "post_title": "https://stoneandsons.com", + "group_name": "royal", + "discovered": "2023-02-23 03:09:22.616576" + }, + { + "post_title": "\"FICCI\"", + "group_name": "mallox", + "discovered": "2023-02-23 06:48:19.373537" + }, + { + "post_title": "Glovers Solicitors LLP", + "group_name": "alphv", + "discovered": "2023-02-23 12:59:36.152167" + }, + { + "post_title": "The Keen Group", + "group_name": "alphv", + "discovered": "2023-02-24 03:10:57.705429" + }, + { + "post_title": "delawarelife.com", + "group_name": "lockbit3", + "discovered": "2023-02-24 14:59:38.253410" + }, + { + "post_title": "https://www.shcm.es", + "group_name": "royal", + "discovered": "2023-02-24 16:58:42.933763" + }, + { + "post_title": "InPro electric", + "group_name": "play", + "discovered": "2023-02-24 19:02:48.806334" + }, + { + "post_title": "ispace.com", + "group_name": "lockbit3", + "discovered": "2023-02-24 21:04:09.255979" + }, + { + "post_title": "Smarter Capital", + "group_name": "alphv", + "discovered": "2023-02-25 01:01:42.761773" + }, + { + "post_title": "thinkwelty.com", + "group_name": "alphv", + "discovered": "2023-02-26 10:53:37.889012" + }, + { + "post_title": "D***", + "group_name": "bianlian", + "discovered": "2023-02-26 12:52:03.550910" + }, + { + "post_title": "A**** ********* ********* and *****", + "group_name": "bianlian", + "discovered": "2023-02-26 12:52:05.002027" + }, + { + "post_title": "G Electronics", + "group_name": "bianlian", + "discovered": "2023-02-26 12:52:05.877989" + }, + { + "post_title": "Engineering Services", + "group_name": "bianlian", + "discovered": "2023-02-26 12:52:06.680073" + }, + { + "post_title": "Highwealth", + "group_name": "vendetta", + "discovered": "2023-02-27 09:18:55.465332" + }, + { + "post_title": "albouyassociesconsult", + "group_name": "vendetta", + "discovered": "2023-02-27 09:18:55.520724" + }, + { + "post_title": "Moose, Martin, Haynes & Lundy", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.517347" + }, + { + "post_title": "RAYAB Consulting Engineers", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.581022" + }, + { + "post_title": "International Center of Photography", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.640489" + }, + { + "post_title": "AP Emissions Technologies", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.698235" + }, + { + "post_title": "Foamtec International", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.757084" + }, + { + "post_title": "PetroChina Indonesia", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.816192" + }, + { + "post_title": "Bank of Africa", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.874214" + }, + { + "post_title": "Tonga Communications", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.931621" + }, + { + "post_title": "Diethelm Keller Aviation Pte Ltd ", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:19.988776" + }, + { + "post_title": "Eureka Casino Resort", + "group_name": "medusa", + "discovered": "2023-02-27 09:33:20.047742" + }, + { + "post_title": "bocca-sacs.com", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:19.370744" + }, + { + "post_title": "carveraero.com", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:20.278106" + }, + { + "post_title": "cotteeparker.com.au", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:21.100817" + }, + { + "post_title": "moci.gov.kw", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:23.421462" + }, + { + "post_title": "pcproductsinter.com", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:24.492852" + }, + { + "post_title": "wcso.us", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:26.600294" + }, + { + "post_title": "wsisd.com", + "group_name": "lockbit3", + "discovered": "2023-02-27 10:52:27.581465" + }, + { + "post_title": "Chowtaifook", + "group_name": "vendetta", + "discovered": "2023-02-27 10:52:31.332953" + }, + { + "post_title": "hyosung.jp", + "group_name": "lockbit3", + "discovered": "2023-02-27 12:49:57.559266" + }, + { + "post_title": "rosenbauer.com", + "group_name": "lockbit3", + "discovered": "2023-02-27 12:50:00.228152" + }, + { + "post_title": "MSX International", + "group_name": "snatch", + "discovered": "2023-02-27 20:30:04.201285" + }, + { + "post_title": "Ingenico", + "group_name": "snatch", + "discovered": "2023-02-27 20:30:04.996802" + }, + { + "post_title": "ilfsindia.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 03:00:44.723145" + }, + { + "post_title": "Coole Bevis Solicitors", + "group_name": "alphv", + "discovered": "2023-02-28 08:33:23.480186" + }, + { + "post_title": "INDIKA ENERGY GLOBAL", + "group_name": "alphv", + "discovered": "2023-02-28 08:33:24.442791" + }, + { + "post_title": "lsa-international.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 08:33:29.991127" + }, + { + "post_title": "cobcreditunion.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 12:34:31.014778" + }, + { + "post_title": "georgeleslie.co.uk", + "group_name": "lockbit3", + "discovered": "2023-02-28 12:34:33.386822" + }, + { + "post_title": "globalcommunities.org", + "group_name": "lockbit3", + "discovered": "2023-02-28 12:34:34.140930" + }, + { + "post_title": "wmich.edu", + "group_name": "lockbit3", + "discovered": "2023-02-28 12:34:38.095965" + }, + { + "post_title": "df.senac.br", + "group_name": "lockbit3", + "discovered": "2023-02-28 14:33:57.717657" + }, + { + "post_title": "haeco.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 14:33:59.392113" + }, + { + "post_title": "nokair.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 14:34:01.928811" + }, + { + "post_title": "princepalace.co.th", + "group_name": "lockbit3", + "discovered": "2023-02-28 14:34:03.455332" + }, + { + "post_title": "hafele.com", + "group_name": "lockbit3", + "discovered": "2023-02-28 20:37:31.561220" + }, + { + "post_title": "indigo.ca", + "group_name": "lockbit3", + "discovered": "2023-02-28 22:28:04.771049" + }, + { + "post_title": "egas.no", + "group_name": "lockbit3", + "discovered": "2023-03-01 08:30:20.961109" + }, + { + "post_title": "hico-ics.com", + "group_name": "lockbit3", + "discovered": "2023-03-01 08:30:22.810552" + }, + { + "post_title": "laxmi.com", + "group_name": "lockbit3", + "discovered": "2023-03-01 08:30:24.365910" + }, + { + "post_title": "Kimko Realty", + "group_name": "alphv", + "discovered": "2023-03-01 10:29:51.360848" + }, + { + "post_title": "Vesuvius", + "group_name": "vicesociety", + "discovered": "2023-03-01 10:29:54.983620" + }, + { + "post_title": "tjel.net", + "group_name": "lockbit3", + "discovered": "2023-03-01 10:30:01.852278" + }, + { + "post_title": "Kenya Airports Authority", + "group_name": "medusa", + "discovered": "2023-03-01 10:30:05.164020" + }, + { + "post_title": "Diethelm Keller Aviation Pte Ltd", + "group_name": "medusa", + "discovered": "2023-03-01 10:30:06.324889" + }, + { + "post_title": "E&S Heating & Ventilation Ltd", + "group_name": "ransomhouse", + "discovered": "2023-03-01 16:56:40.381870" + }, + { + "post_title": "Audio Video", + "group_name": "ransomhouse", + "discovered": "2023-03-01 19:04:33.433507" + }, + { + "post_title": "The Metropolitan Opera", + "group_name": "snatch", + "discovered": "2023-03-01 22:45:05.892680" + }, + { + "post_title": "O???a??", + "group_name": "play", + "discovered": "2023-03-02 01:09:01.063335" + }, + { + "post_title": "ascentengrs.com", + "group_name": "lockbit3", + "discovered": "2023-03-02 06:47:35.929570" + }, + { + "post_title": "Bettuzzi And Partners", + "group_name": "ransomexx", + "discovered": "2023-03-02 08:52:21.078988" + }, + { + "post_title": "Traffic Ticket Office", + "group_name": "alphv", + "discovered": "2023-03-02 14:46:50.915706" + }, + { + "post_title": "http://FIMM.FR", + "group_name": "royal", + "discovered": "2023-03-02 20:48:30.792804" + }, + { + "post_title": "Oakland", + "group_name": "play", + "discovered": "2023-03-03 02:39:09.823994" + }, + { + "post_title": "Parques Reunidos", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:40.323569" + }, + { + "post_title": "M**** M************", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:41.575149" + }, + { + "post_title": "PLP Architecture", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:42.417980" + }, + { + "post_title": "Zerbe Retirement Community", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:43.158089" + }, + { + "post_title": "Surtronics", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:44.142955" + }, + { + "post_title": "ACCSC", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:45.088932" + }, + { + "post_title": "Arizona Reproductive Medicine Specialists", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:46.187418" + }, + { + "post_title": "Waynesboro", + "group_name": "bianlian", + "discovered": "2023-03-03 14:52:47.072693" + }, + { + "post_title": "New Leak in lawyers company AASP.", + "group_name": "ragnarlocker", + "discovered": "2023-03-03 18:49:26.974339" + }, + { + "post_title": "HUNOSA", + "group_name": "vicesociety", + "discovered": "2023-03-03 22:46:29.580696" + }, + { + "post_title": "blackswanhealth", + "group_name": "alphv", + "discovered": "2023-03-04 08:49:11.225023" + }, + { + "post_title": "Welty Building Company", + "group_name": "alphv", + "discovered": "2023-03-04 08:49:12.031265" + }, + { + "post_title": "CMMG Inc", + "group_name": "alphv", + "discovered": "2023-03-04 08:49:12.827633" + }, + { + "post_title": "SkyFiber Networks", + "group_name": "alphv", + "discovered": "2023-03-04 08:49:13.573122" + }, + { + "post_title": "AICHELIN UNITHERM", + "group_name": "mallox", + "discovered": "2023-03-04 10:49:41.484278" + }, + { + "post_title": "T******** ***** **********", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:46.407544" + }, + { + "post_title": "S*********** **********", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:47.698730" + }, + { + "post_title": "S***** ***********", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:48.352935" + }, + { + "post_title": "A***** ********* **********", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:49.021047" + }, + { + "post_title": "V******* ****", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:49.676868" + }, + { + "post_title": "R****", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:50.647661" + }, + { + "post_title": "P* ***** **** L****** ***", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:52.255924" + }, + { + "post_title": "S********* *****", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:52.926537" + }, + { + "post_title": "S**** **********", + "group_name": "bianlian", + "discovered": "2023-03-05 06:46:53.731348" + }, + { + "post_title": "AddWeb Solution Pvt", + "group_name": "mallox", + "discovered": "2023-03-05 12:49:35.059032" + }, + { + "post_title": "HAW Hamburg", + "group_name": "vicesociety", + "discovered": "2023-03-05 20:55:02.342229" + }, + { + "post_title": "Los Altos Foods", + "group_name": "alphv", + "discovered": "2023-03-06 01:11:20.053049" + }, + { + "post_title": "Lehigh Valley Health Network", + "group_name": "alphv", + "discovered": "2023-03-06 01:11:20.899189" + }, + { + "post_title": "Kventa Kft", + "group_name": "vicesociety", + "discovered": "2023-03-06 09:03:27.801347" + }, + { + "post_title": "The Institute of Space Technology", + "group_name": "medusa", + "discovered": "2023-03-06 09:03:37.577867" + }, + { + "post_title": "Circa Jewels", + "group_name": "mallox", + "discovered": "2023-03-06 12:40:49.454248" + }, + { + "post_title": "https://www.protektor.co.uk", + "group_name": "royal", + "discovered": "2023-03-06 14:48:48.531865" + }, + { + "post_title": "https://www.e-wilhelm-gmbh.de", + "group_name": "royal", + "discovered": "2023-03-06 14:48:49.332737" + }, + { + "post_title": "https://www.krinos.com", + "group_name": "royal", + "discovered": "2023-03-06 14:48:50.180871" + }, + { + "post_title": "Minneapolis Public Schools", + "group_name": "medusa", + "discovered": "2023-03-07 10:42:07.125133" + }, + { + "post_title": "Regional Transportation Authority", + "group_name": "monti", + "discovered": "2023-03-07 18:32:24.609345" + }, + { + "post_title": "http://www.workplace.org", + "group_name": "royal", + "discovered": "2023-03-08 20:35:43.098856" + }, + { + "post_title": "audio-technica.com", + "group_name": "lockbit3", + "discovered": "2023-03-09 06:30:37.657811" + }, + { + "post_title": "https://thomastonmills.com", + "group_name": "royal", + "discovered": "2023-03-09 08:29:56.209433" + }, + { + "post_title": "http://www.brauerei-schimpf.de", + "group_name": "royal", + "discovered": "2023-03-09 10:28:11.010585" + }, + { + "post_title": "http://www.walkerscm.com", + "group_name": "royal", + "discovered": "2023-03-09 16:36:55.121412" + }, + { + "post_title": "https://www.wellingtonpower.com", + "group_name": "royal", + "discovered": "2023-03-09 20:30:28.598242" + }, + { + "post_title": "National Business Furniture", + "group_name": "medusa", + "discovered": "2023-03-09 22:32:25.590922" + }, + { + "post_title": "pmsoffice.de", + "group_name": "lockbit3", + "discovered": "2023-03-10 00:41:31.466747" + }, + { + "post_title": "Garbarino SAICeI", + "group_name": "medusa", + "discovered": "2023-03-10 00:41:35.979583" + }, + { + "post_title": "sagardoy.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 08:31:16.960870" + }, + { + "post_title": "https://www.littlemountaincare.org", + "group_name": "royal", + "discovered": "2023-03-10 08:31:21.054831" + }, + { + "post_title": "https://www.materialogic.com", + "group_name": "royal", + "discovered": "2023-03-10 08:31:21.800790" + }, + { + "post_title": "https://www.hardmfg.com", + "group_name": "royal", + "discovered": "2023-03-10 08:31:22.602196" + }, + { + "post_title": "https://www.jacksondean.com", + "group_name": "royal", + "discovered": "2023-03-10 08:31:23.370694" + }, + { + "post_title": "https://www.alcuilux.lu", + "group_name": "royal", + "discovered": "2023-03-10 08:31:24.145637" + }, + { + "post_title": "https://www.richardsanders.co.uk", + "group_name": "royal", + "discovered": "2023-03-10 08:31:25.066324" + }, + { + "post_title": "https://www.highway-equipment.com", + "group_name": "royal", + "discovered": "2023-03-10 10:27:58.130179" + }, + { + "post_title": "https://www.epaenlinea.com", + "group_name": "royal", + "discovered": "2023-03-10 10:27:59.180022" + }, + { + "post_title": "alpes-sante-travail.org", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:10.239105" + }, + { + "post_title": "heidelbergbread.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:13.385810" + }, + { + "post_title": "kisp.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:14.804027" + }, + { + "post_title": "schauenburg.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:17.655774" + }, + { + "post_title": "southamericantours.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:18.711423" + }, + { + "post_title": "wunan.org.au", + "group_name": "lockbit3", + "discovered": "2023-03-10 12:34:20.192088" + }, + { + "post_title": "https://kmwp.de", + "group_name": "royal", + "discovered": "2023-03-10 12:34:23.257999" + }, + { + "post_title": "drilmaco.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 14:31:10.738616" + }, + { + "post_title": "micos.com", + "group_name": "lockbit3", + "discovered": "2023-03-10 14:31:13.239484" + }, + { + "post_title": "techhard.ae", + "group_name": "lockbit3", + "discovered": "2023-03-10 14:31:15.786886" + }, + { + "post_title": "eprinsa.es", + "group_name": "lockbit3", + "discovered": "2023-03-10 20:30:24.662802" + }, + { + "post_title": "Russell Finex", + "group_name": "play", + "discovered": "2023-03-10 22:29:49.681486" + }, + { + "post_title": "Secure Wrap", + "group_name": "play", + "discovered": "2023-03-10 22:29:50.648683" + }, + { + "post_title": "The M. K. Morse", + "group_name": "play", + "discovered": "2023-03-10 22:29:51.261904" + }, + { + "post_title": "Leemock", + "group_name": "play", + "discovered": "2023-03-10 22:29:52.008208" + }, + { + "post_title": "Real Pro", + "group_name": "play", + "discovered": "2023-03-10 22:29:52.734414" + }, + { + "post_title": "Delaware Life Insurance Company", + "group_name": "ransomhouse", + "discovered": "2023-03-11 00:39:45.590121" + }, + { + "post_title": "Berkeley County Schools", + "group_name": "vicesociety", + "discovered": "2023-03-11 06:31:13.040545" + }, + { + "post_title": "cktc.edu", + "group_name": "lockbit3", + "discovered": "2023-03-11 10:28:57.495592" + }, + { + "post_title": "favoritefoods.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 10:28:59.100929" + }, + { + "post_title": "omegaservicos.com.br", + "group_name": "lockbit3", + "discovered": "2023-03-11 10:29:01.511587" + }, + { + "post_title": "bonta-viva.it", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:40.062728" + }, + { + "post_title": "brandywine-homes.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:41.321325" + }, + { + "post_title": "cqservice.sk", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:42.915232" + }, + { + "post_title": "greggardnergm.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:44.255456" + }, + { + "post_title": "grupohospitalarvidas.com.br", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:45.165014" + }, + { + "post_title": "inphenix.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:46.535852" + }, + { + "post_title": "lubrimetal.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:47.873710" + }, + { + "post_title": "meinet.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:48.919801" + }, + { + "post_title": "schradercamargo.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:50.807645" + }, + { + "post_title": "wyckoffcomfort.com", + "group_name": "lockbit3", + "discovered": "2023-03-11 12:30:52.732406" + }, + { + "post_title": "Bishop Luffa School", + "group_name": "medusa", + "discovered": "2023-03-13 04:30:17.946260" + }, + { + "post_title": "Data Pro Accounting Software, Inc", + "group_name": "bianlian", + "discovered": "2023-03-13 14:36:24.441253" + }, + { + "post_title": "Mason Manufacturing", + "group_name": "bianlian", + "discovered": "2023-03-13 14:36:26.012793" + }, + { + "post_title": "plasticproductsco.com", + "group_name": "lockbit3", + "discovered": "2023-03-13 18:37:42.886595" + }, + { + "post_title": "Royal Dirkzwager", + "group_name": "play", + "discovered": "2023-03-13 18:37:47.604999" + }, + { + "post_title": "hendrickcorp.com", + "group_name": "lockbit3", + "discovered": "2023-03-13 20:39:39.225263" + }, + { + "post_title": "maximumind.com", + "group_name": "lockbit3", + "discovered": "2023-03-13 20:39:41.135131" + }, + { + "post_title": "St. Kitts & Nevis", + "group_name": "ransomhouse", + "discovered": "2023-03-13 22:37:30.715380" + }, + { + "post_title": "sabena-engineering.com", + "group_name": "lockbit3", + "discovered": "2023-03-13 22:37:35.610233" + }, + { + "post_title": "workplace.org", + "group_name": "lockbit3", + "discovered": "2023-03-14 00:41:05.963917" + }, + { + "post_title": "Ring: Security Systems", + "group_name": "alphv", + "discovered": "2023-03-14 04:36:40.359970" + }, + { + "post_title": "Guardian Capital", + "group_name": "alphv", + "discovered": "2023-03-14 04:36:41.538286" + }, + { + "post_title": "Lehigh Valley Health Network 2", + "group_name": "alphv", + "discovered": "2023-03-14 04:36:42.324758" + }, + { + "post_title": "Optieng", + "group_name": "alphv", + "discovered": "2023-03-14 04:36:43.028374" + }, + { + "post_title": "Dancenter", + "group_name": "alphv", + "discovered": "2023-03-14 04:36:43.752063" + }, + { + "post_title": "LLPGroup", + "group_name": "medusa", + "discovered": "2023-03-14 06:38:52.699122" + }, + { + "post_title": "Tarolli", + "group_name": "lorenz", + "discovered": "2023-03-14 08:40:27.215768" + }, + { + "post_title": "Manning Building Supplies", + "group_name": "lorenz", + "discovered": "2023-03-14 08:40:28.179772" + }, + { + "post_title": "dmos.com", + "group_name": "lockbit3", + "discovered": "2023-03-14 16:37:17.756162" + }, + { + "post_title": "fiege.com", + "group_name": "lockbit3", + "discovered": "2023-03-14 16:37:19.048522" + }, + { + "post_title": "Faraday Technology", + "group_name": "ransomhouse", + "discovered": "2023-03-14 18:35:41.032871" + }, + { + "post_title": "essendant.com", + "group_name": "lockbit3", + "discovered": "2023-03-14 22:31:31.655159" + }, + { + "post_title": "kaycan.com", + "group_name": "lockbit3", + "discovered": "2023-03-14 22:31:33.354368" + }, + { + "post_title": "NRG Innovations DataBase Leak", + "group_name": "everest", + "discovered": "2023-03-15 00:43:05.057918" + }, + { + "post_title": "Cambridge College", + "group_name": "monti", + "discovered": "2023-03-15 10:43:51.078977" + }, + { + "post_title": "http://www.libertylines.com", + "group_name": "royal", + "discovered": "2023-03-15 18:41:56.902915" + }, + { + "post_title": "Etex Communications", + "group_name": "blackbyte", + "discovered": "2023-03-16 02:54:05.321646" + }, + { + "post_title": "Norman S. Wright Climatec", + "group_name": "blackbasta", + "discovered": "2023-03-16 08:35:38.960067" + }, + { + "post_title": "regaltax.us", + "group_name": "lockbit3", + "discovered": "2023-03-16 08:35:45.960263" + }, + { + "post_title": "Ecolog International", + "group_name": "vicesociety", + "discovered": "2023-03-16 10:34:18.362106" + }, + { + "post_title": "buehnen.de", + "group_name": "lockbit3", + "discovered": "2023-03-16 10:34:23.127187" + }, + { + "post_title": "mandirisekuritas.co.id", + "group_name": "lockbit3", + "discovered": "2023-03-16 10:34:26.884208" + }, + { + "post_title": "meatel.com", + "group_name": "lockbit3", + "discovered": "2023-03-16 10:34:28.205914" + }, + { + "post_title": "radium.com.tw", + "group_name": "lockbit3", + "discovered": "2023-03-16 10:34:30.228099" + }, + { + "post_title": "waldogeneral.com", + "group_name": "lockbit3", + "discovered": "2023-03-16 10:34:32.464568" + }, + { + "post_title": "******* A********* *********** *******", + "group_name": "bianlian", + "discovered": "2023-03-16 12:30:24.933591" + }, + { + "post_title": "Falcon Holdings", + "group_name": "blackbyte", + "discovered": "2023-03-16 12:53:27.631863" + }, + { + "post_title": "Wagner CAT", + "group_name": "blackbyte", + "discovered": "2023-03-16 12:53:27.693528" + }, + { + "post_title": "Petmate", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:18:45.494777" + }, + { + "post_title": "KITTLES_2", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:23.742651" + }, + { + "post_title": "DONOTCOPYLINK1", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:23.795792" + }, + { + "post_title": "Friedman & Feiger", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:23.848410" + }, + { + "post_title": "Maklersoftware", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:23.901129" + }, + { + "post_title": "Hall Booth Smith", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:23.956312" + }, + { + "post_title": "Rudman Winchell", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:24.010515" + }, + { + "post_title": "ACEA Energia", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:24.061442" + }, + { + "post_title": "MARSHALL", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:24.115400" + }, + { + "post_title": "Vornado", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:24.170265" + }, + { + "post_title": "XL Specialized Trailers", + "group_name": "blackbasta", + "discovered": "2023-03-16 13:22:24.222658" + }, + { + "post_title": "ktcs.com.my", + "group_name": "lockbit3", + "discovered": "2023-03-16 18:31:57.692735" + }, + { + "post_title": "HATCHBANK.COM", + "group_name": "clop", + "discovered": "2023-03-16 22:27:12.822195" + }, + { + "post_title": "RUBRIK.COM", + "group_name": "clop", + "discovered": "2023-03-16 22:27:13.441757" + }, + { + "post_title": "gdz.com", + "group_name": "lockbit3", + "discovered": "2023-03-17 08:30:46.501025" + }, + { + "post_title": "perfectplacement.co.uk", + "group_name": "lockbit3", + "discovered": "2023-03-17 10:25:43.635030" + }, + { + "post_title": "r-pac.com", + "group_name": "lockbit3", + "discovered": "2023-03-17 12:28:46.740426" + }, + { + "post_title": "Muzzo Group", + "group_name": "alphv", + "discovered": "2023-03-17 14:27:14.852050" + }, + { + "post_title": "npauctions.com (copart.com)", + "group_name": "alphv", + "discovered": "2023-03-17 14:27:15.696411" + }, + { + "post_title": "WALSHALBERT", + "group_name": "alphv", + "discovered": "2023-03-17 14:27:16.483822" + }, + { + "post_title": "https://www.dgm-industrie.fr", + "group_name": "royal", + "discovered": "2023-03-17 14:27:27.282560" + }, + { + "post_title": "https://www.aaaenergy.com", + "group_name": "royal", + "discovered": "2023-03-17 14:27:28.018670" + }, + { + "post_title": "draftPros", + "group_name": "play", + "discovered": "2023-03-17 16:32:50.125375" + }, + { + "post_title": "TaxAssist Accountants", + "group_name": "play", + "discovered": "2023-03-17 16:32:50.744312" + }, + { + "post_title": "Norman Shutters", + "group_name": "play", + "discovered": "2023-03-17 16:32:51.393034" + }, + { + "post_title": "Pine Tree Commercial Realty", + "group_name": "play", + "discovered": "2023-03-17 16:32:52.213412" + }, + { + "post_title": "Berga Recycling", + "group_name": "play", + "discovered": "2023-03-17 16:32:53.054834" + }, + { + "post_title": "A&T group of companies", + "group_name": "play", + "discovered": "2023-03-17 16:32:53.790169" + }, + { + "post_title": "Stanley Steemer", + "group_name": "play", + "discovered": "2023-03-17 16:32:54.503663" + }, + { + "post_title": "boothtransport.com", + "group_name": "lockbit3", + "discovered": "2023-03-17 18:32:22.082118" + }, + { + "post_title": "UnitedLex", + "group_name": "monti", + "discovered": "2023-03-17 22:28:55.926078" + }, + { + "post_title": "James Group", + "group_name": "alphv", + "discovered": "2023-03-18 06:27:53.473794" + }, + { + "post_title": "Collins Electrical", + "group_name": "alphv", + "discovered": "2023-03-18 06:27:54.360513" + }, + { + "post_title": "INRIX.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.701604" + }, + { + "post_title": "TWL.DE", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.756085" + }, + { + "post_title": "PLANATOL.DE", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.808770" + }, + { + "post_title": "PROMINENT.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.862115" + }, + { + "post_title": "NETZSCH.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.915148" + }, + { + "post_title": "PRETTL.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:17.967951" + }, + { + "post_title": "ALLSTATEPETERBILT.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.020086" + }, + { + "post_title": "NOVABIOMEDICAL.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.074338" + }, + { + "post_title": "AMEY.CO.UK", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.127245" + }, + { + "post_title": "THE7STARS.CO.UK", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.178824" + }, + { + "post_title": "EAGLE.ORG", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.233918" + }, + { + "post_title": "FUGRO.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.289863" + }, + { + "post_title": "PENTAIR.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.343743" + }, + { + "post_title": "CGG.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:18.452160" + }, + { + "post_title": "EXECUPHARM.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.559611" + }, + { + "post_title": "INDIABULLS.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.615743" + }, + { + "post_title": "SOFTWAREAG.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.670580" + }, + { + "post_title": "NFT.CO.UK", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.777348" + }, + { + "post_title": "PARKLAND.CA", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.830757" + }, + { + "post_title": "ELANDRETAIL.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.886098" + }, + { + "post_title": "SYMRISE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.940537" + }, + { + "post_title": "SINGTEL.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:19.995230" + }, + { + "post_title": "JONESDAY.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:20.103117" + }, + { + "post_title": "COLORADO.EDU", + "group_name": "clop", + "discovered": "2023-03-18 14:08:20.263663" + }, + { + "post_title": "KSSARCHITECTS.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:20.700957" + }, + { + "post_title": "MUSCHERT-GIERSE.DE", + "group_name": "clop", + "discovered": "2023-03-18 14:08:22.809541" + }, + { + "post_title": "CGMLLC.NET", + "group_name": "clop", + "discovered": "2023-03-18 14:08:24.763951" + }, + { + "post_title": "GROUPAMANA.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:24.937045" + }, + { + "post_title": "ALIVIAHEALTH.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:24.994342" + }, + { + "post_title": "HOUSELOAN.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.050643" + }, + { + "post_title": "MEDMINDER.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.104300" + }, + { + "post_title": "AXISBANK.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.210443" + }, + { + "post_title": "USWELLNESS.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.263431" + }, + { + "post_title": "ALLIEDBENEFIT.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.316360" + }, + { + "post_title": "GUINNESSPARTNERSHIP.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.372651" + }, + { + "post_title": "HOMEWOODHEALTH.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.426247" + }, + { + "post_title": "ITXCOMPANIES.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.479533" + }, + { + "post_title": "RIOTINTO.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.533121" + }, + { + "post_title": "INVESTQUEBEC.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.588280" + }, + { + "post_title": "MEDEXHCO.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.640624" + }, + { + "post_title": "NEWEUROPEANOFFSHORE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.696032" + }, + { + "post_title": "GALDERMA.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.750283" + }, + { + "post_title": "AVIDXCHANGE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.806762" + }, + { + "post_title": "SAE.ORG", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.862926" + }, + { + "post_title": "HITACHIENERGY.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.917625" + }, + { + "post_title": "HELLOBRIGHTLINE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:25.973051" + }, + { + "post_title": "WELLBE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.026878" + }, + { + "post_title": "ACENURSING.ORG", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.083462" + }, + { + "post_title": "FERGUSON.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.142010" + }, + { + "post_title": "RATELINX.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.201214" + }, + { + "post_title": "TUEBORA.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.255145" + }, + { + "post_title": "SWEEPINGCORP.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.309337" + }, + { + "post_title": "WILDFIRE-DEFENSE.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.361985" + }, + { + "post_title": "WORLDMARKET.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.416273" + }, + { + "post_title": "SERVICESTREAM.COM.AU", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.473042" + }, + { + "post_title": "JAYMART.CO.TH", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.526500" + }, + { + "post_title": "ONEX.COM", + "group_name": "clop", + "discovered": "2023-03-18 14:08:26.579879" + }, + { + "post_title": "https://www.sutton-jacobs.com", + "group_name": "royal", + "discovered": "2023-03-18 16:28:29.865803" + }, + { + "post_title": "FABREGA MOLINO (fmm.com.pa)", + "group_name": "alphv", + "discovered": "2023-03-18 20:33:55.603351" + }, + { + "post_title": "Law Firm Vazquez Nava Consultores y Abogados, S.C", + "group_name": "medusa", + "discovered": "2023-03-19 06:29:17.943209" + }, + { + "post_title": "National Institute of Ocean Technology", + "group_name": "medusa", + "discovered": "2023-03-19 06:29:18.806081" + }, + { + "post_title": "ADMIN_2", + "group_name": "blackbasta", + "discovered": "2023-03-19 08:28:39.065909" + }, + { + "post_title": "Nor-Cal Beverage", + "group_name": "blackbasta", + "discovered": "2023-03-19 08:28:40.017386" + }, + { + "post_title": "spoormaker.co.za", + "group_name": "lockbit3", + "discovered": "2023-03-19 08:28:43.754834" + }, + { + "post_title": "Donut Leaks", + "group_name": "monti", + "discovered": "2023-03-19 12:28:26.367530" + }, + { + "post_title": "American Institute for Healthcare Quality", + "group_name": "monti", + "discovered": "2023-03-19 12:28:27.608115" + }, + { + "post_title": "bbsautomation.com", + "group_name": "lockbit3", + "discovered": "2023-03-19 14:32:37.468260" + }, + { + "post_title": "hitzler-ingenieure.de", + "group_name": "lockbit3", + "discovered": "2023-03-19 16:34:07.251261" + }, + { + "post_title": "id-logistics.com", + "group_name": "lockbit3", + "discovered": "2023-03-19 16:34:08.643691" + }, + { + "post_title": "stavinvest.cz", + "group_name": "lockbit3", + "discovered": "2023-03-19 16:34:11.034959" + }, + { + "post_title": "Sunward Pharmaceutical (Sunward)", + "group_name": "alphv", + "discovered": "2023-03-19 18:34:04.452749" + }, + { + "post_title": "Avila Real Estate", + "group_name": "blackbasta", + "discovered": "2023-03-19 18:34:06.514581" + }, + { + "post_title": "jaureguy.com.ar", + "group_name": "lockbit3", + "discovered": "2023-03-19 18:34:09.105844" + }, + { + "post_title": "MONDIAL", + "group_name": "blackbasta", + "discovered": "2023-03-19 20:37:11.811186" + }, + { + "post_title": "National Board of Osteopathic Medical Examiners", + "group_name": "karakurt", + "discovered": "2023-03-20 10:34:34.667756" + }, + { + "post_title": "Kelly Group", + "group_name": "blackbyte", + "discovered": "2023-03-20 12:32:11.545369" + }, + { + "post_title": "telepizza.com", + "group_name": "lockbit3", + "discovered": "2023-03-20 14:28:33.344798" + }, + { + "post_title": "SAKSFIFTHAVENUE.COM", + "group_name": "clop", + "discovered": "2023-03-20 16:31:16.235971" + }, + { + "post_title": "emotorsdirect.ca", + "group_name": "lockbit3", + "discovered": "2023-03-20 18:29:22.943652" + }, + { + "post_title": "Indonesia Power", + "group_name": "ransomhouse", + "discovered": "2023-03-20 22:33:20.200532" + }, + { + "post_title": "alyasrafoods.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 08:26:32.695341" + }, + { + "post_title": "co.ottawa.oh.us", + "group_name": "lockbit3", + "discovered": "2023-03-21 08:26:33.838190" + }, + { + "post_title": "oaklandca.gov", + "group_name": "lockbit3", + "discovered": "2023-03-21 08:26:36.018034" + }, + { + "post_title": "Atlas Security", + "group_name": "medusa", + "discovered": "2023-03-21 08:26:39.100777" + }, + { + "post_title": "Zeus Energy S.A.C", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:00.505979" + }, + { + "post_title": "bakermech.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:01.682895" + }, + { + "post_title": "cityofallenpark.org", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:02.876884" + }, + { + "post_title": "gproulxinc.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:04.831187" + }, + { + "post_title": "jenparking.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:06.123060" + }, + { + "post_title": "ksrsac.karnataka.gov.in", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:07.117548" + }, + { + "post_title": "roslevauto.dk", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:09.143880" + }, + { + "post_title": "stolt-nielsen.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:10.466360" + }, + { + "post_title": "the3rivers.net", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:11.494378" + }, + { + "post_title": "transports-douaud.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 12:31:12.326984" + }, + { + "post_title": "SUPPLYCORE2", + "group_name": "blackbasta", + "discovered": "2023-03-21 16:28:51.681115" + }, + { + "post_title": "mangiainc.com", + "group_name": "lockbit3", + "discovered": "2023-03-21 18:30:46.572562" + }, + { + "post_title": "http://www.motoman.com", + "group_name": "royal", + "discovered": "2023-03-21 18:30:49.634125" + }, + { + "post_title": "cabinet-paillet.fr", + "group_name": "lockbit3", + "discovered": "2023-03-21 22:36:35.580507" + }, + { + "post_title": "Kress", + "group_name": "alphv", + "discovered": "2023-03-22 00:41:33.796271" + }, + { + "post_title": "Design CATAPULT", + "group_name": "ransomhouse", + "discovered": "2023-03-22 00:41:36.064797" + }, + { + "post_title": "DAYSUP", + "group_name": "blackbasta", + "discovered": "2023-03-22 12:28:58.254789" + }, + { + "post_title": "Advance America", + "group_name": "blackbasta", + "discovered": "2023-03-22 12:28:58.911964" + }, + { + "post_title": "Troutman Pepper", + "group_name": "blackbasta", + "discovered": "2023-03-22 12:28:59.694691" + }, + { + "post_title": "US District Court", + "group_name": "everest", + "discovered": "2023-03-22 16:36:39.173834" + }, + { + "post_title": "Rock Insurance Brokers", + "group_name": "blackbasta", + "discovered": "2023-03-22 20:28:19.007356" + }, + { + "post_title": "LESLIESPOOL.COM", + "group_name": "clop", + "discovered": "2023-03-22 22:30:33.318171" + }, + { + "post_title": "CROSSVILLEINC.COM", + "group_name": "clop", + "discovered": "2023-03-22 22:30:34.303157" + }, + { + "post_title": "PG.COM", + "group_name": "clop", + "discovered": "2023-03-22 22:30:35.083105" + }, + { + "post_title": "LASOLTEL.FR", + "group_name": "clop", + "discovered": "2023-03-22 22:30:35.795664" + }, + { + "post_title": "http://www.graceworks.org", + "group_name": "royal", + "discovered": "2023-03-23 04:27:54.643545" + }, + { + "post_title": "bluebirdnetwork", + "group_name": "alphv", + "discovered": "2023-03-23 08:35:41.202014" + }, + { + "post_title": "ppf.co.uk", + "group_name": "clop", + "discovered": "2023-03-23 10:28:43.243535" + }, + { + "post_title": "PPF.CO.UK", + "group_name": "clop", + "discovered": "2023-03-23 12:30:27.137425" + }, + { + "post_title": "PLURALSIGHT.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:28.177014" + }, + { + "post_title": "HRTRANSIT.ORG", + "group_name": "clop", + "discovered": "2023-03-23 12:30:29.073459" + }, + { + "post_title": "ZOSKINHEALTH.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:30.304666" + }, + { + "post_title": "GDI.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:30.993296" + }, + { + "post_title": "AMERIJET.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:31.690402" + }, + { + "post_title": "CINEPLEX.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:32.548427" + }, + { + "post_title": "KANNACT.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:33.727808" + }, + { + "post_title": "HUMANGOOD.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:34.565011" + }, + { + "post_title": "TTBH.ORG", + "group_name": "clop", + "discovered": "2023-03-23 12:30:35.317968" + }, + { + "post_title": "WVI.ORG", + "group_name": "clop", + "discovered": "2023-03-23 12:30:36.294940" + }, + { + "post_title": "SEPIRE.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:37.412725" + }, + { + "post_title": "ACCUZIP.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:38.098521" + }, + { + "post_title": "VOLARIS.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:39.151579" + }, + { + "post_title": "GRUPOVANTI.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:40.036473" + }, + { + "post_title": "MUNICHRE.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:41.332840" + }, + { + "post_title": "THECROSBYGROUP.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:42.576206" + }, + { + "post_title": "HORMELFOODS.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:43.287424" + }, + { + "post_title": "ALIVIAHELTH.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:44.105538" + }, + { + "post_title": "FIRST-CENTRAL.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:45.201034" + }, + { + "post_title": "BUNZL.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:46.086022" + }, + { + "post_title": "VERRAMOBILITY.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:46.830127" + }, + { + "post_title": "PAYBOXAPP.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:47.603634" + }, + { + "post_title": "CHEMILAB.COM.CO", + "group_name": "clop", + "discovered": "2023-03-23 12:30:48.527085" + }, + { + "post_title": "ORCAAUDIT.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:49.251424" + }, + { + "post_title": "GRAY.TV", + "group_name": "clop", + "discovered": "2023-03-23 12:30:49.942949" + }, + { + "post_title": "OSHCO.COM", + "group_name": "clop", + "discovered": "2023-03-23 12:30:51.045654" + }, + { + "post_title": "LEGACY-TECHNOLOGIES.DE", + "group_name": "clop", + "discovered": "2023-03-23 12:30:52.413288" + }, + { + "post_title": "VIRGIN.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:40.766624" + }, + { + "post_title": "SOLPAC.CO.JP", + "group_name": "clop", + "discovered": "2023-03-23 16:31:41.580502" + }, + { + "post_title": "DPWORLD.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:42.232331" + }, + { + "post_title": "CLOUDMED.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:42.845554" + }, + { + "post_title": "VUMACAM.CO.ZA", + "group_name": "clop", + "discovered": "2023-03-23 16:31:43.568900" + }, + { + "post_title": "SHOLASTIC.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:44.150599" + }, + { + "post_title": "NATIONSBENEFITS.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:44.859197" + }, + { + "post_title": "SODALESSOLUTIONS.COM", + "group_name": "clop", + "discovered": "2023-03-23 16:31:45.670116" + }, + { + "post_title": "PHOENIX.TECH", + "group_name": "clop", + "discovered": "2023-03-23 16:31:46.376042" + }, + { + "post_title": "Weickert Industries", + "group_name": "monti", + "discovered": "2023-03-23 20:31:00.506911" + }, + { + "post_title": "Autoridad de Acueductos Y Alcantarillados", + "group_name": "vicesociety", + "discovered": "2023-03-23 22:26:23.281226" + }, + { + "post_title": "Vincent Lighting Systems", + "group_name": "blackbasta", + "discovered": "2023-03-23 22:26:25.288821" + }, + { + "post_title": "Kanawha Scales", + "group_name": "blackbasta", + "discovered": "2023-03-23 22:26:26.000242" + }, + { + "post_title": "Comune Taggia", + "group_name": "ransomhouse", + "discovered": "2023-03-23 22:26:27.018761" + }, + { + "post_title": "TLG.COM", + "group_name": "clop", + "discovered": "2023-03-24 10:30:47.541358" + }, + { + "post_title": "BRIDGEWAY.COM.PH", + "group_name": "clop", + "discovered": "2023-03-24 10:30:48.552998" + }, + { + "post_title": "CROWNRESORT.COM.AU", + "group_name": "clop", + "discovered": "2023-03-24 10:30:49.436402" + }, + { + "post_title": "UNIMELB.EDU.AU", + "group_name": "clop", + "discovered": "2023-03-24 10:30:50.189301" + }, + { + "post_title": "PROGRESSION.COM", + "group_name": "clop", + "discovered": "2023-03-24 10:30:51.210620" + }, + { + "post_title": "REDBOXVOICE.COM", + "group_name": "clop", + "discovered": "2023-03-24 10:30:51.950073" + }, + { + "post_title": "DERK.CL", + "group_name": "clop", + "discovered": "2023-03-24 10:30:52.601443" + }, + { + "post_title": "TGW.COM", + "group_name": "clop", + "discovered": "2023-03-24 10:30:53.379276" + }, + { + "post_title": "ATOS.NET", + "group_name": "clop", + "discovered": "2023-03-24 10:30:54.258693" + }, + { + "post_title": "GLOBALFARM.COM.AR", + "group_name": "clop", + "discovered": "2023-03-24 10:30:54.954688" + }, + { + "post_title": "INTERTERMINALS.COM", + "group_name": "clop", + "discovered": "2023-03-24 10:30:55.763668" + }, + { + "post_title": "GOA.GOV.IN", + "group_name": "clop", + "discovered": "2023-03-24 10:30:56.607187" + }, + { + "post_title": "Gujarat Mineral", + "group_name": "medusa", + "discovered": "2023-03-24 10:31:09.838427" + }, + { + "post_title": "ALTO.US", + "group_name": "clop", + "discovered": "2023-03-24 12:31:47.683614" + }, + { + "post_title": "GRUPOFLORAPLANT.COM", + "group_name": "clop", + "discovered": "2023-03-24 12:31:48.646980" + }, + { + "post_title": "DETECH.COM.TR", + "group_name": "clop", + "discovered": "2023-03-24 12:31:49.357527" + }, + { + "post_title": "SPI.CO.ZA", + "group_name": "clop", + "discovered": "2023-03-24 12:31:50.661407" + }, + { + "post_title": "THECYPRINUS.COM", + "group_name": "clop", + "discovered": "2023-03-24 12:31:51.408262" + }, + { + "post_title": "bianchiindustry.com", + "group_name": "lockbit3", + "discovered": "2023-03-24 12:32:00.502853" + }, + { + "post_title": "Sun Pharmaceutical Industries Ltd.", + "group_name": "alphv", + "discovered": "2023-03-24 14:30:44.717466" + }, + { + "post_title": "Teklas", + "group_name": "alphv", + "discovered": "2023-03-24 14:30:45.784927" + }, + { + "post_title": "securens.in", + "group_name": "lockbit3", + "discovered": "2023-03-24 14:30:51.570242" + }, + { + "post_title": "IMAGINE360.COM", + "group_name": "clop", + "discovered": "2023-03-24 16:32:28.599514" + }, + { + "post_title": "\"CCAA\"", + "group_name": "mallox", + "discovered": "2023-03-24 16:32:39.677140" + }, + { + "post_title": "Sun Global Media Usa Ltd", + "group_name": "alphv", + "discovered": "2023-03-24 18:31:10.810306" + }, + { + "post_title": "wbactc", + "group_name": "alphv", + "discovered": "2023-03-24 18:31:11.653878" + }, + { + "post_title": "lclattorneys.com", + "group_name": "alphv", + "discovered": "2023-03-24 18:31:12.432781" + }, + { + "post_title": "INVESTORCOM.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:21.767372" + }, + { + "post_title": "COLMAC.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:22.602370" + }, + { + "post_title": "CRESCENTHOTELS.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:23.172231" + }, + { + "post_title": "INTELLICARE.COM.PH", + "group_name": "clop", + "discovered": "2023-03-24 20:29:23.836558" + }, + { + "post_title": "ENERJISAURETIM.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:24.520323" + }, + { + "post_title": "TAS.GOV.AU", + "group_name": "clop", + "discovered": "2023-03-24 20:29:25.142256" + }, + { + "post_title": "CAJASANRAFAEL.COM.MX", + "group_name": "clop", + "discovered": "2023-03-24 20:29:25.844880" + }, + { + "post_title": "EMERALDX.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:26.734313" + }, + { + "post_title": "BISSELL.COM", + "group_name": "clop", + "discovered": "2023-03-24 20:29:27.443091" + }, + { + "post_title": "Cospec Srl", + "group_name": "ransomhouse", + "discovered": "2023-03-24 22:26:39.014133" + }, + { + "post_title": "siebold.com", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:04.438914" + }, + { + "post_title": "stonehillcontracting.com", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:05.286866" + }, + { + "post_title": "jones-hamilton.com", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:06.040807" + }, + { + "post_title": "igadiltd.com", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:06.898438" + }, + { + "post_title": "hosemanufacturing.com", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:07.900183" + }, + { + "post_title": "largest provider of orthopedic care", + "group_name": "abyss", + "discovered": "2023-03-25 02:42:08.656636" + }, + { + "post_title": "demechindia.com", + "group_name": "lockbit3", + "discovered": "2023-03-25 04:29:55.473921" + }, + { + "post_title": "precisionit.co.in", + "group_name": "lockbit3", + "discovered": "2023-03-25 04:29:58.145759" + }, + { + "post_title": "slipstreaminc.org", + "group_name": "lockbit3", + "discovered": "2023-03-25 14:33:17.545024" + }, + { + "post_title": "giga.com.vc", + "group_name": "lockbit3", + "discovered": "2023-03-25 22:40:53.205621" + }, + { + "post_title": "jubileeinsurance.com", + "group_name": "lockbit3", + "discovered": "2023-03-25 22:40:54.462916" + }, + { + "post_title": "Rob Levine & Associates Lawyers", + "group_name": "alphv", + "discovered": "2023-03-26 16:31:07.828856" + }, + { + "post_title": "Pizza 73", + "group_name": "play", + "discovered": "2023-03-26 22:32:39.906357" + }, + { + "post_title": "Kk Mehta Cpa Associates", + "group_name": "play", + "discovered": "2023-03-26 22:32:41.904691" + }, + { + "post_title": "Picou Builders Supply", + "group_name": "play", + "discovered": "2023-03-26 22:32:42.694790" + }, + { + "post_title": "Guyana Goldfields", + "group_name": "play", + "discovered": "2023-03-26 22:32:43.369948" + }, + { + "post_title": "TAC", + "group_name": "play", + "discovered": "2023-03-26 22:32:44.211888" + }, + { + "post_title": "Lysander Associates", + "group_name": "play", + "discovered": "2023-03-26 22:32:44.907820" + }, + { + "post_title": "James, McElroy and Diehl", + "group_name": "play", + "discovered": "2023-03-26 22:32:45.786815" + }, + { + "post_title": "Optica", + "group_name": "play", + "discovered": "2023-03-26 22:32:46.804933" + }, + { + "post_title": "Lightcast", + "group_name": "play", + "discovered": "2023-03-26 22:32:47.504412" + }, + { + "post_title": "mcna.net", + "group_name": "lockbit3", + "discovered": "2023-03-27 04:27:29.466183" + }, + { + "post_title": "ita-moulding-process.com", + "group_name": "lockbit3", + "discovered": "2023-03-27 08:29:47.266235" + }, + { + "post_title": "https://www.lille.fr", + "group_name": "royal", + "discovered": "2023-03-27 08:29:50.660145" + }, + { + "post_title": "DUKANE-DOM", + "group_name": "blackbasta", + "discovered": "2023-03-27 10:27:15.611298" + }, + { + "post_title": "County Materials Corporation", + "group_name": "blackbasta", + "discovered": "2023-03-27 10:27:16.281575" + }, + { + "post_title": "ulmacarretillas.com", + "group_name": "lockbit3", + "discovered": "2023-03-27 10:27:20.995050" + }, + { + "post_title": "bienvilleortho.com", + "group_name": "abyss", + "discovered": "2023-03-27 10:27:23.996434" + }, + { + "post_title": "islandinsurance.ca", + "group_name": "lockbit3", + "discovered": "2023-03-27 14:39:02.388063" + }, + { + "post_title": "lqtbg.com.cn", + "group_name": "lockbit3", + "discovered": "2023-03-27 14:39:04.507772" + }, + { + "post_title": "Tanbridge House School", + "group_name": "ransomhouse", + "discovered": "2023-03-27 20:32:15.977482" + }, + { + "post_title": "All4Labels", + "group_name": "alphv", + "discovered": "2023-03-27 22:26:21.242056" + }, + { + "post_title": "tecnosysitalia.eu", + "group_name": "lockbit3", + "discovered": "2023-03-27 22:26:26.630116" + }, + { + "post_title": "City of Modesto, CA", + "group_name": "snatch", + "discovered": "2023-03-28 00:40:38.151235" + }, + { + "post_title": "piramal.com", + "group_name": "lockbit3", + "discovered": "2023-03-28 00:40:44.594351" + }, + { + "post_title": "swiftatlanta.com", + "group_name": "lockbit3", + "discovered": "2023-03-28 06:33:11.886444" + }, + { + "post_title": "grupcovesa.com", + "group_name": "lockbit3", + "discovered": "2023-03-28 10:32:20.267047" + }, + { + "post_title": "C****** ********", + "group_name": "bianlian", + "discovered": "2023-03-28 14:33:15.791004" + }, + { + "post_title": "Victoria Park", + "group_name": "bianlian", + "discovered": "2023-03-28 14:33:16.850705" + }, + { + "post_title": "Skyway Endodontics", + "group_name": "bianlian", + "discovered": "2023-03-28 14:33:18.586310" + }, + { + "post_title": "Rimex", + "group_name": "bianlian", + "discovered": "2023-03-28 14:33:19.383848" + }, + { + "post_title": "MICROFINANCE INSTITUTION", + "group_name": "karakurt", + "discovered": "2023-03-28 14:33:21.812843" + }, + { + "post_title": "PCCARX2", + "group_name": "blackbasta", + "discovered": "2023-03-28 16:33:19.491504" + }, + { + "post_title": "AV Industries", + "group_name": "ransomhouse", + "discovered": "2023-03-28 20:23:55.111495" + }, + { + "post_title": "Jablite", + "group_name": "play", + "discovered": "2023-03-28 22:31:30.894176" + }, + { + "post_title": "Oscar Software", + "group_name": "play", + "discovered": "2023-03-28 22:31:31.706983" + }, + { + "post_title": "BMW France", + "group_name": "play", + "discovered": "2023-03-28 22:31:32.359410" + }, + { + "post_title": "http://mersgooldwill.com", + "group_name": "royal", + "discovered": "2023-03-29 00:42:10.118782" + }, + { + "post_title": "http://www.ultra-met.com", + "group_name": "royal", + "discovered": "2023-03-29 00:42:10.935484" + }, + { + "post_title": "http://savannahtech.edu", + "group_name": "royal", + "discovered": "2023-03-29 00:42:11.829247" + }, + { + "post_title": "http://www.helmholtz.de", + "group_name": "royal", + "discovered": "2023-03-29 00:42:12.581859" + }, + { + "post_title": "http://www.wymondhamcollege.org", + "group_name": "royal", + "discovered": "2023-03-29 00:42:13.355890" + }, + { + "post_title": "T***** ******** **********", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:42.745457" + }, + { + "post_title": "F***** ******* **************", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:43.548597" + }, + { + "post_title": "A*******", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:44.327601" + }, + { + "post_title": "X***** *****", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:45.066244" + }, + { + "post_title": "G****** **** and *************", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:45.901163" + }, + { + "post_title": "F********** *********-************", + "group_name": "bianlian", + "discovered": "2023-03-29 10:28:46.553576" + }, + { + "post_title": "nts.go.kr", + "group_name": "lockbit3", + "discovered": "2023-03-29 12:33:30.331093" + }, + { + "post_title": "FINANCE INSTITUTION AUCTION", + "group_name": "karakurt", + "discovered": "2023-03-29 12:33:34.290433" + }, + { + "post_title": "psenergy.com", + "group_name": "lockbit3", + "discovered": "2023-03-29 14:33:28.689047" + }, + { + "post_title": "Public Appeal to the CANTALK management", + "group_name": "ragnarlocker", + "discovered": "2023-03-29 17:29:14.349095" + }, + { + "post_title": "hammondlumber.com", + "group_name": "lockbit3", + "discovered": "2023-03-29 17:29:22.996081" + }, + { + "post_title": "Temporary Leak Page #0013995NTa", + "group_name": "ragnarlocker", + "discovered": "2023-03-29 18:39:23.833807" + }, + { + "post_title": "Hit Promotional Products (US)", + "group_name": "daixin", + "discovered": "2023-03-29 20:26:55.872971" + }, + { + "post_title": "HOW TO BUY DATA?", + "group_name": "ransomblog_noname", + "discovered": "2023-03-29 22:26:58.729418" + }, + { + "post_title": "alkf+", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.196354" + }, + { + "post_title": "ARROWAL", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.243440" + }, + { + "post_title": "CESCE", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.287507" + }, + { + "post_title": "CONFIDO", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.336102" + }, + { + "post_title": "davinci", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.386669" + }, + { + "post_title": "DGCX", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.438962" + }, + { + "post_title": "FICHTNER", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.491211" + }, + { + "post_title": "FURUNO", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.538285" + }, + { + "post_title": "IRCO", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.583149" + }, + { + "post_title": "KONICA", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.628032" + }, + { + "post_title": "LINX", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.671495" + }, + { + "post_title": "NOVELIS", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.715891" + }, + { + "post_title": "OKSGROUP", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.761178" + }, + { + "post_title": "socomec", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.804886" + }, + { + "post_title": "berjayaClubs", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.847303" + }, + { + "post_title": "la providence", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.891735" + }, + { + "post_title": "turvatehnika", + "group_name": "stormous", + "discovered": "2023-03-30 11:47:19.938350" + }, + { + "post_title": "Hospital Clinic de Barcelona", + "group_name": "ransomhouse", + "discovered": "2023-03-30 02:51:50.769901" + }, + { + "post_title": "WESSEX", + "group_name": "alphv", + "discovered": "2023-03-30 06:39:54.157651" + }, + { + "post_title": "tharworx.com", + "group_name": "lockbit3", + "discovered": "2023-03-30 06:39:59.907549" + }, + { + "post_title": "7x7oralsurgery.com", + "group_name": "abyss", + "discovered": "2023-03-30 06:40:03.242736" + }, + { + "post_title": "Biman airlines", + "group_name": "moneymessage", + "discovered": "2023-03-30 20:02:25.455440" + }, + { + "post_title": "Hawaii self storage", + "group_name": "moneymessage", + "discovered": "2023-03-30 20:03:42.963447" + }, + { + "post_title": "theus-industries.fr", + "group_name": "lockbit3", + "discovered": "2023-03-30 16:32:44.118629" + }, + { + "post_title": "MULTIPLAN.COM", + "group_name": "clop", + "discovered": "2023-03-30 20:34:08.393119" + }, + { + "post_title": "groupe-seche.com", + "group_name": "lockbit3", + "discovered": "2023-03-30 22:33:12.185266" + }, + { + "post_title": "GOV.PL", + "group_name": "stormous", + "discovered": "2023-03-31 00:52:02.667958" + }, + { + "post_title": "MELCO", + "group_name": "stormous", + "discovered": "2023-03-31 00:52:03.407960" + }, + { + "post_title": "ieseco", + "group_name": "stormous", + "discovered": "2023-03-31 00:52:04.106463" + }, + { + "post_title": "matrixtelecoms", + "group_name": "stormous", + "discovered": "2023-03-31 00:52:04.853436" + }, + { + "post_title": "hacla.org [part 2]", + "group_name": "lockbit3", + "discovered": "2023-03-31 04:34:01.698324" + }, + { + "post_title": "Lewis & Clark College", + "group_name": "vicesociety", + "discovered": "2023-03-31 06:35:25.318430" + }, + { + "post_title": "1.com", + "group_name": "lockbit3", + "discovered": "2023-03-31 12:35:18.104524" + }, + { + "post_title": "http://armstrongwatson.co.uk", + "group_name": "royal", + "discovered": "2023-03-31 12:35:23.968069" + }, + { + "post_title": "OptionMetrics", + "group_name": "karakurt", + "discovered": "2023-03-31 14:31:39.988420" + }, + { + "post_title": "etkinllc.com", + "group_name": "lockbit3", + "discovered": "2023-03-31 16:29:27.266801" + }, + { + "post_title": "ativy.com", + "group_name": "lockbit3", + "discovered": "2023-04-01 00:46:43.397792" + }, + { + "post_title": "http://www.benningnet.com", + "group_name": "royal", + "discovered": "2023-04-01 04:29:30.717038" + }, + { + "post_title": "http://www.vendinggroup.com", + "group_name": "royal", + "discovered": "2023-04-01 04:29:32.148796" + }, + { + "post_title": "TRUSSWAY", + "group_name": "alphv", + "discovered": "2023-04-01 08:29:42.570977" + }, + { + "post_title": "p-and-r.com", + "group_name": "lockbit3", + "discovered": "2023-04-01 20:31:20.037164" + }, + { + "post_title": "Ruekert & Mielke", + "group_name": "alphv", + "discovered": "2023-04-01 22:27:58.326188" + }, + { + "post_title": "Lpa-group.com", + "group_name": "moneymessage", + "discovered": "2023-04-01 22:28:05.551139" + }, + { + "post_title": "Arandell Corp", + "group_name": "medusa", + "discovered": "2023-04-02 08:34:22.343753" + }, + { + "post_title": "LASOTEL.FR", + "group_name": "clop", + "discovered": "2023-04-02 20:34:56.875181" + }, + { + "post_title": "Gaston College", + "group_name": "snatch", + "discovered": "2023-04-02 20:35:02.600546" + }, + { + "post_title": "Goldenbear.com & mjhallandcompany.com", + "group_name": "moneymessage", + "discovered": "2023-04-02 20:35:12.491934" + }, + { + "post_title": "Mutual de Seguros de Chile", + "group_name": "alphv", + "discovered": "2023-04-02 22:31:35.007425" + }, + { + "post_title": "Aero Engine Solution INC", + "group_name": "ransomhouse", + "discovered": "2023-04-03 00:43:23.112807" + }, + { + "post_title": "http://stevesilver.com", + "group_name": "royal", + "discovered": "2023-04-03 06:38:22.606503" + }, + { + "post_title": "http://www.teijincarbon.com", + "group_name": "royal", + "discovered": "2023-04-03 06:38:23.366677" + }, + { + "post_title": "http://5design.net", + "group_name": "royal", + "discovered": "2023-04-03 06:38:24.042551" + }, + { + "post_title": "http://sunstar.com", + "group_name": "royal", + "discovered": "2023-04-03 06:38:24.828474" + }, + { + "post_title": "http://corizonhealth.com", + "group_name": "royal", + "discovered": "2023-04-03 06:38:25.703237" + }, + { + "post_title": "SHIVELYBROS_2", + "group_name": "blackbasta", + "discovered": "2023-04-03 08:33:42.475592" + }, + { + "post_title": "PFGUSA_2", + "group_name": "blackbasta", + "discovered": "2023-04-03 08:33:43.372302" + }, + { + "post_title": "GOCORPTECH", + "group_name": "blackbasta", + "discovered": "2023-04-03 08:33:44.310997" + }, + { + "post_title": "revvaviation.com", + "group_name": "lockbit3", + "discovered": "2023-04-03 10:30:25.192840" + }, + { + "post_title": "Sonda", + "group_name": "medusa", + "discovered": "2023-04-03 10:30:28.373753" + }, + { + "post_title": "midamericanglass.com", + "group_name": "moneymessage", + "discovered": "2023-04-03 14:28:12.644602" + }, + { + "post_title": "archi+", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:15.942223" + }, + { + "post_title": "METALWORK", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:16.838569" + }, + { + "post_title": "OCEAN", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:17.529457" + }, + { + "post_title": "Price: 0.17 BTC ", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:18.515533" + }, + { + "post_title": "SAGE", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:19.651124" + }, + { + "post_title": "TREENOVUM", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:20.304767" + }, + { + "post_title": "TWHOUSE", + "group_name": "stormous", + "discovered": "2023-04-03 18:32:20.935272" + }, + { + "post_title": "errebielle.it", + "group_name": "lockbit3", + "discovered": "2023-04-03 18:32:23.279595" + }, + { + "post_title": "thened.com", + "group_name": "lockbit3", + "discovered": "2023-04-03 20:28:10.898365" + }, + { + "post_title": "vernegroup.com", + "group_name": "lockbit3", + "discovered": "2023-04-03 20:28:11.814005" + }, + { + "post_title": "Guess who!", + "group_name": "moneymessage", + "discovered": "2023-04-03 22:30:52.875297" + }, + { + "post_title": "HUSKY1", + "group_name": "blackbasta", + "discovered": "2023-04-04 10:30:35.943630" + }, + { + "post_title": "DUKANEDOM", + "group_name": "blackbasta", + "discovered": "2023-04-04 10:30:36.935252" + }, + { + "post_title": "garrottbros.com", + "group_name": "lockbit3", + "discovered": "2023-04-04 10:30:39.274758" + }, + { + "post_title": "Electronic SYSTEMS S.p.A.", + "group_name": "alphv", + "discovered": "2023-04-04 16:30:38.359416" + }, + { + "post_title": "Dalumi Group", + "group_name": "alphv", + "discovered": "2023-04-04 16:30:39.139311" + }, + { + "post_title": "omscomponents.it", + "group_name": "lockbit3", + "discovered": "2023-04-04 18:38:54.134648" + }, + { + "post_title": "masrl.com", + "group_name": "lockbit3", + "discovered": "2023-04-04 20:34:47.978251" + }, + { + "post_title": "tvh.com", + "group_name": "lockbit3", + "discovered": "2023-04-04 20:34:49.880305" + }, + { + "post_title": "olympia.org", + "group_name": "lockbit3", + "discovered": "2023-04-05 10:42:01.554325" + }, + { + "post_title": "The Sage Next", + "group_name": "alphv", + "discovered": "2023-04-05 12:35:35.906165" + }, + { + "post_title": "Moore Engineering", + "group_name": "lorenz", + "discovered": "2023-04-05 14:33:15.006082" + }, + { + "post_title": "Intrasect Technologies", + "group_name": "lorenz", + "discovered": "2023-04-05 14:33:16.010223" + }, + { + "post_title": "NGS Super", + "group_name": "lorenz", + "discovered": "2023-04-05 14:33:16.833281" + }, + { + "post_title": "Joy Cone Co, Joy Baking group, BoDeans Baking, Altesa", + "group_name": "lorenz", + "discovered": "2023-04-05 14:33:17.595434" + }, + { + "post_title": "Tarolli, Sundheim, Covell & Tummino LLP", + "group_name": "lorenz", + "discovered": "2023-04-05 14:33:18.385382" + }, + { + "post_title": "tf-amd.com", + "group_name": "lockbit3", + "discovered": "2023-04-05 14:33:34.600904" + }, + { + "post_title": "tf-amd.com.my", + "group_name": "lockbit3", + "discovered": "2023-04-05 14:33:35.252001" + }, + { + "post_title": "turncommerce.com", + "group_name": "lockbit3", + "discovered": "2023-04-05 14:33:36.305256" + }, + { + "post_title": "Noteboom - The Law Firm", + "group_name": "alphv", + "discovered": "2023-04-05 16:34:00.323136" + }, + { + "post_title": "UnitedLex", + "group_name": "alphv", + "discovered": "2023-04-05 16:34:01.243708" + }, + { + "post_title": "Hull Property Group", + "group_name": "alphv", + "discovered": "2023-04-05 16:34:02.121037" + }, + { + "post_title": "nestseekers.com", + "group_name": "lockbit3", + "discovered": "2023-04-05 16:34:07.984524" + }, + { + "post_title": "PALM HILLS DEVELOPMENT", + "group_name": "alphv", + "discovered": "2023-04-05 20:34:02.456531" + }, + { + "post_title": "Micro Star International", + "group_name": "moneymessage", + "discovered": "2023-04-05 20:34:11.155200" + }, + { + "post_title": "nautic.com", + "group_name": "lockbit3", + "discovered": "2023-04-05 22:36:47.856633" + }, + { + "post_title": "quilts,inc", + "group_name": "alphv", + "discovered": "2023-04-06 00:47:39.835516" + }, + { + "post_title": "Open University of Cyprus", + "group_name": "medusa", + "discovered": "2023-04-06 04:30:27.163711" + }, + { + "post_title": "HIGHLANDHOMES", + "group_name": "alphv", + "discovered": "2023-04-06 06:35:19.635708" + }, + { + "post_title": "E*** ******", + "group_name": "bianlian", + "discovered": "2023-04-06 10:40:21.821847" + }, + { + "post_title": "*i****** *****", + "group_name": "bianlian", + "discovered": "2023-04-06 10:40:22.657911" + }, + { + "post_title": "Quad-County Ready Mix", + "group_name": "bianlian", + "discovered": "2023-04-06 10:40:23.286388" + }, + { + "post_title": "Meriton", + "group_name": "bianlian", + "discovered": "2023-04-06 10:40:23.882324" + }, + { + "post_title": "Officeworks Inc", + "group_name": "karakurt", + "discovered": "2023-04-06 12:32:52.613563" + }, + { + "post_title": "bhrcorp.org", + "group_name": "lockbit3", + "discovered": "2023-04-06 16:36:36.300349" + }, + { + "post_title": "Americana Restaurants", + "group_name": "snatch", + "discovered": "2023-04-06 22:31:04.862481" + }, + { + "post_title": "http://www.kretek.com", + "group_name": "royal", + "discovered": "2023-04-07 00:44:13.375373" + }, + { + "post_title": "http://www.beghelliusa.com", + "group_name": "royal", + "discovered": "2023-04-07 00:44:14.400309" + }, + { + "post_title": "Atlantic International University", + "group_name": "medusa", + "discovered": "2023-04-07 04:27:56.417078" + }, + { + "post_title": "SCI", + "group_name": "blackbasta", + "discovered": "2023-04-07 08:28:59.633316" + }, + { + "post_title": "b&h pattern.inc", + "group_name": "alphv", + "discovered": "2023-04-07 12:29:51.739535" + }, + { + "post_title": "HEICO", + "group_name": "blackbasta", + "discovered": "2023-04-07 14:27:06.487891" + }, + { + "post_title": "baughmanco.com", + "group_name": "lockbit3", + "discovered": "2023-04-07 16:31:31.139994" + }, + { + "post_title": "123.com", + "group_name": "lockbit3", + "discovered": "2023-04-07 20:29:10.934535" + }, + { + "post_title": "SIVSA", + "group_name": "alphv", + "discovered": "2023-04-07 22:33:59.266455" + }, + { + "post_title": "coremain", + "group_name": "alphv", + "discovered": "2023-04-07 22:34:00.319030" + }, + { + "post_title": "sxi.com.ph", + "group_name": "lockbit3", + "discovered": "2023-04-07 22:34:05.761139" + }, + { + "post_title": "Pharmerica.com & BrightSpring Health Services", + "group_name": "moneymessage", + "discovered": "2023-04-08 08:29:18.828593" + }, + { + "post_title": "The Zalkin Law Firm P.C.", + "group_name": "alphv", + "discovered": "2023-04-08 10:26:27.918165" + }, + { + "post_title": "DCI-ENGINEERS_2", + "group_name": "blackbasta", + "discovered": "2023-04-08 14:28:45.088963" + }, + { + "post_title": "baysideinteriors.com", + "group_name": "lockbit3", + "discovered": "2023-04-08 18:35:34.221442" + }, + { + "post_title": "Schirm", + "group_name": "play", + "discovered": "2023-04-09 02:38:58.968204" + }, + { + "post_title": "Vleeswarenfabriek Jac Michiels", + "group_name": "play", + "discovered": "2023-04-09 02:39:00.086962" + }, + { + "post_title": "Legion Aero", + "group_name": "play", + "discovered": "2023-04-09 02:39:00.896290" + }, + { + "post_title": "PKF Antares", + "group_name": "play", + "discovered": "2023-04-09 02:39:01.520451" + }, + { + "post_title": "Palo Alto County Sheriff", + "group_name": "play", + "discovered": "2023-04-09 02:39:02.226389" + }, + { + "post_title": "City of Collegedale", + "group_name": "blackbyte", + "discovered": "2023-04-09 18:26:56.279309" + }, + { + "post_title": "Cementos Bio-Bio", + "group_name": "blackbyte", + "discovered": "2023-04-09 18:26:57.086350" + }, + { + "post_title": "Crown Grinding & Machining", + "group_name": "blackbyte", + "discovered": "2023-04-09 18:26:58.010235" + }, + { + "post_title": "Creation Baumann", + "group_name": "blackbyte", + "discovered": "2023-04-09 20:29:05.676065" + }, + { + "post_title": "Scantibodies Laboratory, Inc.", + "group_name": "medusa", + "discovered": "2023-04-10 02:39:29.879182" + }, + { + "post_title": "aek.mk", + "group_name": "lockbit3", + "discovered": "2023-04-10 12:29:19.670342" + }, + { + "post_title": "mundocuervo.com", + "group_name": "lockbit3", + "discovered": "2023-04-10 12:29:22.470814" + }, + { + "post_title": "http://www.bigassfans.com", + "group_name": "royal", + "discovered": "2023-04-10 14:30:54.588229" + }, + { + "post_title": "http://www.alvaria.com", + "group_name": "royal", + "discovered": "2023-04-10 14:30:55.881083" + }, + { + "post_title": "http://www.tomduffy.com", + "group_name": "royal", + "discovered": "2023-04-10 14:30:56.724150" + }, + { + "post_title": "agp.ph", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:28.267380" + }, + { + "post_title": "artri.net", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:29.226883" + }, + { + "post_title": "disltd.ca", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:31.025901" + }, + { + "post_title": "euromotors.com.pe", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:31.987520" + }, + { + "post_title": "fiamma.com.my", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:32.773389" + }, + { + "post_title": "gregoire.fr", + "group_name": "lockbit3", + "discovered": "2023-04-10 16:29:33.766907" + }, + { + "post_title": "http://www.naturespath.com", + "group_name": "royal", + "discovered": "2023-04-10 18:26:58.593106" + }, + { + "post_title": "Harvard Energy", + "group_name": "bianlian", + "discovered": "2023-04-10 20:27:30.217693" + }, + { + "post_title": "Co. and Nobiskrug Yachts GmbH", + "group_name": "bianlian", + "discovered": "2023-04-10 20:27:30.959716" + }, + { + "post_title": "http://www.stanleyelectricus.com", + "group_name": "royal", + "discovered": "2023-04-10 20:27:32.625658" + }, + { + "post_title": "bsw-architects.com", + "group_name": "ransomblog_noname", + "discovered": "2023-04-10 20:27:33.812371" + }, + { + "post_title": "Incredible Technologies", + "group_name": "dunghill_leak", + "discovered": "2023-04-10 22:28:51.685795" + }, + { + "post_title": "Smith Industries", + "group_name": "bianlian", + "discovered": "2023-04-11 04:31:22.599524" + }, + { + "post_title": "arcc.org", + "group_name": "lockbit3", + "discovered": "2023-04-11 08:28:28.473939" + }, + { + "post_title": "valleywomenshealth", + "group_name": "alphv", + "discovered": "2023-04-11 10:33:39.044591" + }, + { + "post_title": "manfil.com.br", + "group_name": "lockbit3", + "discovered": "2023-04-11 14:35:47.631322" + }, + { + "post_title": "Flensburger Schiffbau Gesellschaft mbH and Co. and Nobiskrug Yachts GmbH", + "group_name": "bianlian", + "discovered": "2023-04-11 14:35:51.160647" + }, + { + "post_title": "*************", + "group_name": "bianlian", + "discovered": "2023-04-11 14:35:52.010735" + }, + { + "post_title": "cezam.net", + "group_name": "lockbit3", + "discovered": "2023-04-11 16:30:10.813569" + }, + { + "post_title": "uhloans.com", + "group_name": "lockbit3", + "discovered": "2023-04-11 16:30:15.007041" + }, + { + "post_title": "comacchio.com", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:29.923795" + }, + { + "post_title": "conseildelentente.org", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:30.546617" + }, + { + "post_title": "grouplease.co.th", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:31.718663" + }, + { + "post_title": "irda.com.my", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:32.721028" + }, + { + "post_title": "medmark.eg", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:33.881074" + }, + { + "post_title": "robovic.com", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:35.058168" + }, + { + "post_title": "servex-us.com", + "group_name": "lockbit3", + "discovered": "2023-04-11 18:37:36.139806" + }, + { + "post_title": "PESA Bydgoszcz", + "group_name": "play", + "discovered": "2023-04-11 20:31:57.066819" + }, + { + "post_title": "DAVIDSBROWN_2", + "group_name": "blackbasta", + "discovered": "2023-04-12 10:26:20.082308" + }, + { + "post_title": "Medicalodges, Inc", + "group_name": "karakurt", + "discovered": "2023-04-12 12:39:57.392727" + }, + { + "post_title": "http://einhaus-gruppe.de", + "group_name": "royal", + "discovered": "2023-04-12 16:36:14.468354" + }, + { + "post_title": "Petaluma Health Center", + "group_name": "karakurt", + "discovered": "2023-04-12 16:36:16.039750" + }, + { + "post_title": "CH Media", + "group_name": "play", + "discovered": "2023-04-12 18:27:51.949600" + }, + { + "post_title": "teleferico.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 00:39:25.389686" + }, + { + "post_title": "apro.cl", + "group_name": "lockbit3", + "discovered": "2023-04-13 02:42:04.404978" + }, + { + "post_title": "bcncruiseport.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 02:42:05.555959" + }, + { + "post_title": "darktrace.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 02:42:06.804543" + }, + { + "post_title": "fosfa.cz", + "group_name": "lockbit3", + "discovered": "2023-04-13 02:42:08.031418" + }, + { + "post_title": "Retina and Vitreous of Texas", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:14.447893" + }, + { + "post_title": "IDEXX", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:15.577462" + }, + { + "post_title": "Encompass Technologies", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:16.831214" + }, + { + "post_title": "Tennessee State University", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:19.223337" + }, + { + "post_title": "Southeastern University", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:20.298616" + }, + { + "post_title": "Faps", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:21.324921" + }, + { + "post_title": "Capstan Atlantic", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:22.544852" + }, + { + "post_title": "Aerowind", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:23.931243" + }, + { + "post_title": "Levales Solicitors LLP", + "group_name": "bianlian", + "discovered": "2023-04-13 10:33:25.240525" + }, + { + "post_title": "SAFHOLLAND", + "group_name": "alphv", + "discovered": "2023-04-13 14:34:30.342443" + }, + { + "post_title": "Yucatan", + "group_name": "alphv", + "discovered": "2023-04-13 14:34:31.093554" + }, + { + "post_title": "piszcz.pl", + "group_name": "lockbit3", + "discovered": "2023-04-13 16:39:25.228304" + }, + { + "post_title": "sanden.com.ph", + "group_name": "lockbit3", + "discovered": "2023-04-13 16:39:26.502733" + }, + { + "post_title": "steel-eye.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 16:39:27.703104" + }, + { + "post_title": "fameline.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 18:38:34.872684" + }, + { + "post_title": "homeandhearthealth.com", + "group_name": "lockbit3", + "discovered": "2023-04-13 22:35:34.859126" + }, + { + "post_title": "Invenergy", + "group_name": "unsafeleak", + "discovered": "2023-04-13 22:35:39.561607" + }, + { + "post_title": "knvb.nl", + "group_name": "lockbit3", + "discovered": "2023-04-14 06:34:00.590523" + }, + { + "post_title": "ktbs.com", + "group_name": "lockbit3", + "discovered": "2023-04-14 06:34:01.432111" + }, + { + "post_title": "osg.co.jp", + "group_name": "lockbit3", + "discovered": "2023-04-14 20:28:13.899954" + }, + { + "post_title": "Allimand, France", + "group_name": "medusa", + "discovered": "2023-04-15 04:33:05.556580" + }, + { + "post_title": "Aloha Enteprise [NCR]", + "group_name": "alphv", + "discovered": "2023-04-15 08:32:17.848200" + }, + { + "post_title": "Saobacdau Technologies Group", + "group_name": "blackbyte", + "discovered": "2023-04-15 14:30:12.998337" + }, + { + "post_title": "Gulliver International", + "group_name": "blackbyte", + "discovered": "2023-04-15 14:30:13.919253" + }, + { + "post_title": "Esperanza Viva Jóvenes de México", + "group_name": "blackbyte", + "discovered": "2023-04-15 14:30:14.659677" + }, + { + "post_title": "Leadway Assurance Company Limited", + "group_name": "alphv", + "discovered": "2023-04-15 18:38:28.665174" + }, + { + "post_title": "CommScope", + "group_name": "vicesociety", + "discovered": "2023-04-15 18:38:29.699294" + }, + { + "post_title": "http://dataram.com", + "group_name": "royal", + "discovered": "2023-04-16 00:46:19.929100" + }, + { + "post_title": "http://www.talonoutdoor.com", + "group_name": "royal", + "discovered": "2023-04-16 00:46:20.893329" + }, + { + "post_title": "http://www.mooncapital.com", + "group_name": "royal", + "discovered": "2023-04-17 00:43:10.817290" + }, + { + "post_title": "http://www.swansongroup.biz", + "group_name": "royal", + "discovered": "2023-04-17 00:43:11.589355" + }, + { + "post_title": "Uniondale School District", + "group_name": "medusa", + "discovered": "2023-04-17 04:27:27.029029" + }, + { + "post_title": "alpine4u.com", + "group_name": "lockbit3", + "discovered": "2023-04-17 06:33:02.855725" + }, + { + "post_title": "brl.fr", + "group_name": "lockbit3", + "discovered": "2023-04-17 08:34:44.006176" + }, + { + "post_title": "SPARTAN Light Metal Products Inc", + "group_name": "unsafeleak", + "discovered": "2023-04-17 12:31:44.224023" + }, + { + "post_title": "hkiff.org.hk", + "group_name": "lockbit3", + "discovered": "2023-04-17 14:33:30.270130" + }, + { + "post_title": "joriszorg.nl", + "group_name": "lockbit3", + "discovered": "2023-04-17 14:33:31.086472" + }, + { + "post_title": "pinelandschool.org", + "group_name": "lockbit3", + "discovered": "2023-04-17 14:33:32.649558" + }, + { + "post_title": "Pharm-Pacc Corporation", + "group_name": "karakurt", + "discovered": "2023-04-17 14:33:36.924952" + }, + { + "post_title": "https://www.mckinneytrailers.com/", + "group_name": "trigona", + "discovered": "2023-04-18 09:58:27.356903" + }, + { + "post_title": "https://www.albanyclinic.com.au/", + "group_name": "trigona", + "discovered": "2023-04-18 09:58:27.401531" + }, + { + "post_title": "https://www.onb-france.com/", + "group_name": "trigona", + "discovered": "2023-04-18 09:58:27.445773" + }, + { + "post_title": "Winter Park Construction", + "group_name": "trigona", + "discovered": "2023-04-18 09:58:27.489360" + }, + { + "post_title": "https://www.amouage.com", + "group_name": "trigona", + "discovered": "2023-04-18 09:58:27.533922" + }, + { + "post_title": "validcertificadora.com.br", + "group_name": "crosslock", + "discovered": "2023-04-18 09:58:27.600390" + }, + { + "post_title": "thesoftwareconsultinggroup.com", + "group_name": "lockbit3", + "discovered": "2023-04-18 02:41:02.017014" + }, + { + "post_title": "Western Intelligence or Western Digital: The Fine Line Between Selling Drives and Espionag", + "group_name": "alphv", + "discovered": "2023-04-18 08:32:15.710286" + }, + { + "post_title": "Lakeland Community College", + "group_name": "vicesociety", + "discovered": "2023-04-18 08:32:16.798378" + }, + { + "post_title": "pandol.com", + "group_name": "abyss", + "discovered": "2023-04-18 08:32:24.466857" + }, + { + "post_title": "https://www.meadetractor.com", + "group_name": "blackbasta", + "discovered": "2023-04-18 12:30:20.643761" + }, + { + "post_title": "Ozarks Community Hospital", + "group_name": "karakurt", + "discovered": "2023-04-18 12:30:28.084761" + }, + { + "post_title": "http://ballwin.mo.us", + "group_name": "royal", + "discovered": "2023-04-18 16:29:50.159200" + }, + { + "post_title": "http://mainstream-engr.com", + "group_name": "royal", + "discovered": "2023-04-18 16:29:50.972192" + }, + { + "post_title": "Structab AB (MegTax)", + "group_name": "play", + "discovered": "2023-04-18 16:29:51.909312" + }, + { + "post_title": "Corrib Oil", + "group_name": "play", + "discovered": "2023-04-18 18:40:12.286285" + }, + { + "post_title": "Coldiretti", + "group_name": "play", + "discovered": "2023-04-18 18:40:13.120263" + }, + { + "post_title": "Huissiers", + "group_name": "play", + "discovered": "2023-04-18 18:40:14.235570" + }, + { + "post_title": "Bang IT Solutions", + "group_name": "play", + "discovered": "2023-04-18 18:40:15.125088" + }, + { + "post_title": "7G Distributing", + "group_name": "alphv", + "discovered": "2023-04-19 00:43:34.184781" + }, + { + "post_title": "sbhc.us", + "group_name": "lockbit3", + "discovered": "2023-04-19 10:32:55.046611" + }, + { + "post_title": "2_BPCDOMAIN", + "group_name": "blackbasta", + "discovered": "2023-04-19 12:31:23.150554" + }, + { + "post_title": "DOREL", + "group_name": "blackbasta", + "discovered": "2023-04-19 12:31:24.097075" + }, + { + "post_title": "SPOONER", + "group_name": "blackbasta", + "discovered": "2023-04-19 12:31:25.186327" + }, + { + "post_title": "bancodevenezuela.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 12:31:26.928046" + }, + { + "post_title": "garrotbros.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 12:31:29.147674" + }, + { + "post_title": "gizavc.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 12:31:29.943566" + }, + { + "post_title": "jaco.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 12:31:31.316293" + }, + { + "post_title": "sommer.eu", + "group_name": "lockbit3", + "discovered": "2023-04-19 12:31:33.855697" + }, + { + "post_title": "V******* ****** ** ************", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:35.377895" + }, + { + "post_title": "S****** ********** ******** M****** ********** Inc.", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:36.316667" + }, + { + "post_title": "P****** ******", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:37.222030" + }, + { + "post_title": "M***** *****-*******", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:38.003350" + }, + { + "post_title": "M**** ****", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:38.731677" + }, + { + "post_title": "L********", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:39.759028" + }, + { + "post_title": "L****** H*********", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:40.467177" + }, + { + "post_title": "I*** *****Y *******", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:41.141958" + }, + { + "post_title": "H***** *****", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:41.994973" + }, + { + "post_title": "G********* ****** ****", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:42.955026" + }, + { + "post_title": "E*******", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:43.577096" + }, + { + "post_title": "E****** ***********", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:44.372514" + }, + { + "post_title": "D*** ***** S***** ********", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:45.248322" + }, + { + "post_title": "C******* **N***", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:46.011602" + }, + { + "post_title": "C***** ************ *******", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:46.852983" + }, + { + "post_title": "B****** ***** *****", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:47.540380" + }, + { + "post_title": "A******* ******* ********", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:48.356786" + }, + { + "post_title": "***** ***** M****** ****", + "group_name": "bianlian", + "discovered": "2023-04-19 12:31:49.090160" + }, + { + "post_title": "crossinggroup.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 14:29:50.196765" + }, + { + "post_title": "US District Court / On sale", + "group_name": "everest", + "discovered": "2023-04-19 16:30:27.843238" + }, + { + "post_title": "Insurance Agency Marketing Services", + "group_name": "alphv", + "discovered": "2023-04-19 18:30:45.743800" + }, + { + "post_title": "US District Court IL / On sale", + "group_name": "everest", + "discovered": "2023-04-19 20:34:22.586055" + }, + { + "post_title": "intuview.com", + "group_name": "lockbit3", + "discovered": "2023-04-19 20:34:32.017322" + }, + { + "post_title": "tubosreunidosgroup.com", + "group_name": "lockbit3", + "discovered": "2023-04-21 00:44:40.011871" + }, + { + "post_title": "ibp.com.br", + "group_name": "lockbit3", + "discovered": "2023-04-21 08:29:17.418988" + }, + { + "post_title": "pkffinconta.ro", + "group_name": "lockbit3", + "discovered": "2023-04-21 08:29:20.540516" + }, + { + "post_title": "soapro.ao", + "group_name": "lockbit3", + "discovered": "2023-04-21 08:29:21.938858" + }, + { + "post_title": "soshin.co.jp", + "group_name": "lockbit3", + "discovered": "2023-04-21 08:29:22.586325" + }, + { + "post_title": "Eastern Cape Gambling Board was hacked. The most dangerous gambling company for cooperatio", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:26.692335" + }, + { + "post_title": "Banco Comercial do Huambo was hacked. Africa's most insecure bank has leaked a huge amount", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:27.716174" + }, + { + "post_title": "CA de Seguros La Occidental was hacked. A huge amount of confidential data was stolen.", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:28.334208" + }, + { + "post_title": "JK Residential Services was hacked. A lot of personal data was stolen.", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:28.935887" + }, + { + "post_title": "Lisa Logística was hacked. A great amount of critical information has been stolen.", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:29.522740" + }, + { + "post_title": "Sasa.com - Malaysian most unsecured retailer was hacked and leaked a huge amount of confid", + "group_name": "alphv", + "discovered": "2023-04-21 14:27:30.273552" + }, + { + "post_title": "Wynn-Reeth", + "group_name": "karakurt", + "discovered": "2023-04-21 14:27:37.882696" + }, + { + "post_title": "AUT-TECH-GROUP.COM", + "group_name": "clop", + "discovered": "2023-04-21 18:33:09.803030" + }, + { + "post_title": "Slade Shipping - The most insecure shipping company in the U.S. has leaked a huge amount o", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:15.324167" + }, + { + "post_title": "Groupe ACTIVA was hacked. The most unreliable insurance company in the world has once agai", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:16.000323" + }, + { + "post_title": "NAIVAS WAS HACKED. A LARGE AMOUNT OF CONFIDENTIAL DATA HAS BEEN STOLEN.", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:16.632004" + }, + { + "post_title": "Global Polymers was haked. A massive amount of confidential information was stolen.", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:17.529364" + }, + { + "post_title": "Classic Stripes Pvt and Astarc Group was hacked. A huge amount of confidential data has be", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:18.241059" + }, + { + "post_title": "VOPAK WAS HACKED. A LOT OF CRITICAL CONFIDENTIAL INFORMATION WAS STOLEN.", + "group_name": "alphv", + "discovered": "2023-04-21 18:33:18.986124" + }, + { + "post_title": "Daregal was hacked. The most insecure retail company allowed a huge amount of confidential", + "group_name": "alphv", + "discovered": "2023-04-21 20:36:52.009757" + }, + { + "post_title": "Saville Row - Grupo GTD was hacked. A huge amount of personal information was stolen.", + "group_name": "alphv", + "discovered": "2023-04-21 20:36:52.820274" + }, + { + "post_title": "http://www.gks-hydraulik.com", + "group_name": "royal", + "discovered": "2023-04-21 20:37:00.456846" + }, + { + "post_title": "YPG2", + "group_name": "blackbasta", + "discovered": "2023-04-22 02:42:27.370444" + }, + { + "post_title": "Neptune Lines", + "group_name": "vicesociety", + "discovered": "2023-04-22 06:27:22.938922" + }, + { + "post_title": "stuertz.com", + "group_name": "lockbit3", + "discovered": "2023-04-22 06:27:28.752401" + }, + { + "post_title": "UECC", + "group_name": "play", + "discovered": "2023-04-22 12:32:37.500967" + }, + { + "post_title": "Groupe Gambetta", + "group_name": "play", + "discovered": "2023-04-22 12:32:38.356059" + }, + { + "post_title": "Easy Automation", + "group_name": "blackbyte", + "discovered": "2023-04-22 22:30:26.032496" + }, + { + "post_title": "floraalpina.ch", + "group_name": "lockbit3", + "discovered": "2023-04-23 14:33:59.272435" + }, + { + "post_title": "NETISGROUP HAS BEEN HACKED !!!", + "group_name": "alphv", + "discovered": "2023-04-23 18:38:43.635877" + }, + { + "post_title": "ECCI", + "group_name": "alphv", + "discovered": "2023-04-23 18:38:44.461626" + }, + { + "post_title": "MKU", + "group_name": "alphv", + "discovered": "2023-04-23 18:38:45.398163" + }, + { + "post_title": "norton.com.ar", + "group_name": "lockbit3", + "discovered": "2023-04-23 18:38:53.070406" + }, + { + "post_title": "WestcoastSmile Dental Studio", + "group_name": "medusa", + "discovered": "2023-04-23 18:38:58.421551" + }, + { + "post_title": "http://clarkehosp.org", + "group_name": "royal", + "discovered": "2023-04-24 00:43:06.602779" + }, + { + "post_title": "http://www.mwcomponents.com", + "group_name": "royal", + "discovered": "2023-04-24 00:43:07.486679" + }, + { + "post_title": "http://www.ldisd.net", + "group_name": "royal", + "discovered": "2023-04-24 00:43:08.238293" + }, + { + "post_title": "fullertonindia.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 02:46:27.962261" + }, + { + "post_title": "apolloscientific.co.uk", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:47.581561" + }, + { + "post_title": "bigc.co.th", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:49.080257" + }, + { + "post_title": "esinsa.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:50.837026" + }, + { + "post_title": "gpglobal.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:51.995120" + }, + { + "post_title": "kse.org.kw", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:53.405893" + }, + { + "post_title": "tiger.jp", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:56.503033" + }, + { + "post_title": "yateemgroup.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 06:34:57.799730" + }, + { + "post_title": "Bentham & Holroyd Ltd", + "group_name": "medusa", + "discovered": "2023-04-24 08:31:15.960884" + }, + { + "post_title": "baffetmateriaux.fr", + "group_name": "lockbit3", + "discovered": "2023-04-24 10:31:22.369294" + }, + { + "post_title": "midipapierspeints.fr", + "group_name": "lockbit3", + "discovered": "2023-04-24 10:31:25.666237" + }, + { + "post_title": "Winona Powder Coating", + "group_name": "karakurt", + "discovered": "2023-04-24 12:33:41.399652" + }, + { + "post_title": "TransMedics", + "group_name": "karakurt", + "discovered": "2023-04-24 12:33:42.127758" + }, + { + "post_title": "abro.se", + "group_name": "lockbit3", + "discovered": "2023-04-24 14:28:39.816857" + }, + { + "post_title": "nagase.co.jp", + "group_name": "lockbit3", + "discovered": "2023-04-24 14:28:43.293353" + }, + { + "post_title": "Lifeline Vascular Access", + "group_name": "karakurt", + "discovered": "2023-04-24 14:28:47.748783" + }, + { + "post_title": "goforcloud.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 22:27:15.768386" + }, + { + "post_title": "gruponutresa.com", + "group_name": "lockbit3", + "discovered": "2023-04-24 22:27:16.502498" + }, + { + "post_title": "http://www.encompassgroup.com", + "group_name": "royal", + "discovered": "2023-04-25 00:41:41.355415" + }, + { + "post_title": "ultimateimageprinting.com", + "group_name": "lockbit3", + "discovered": "2023-04-25 06:28:20.429760" + }, + { + "post_title": "Magnolia Care Center", + "group_name": "medusa", + "discovered": "2023-04-25 08:27:30.720950" + }, + { + "post_title": "keystonesmiles.org", + "group_name": "lockbit3", + "discovered": "2023-04-25 12:33:01.223607" + }, + { + "post_title": "A***** *** * ******* S*******", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:04.447148" + }, + { + "post_title": "XPress Cargo", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:05.190994" + }, + { + "post_title": "GROUPE ETIC", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:07.149228" + }, + { + "post_title": "General Plug and Manufacturing", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:07.932390" + }, + { + "post_title": "Falcon Express Transportation, Inc.", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:08.603772" + }, + { + "post_title": "Bilstein GmbH", + "group_name": "bianlian", + "discovered": "2023-04-25 12:33:09.440490" + }, + { + "post_title": "ewwanfried.de", + "group_name": "lockbit3", + "discovered": "2023-04-25 14:33:49.923955" + }, + { + "post_title": "summerweine.at", + "group_name": "lockbit3", + "discovered": "2023-04-25 14:33:53.500406" + }, + { + "post_title": "vcclawservices.com", + "group_name": "lockbit3", + "discovered": "2023-04-25 14:33:54.858677" + }, + { + "post_title": "Dacotah Paper", + "group_name": "blackbyte", + "discovered": "2023-04-25 16:37:26.607852" + }, + { + "post_title": "atlanticeye.net", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:43.531192" + }, + { + "post_title": "ddmontaza.hr", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:45.156323" + }, + { + "post_title": "fabeckarchitectes.lu", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:46.385101" + }, + { + "post_title": "imanor.gov.ma", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:48.228623" + }, + { + "post_title": "lhh.com.my", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:49.414234" + }, + { + "post_title": "peachtree-medical.com", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:51.041865" + }, + { + "post_title": "ptow.com", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:52.102643" + }, + { + "post_title": "sunnydesigns.com", + "group_name": "lockbit3", + "discovered": "2023-04-25 16:37:53.703850" + }, + { + "post_title": "CANTALK, Canadian translation services - Leak", + "group_name": "ragnarlocker", + "discovered": "2023-04-25 20:29:32.026374" + }, + { + "post_title": "Rockbridge Capital", + "group_name": "akira", + "discovered": "2023-04-26 08:50:56.385332" + }, + { + "post_title": "Thompson Builders", + "group_name": "akira", + "discovered": "2023-04-26 08:50:56.428138" + }, + { + "post_title": "Schottenstein Property Group Inc", + "group_name": "akira", + "discovered": "2023-04-26 08:50:56.472374" + }, + { + "post_title": "Settlement Music School", + "group_name": "akira", + "discovered": "2023-04-26 08:50:56.517656" + }, + { + "post_title": "Alliance Sports Group (THE PIONEER OF BLOG)", + "group_name": "akira", + "discovered": "2023-04-26 08:50:56.562041" + }, + { + "post_title": "www.exporthub.com", + "group_name": "cryptnet", + "discovered": "2023-04-26 09:03:49.569488" + }, + { + "post_title": "www.urbanimport.com", + "group_name": "cryptnet", + "discovered": "2023-04-26 09:03:49.618041" + }, + { + "post_title": "BERNINA International AG", + "group_name": "alphv", + "discovered": "2023-04-25 22:32:55.103831" + }, + { + "post_title": "Agensi Kaunseling dan Pengurusan Kredit", + "group_name": "alphv", + "discovered": "2023-04-25 22:32:55.792915" + }, + { + "post_title": "Transformative Healthcare", + "group_name": "alphv", + "discovered": "2023-04-25 22:32:56.380739" + }, + { + "post_title": "Agensi Kaunseling dan Pengurusan Kredit (Credit Consulting and Management Agency of Malays", + "group_name": "alphv", + "discovered": "2023-04-26 00:43:41.466599" + }, + { + "post_title": "GT Group", + "group_name": "blackbasta", + "discovered": "2023-04-26 10:35:42.906526" + }, + { + "post_title": "Bevan Group", + "group_name": "medusa", + "discovered": "2023-04-26 10:35:49.884761" + }, + { + "post_title": "Family Day Care Services", + "group_name": "akira", + "discovered": "2023-04-26 12:34:10.445525" + }, + { + "post_title": "MultiCareInc pt.2", + "group_name": "everest", + "discovered": "2023-04-26 14:33:38.029334" + }, + { + "post_title": "Fundação Carlos Chagas", + "group_name": "alphv", + "discovered": "2023-04-26 14:33:43.095845" + }, + { + "post_title": "HOT NEWS", + "group_name": "ransomhouse", + "discovered": "2023-04-26 18:37:38.175789" + }, + { + "post_title": "Tranztec Solutions", + "group_name": "ransomhouse", + "discovered": "2023-04-26 18:37:39.130384" + }, + { + "post_title": "OMT Officine Meccaniche Torino S.p.A.", + "group_name": "ransomhouse", + "discovered": "2023-04-26 18:37:39.979681" + }, + { + "post_title": "bg2i.fr", + "group_name": "lockbit3", + "discovered": "2023-04-26 18:37:41.725738" + }, + { + "post_title": "cdcbmestihl.com", + "group_name": "lockbit3", + "discovered": "2023-04-26 18:37:42.638013" + }, + { + "post_title": "fsdc.org.hk", + "group_name": "lockbit3", + "discovered": "2023-04-26 18:37:44.042291" + }, + { + "post_title": "silbon.es", + "group_name": "lockbit3", + "discovered": "2023-04-26 18:37:46.713320" + }, + { + "post_title": "Pak-Rite, Ltd.", + "group_name": "akira", + "discovered": "2023-04-26 18:37:50.602906" + }, + { + "post_title": "4LEAF, Inc", + "group_name": "akira", + "discovered": "2023-04-26 18:37:51.341698" + }, + { + "post_title": "e-Hazard or ArcWear (press release)", + "group_name": "alphv", + "discovered": "2023-04-26 20:35:10.330465" + }, + { + "post_title": "accesscontrolsecurity.com", + "group_name": "alphv", + "discovered": "2023-04-26 20:35:11.234728" + }, + { + "post_title": "US District Court / Law company", + "group_name": "everest", + "discovered": "2023-04-26 22:30:19.060752" + }, + { + "post_title": "multimedica.it", + "group_name": "lockbit3", + "discovered": "2023-04-27 00:44:20.594618" + }, + { + "post_title": "NA_2", + "group_name": "blackbasta", + "discovered": "2023-04-27 04:27:09.041208" + }, + { + "post_title": "CoachComm", + "group_name": "blackbasta", + "discovered": "2023-04-27 10:32:15.485548" + }, + { + "post_title": "MasterCorp", + "group_name": "blackbasta", + "discovered": "2023-04-27 12:29:10.582356" + }, + { + "post_title": "La Red Health Center", + "group_name": "karakurt", + "discovered": "2023-04-27 14:32:28.373336" + }, + { + "post_title": "Smith & Sharp", + "group_name": "akira", + "discovered": "2023-04-27 14:32:29.754544" + }, + { + "post_title": "e-Hazard.com and ArcWear.com (with data)", + "group_name": "alphv", + "discovered": "2023-04-27 22:34:39.590960" + }, + { + "post_title": "hwlebsworth", + "group_name": "alphv", + "discovered": "2023-04-28 06:30:49.555027" + }, + { + "post_title": "GC-EMPLOYMENT.COM", + "group_name": "clop", + "discovered": "2023-04-28 08:31:40.469851" + }, + { + "post_title": "https://www.anton-paar.com", + "group_name": "blackbasta", + "discovered": "2023-04-28 08:31:46.719876" + }, + { + "post_title": "AUTOCAM-MEDICAL_2", + "group_name": "blackbasta", + "discovered": "2023-04-28 16:30:31.060475" + }, + { + "post_title": "BLUME_2", + "group_name": "blackbasta", + "discovered": "2023-04-28 16:30:32.135718" + }, + { + "post_title": "TAMMAC", + "group_name": "blackbasta", + "discovered": "2023-04-28 16:30:32.740066" + }, + { + "post_title": "P********* ******* *e****", + "group_name": "bianlian", + "discovered": "2023-04-28 20:35:12.818687" + }, + { + "post_title": "H***** ******* S*******", + "group_name": "bianlian", + "discovered": "2023-04-28 20:35:13.573225" + }, + { + "post_title": "E*** - ******* ** ******", + "group_name": "bianlian", + "discovered": "2023-04-28 20:35:14.177250" + }, + { + "post_title": "A**** *************", + "group_name": "bianlian", + "discovered": "2023-04-28 20:35:15.179006" + }, + { + "post_title": "Western Digital Chronicles II: The Weekly Descent into Oblivion", + "group_name": "alphv", + "discovered": "2023-04-28 22:29:24.976032" + }, + { + "post_title": "Albany ENT & Allergy Services", + "group_name": "ransomhouse", + "discovered": "2023-04-29 00:40:54.499702" + }, + { + "post_title": "McDermott International, Ltd", + "group_name": "alphv", + "discovered": "2023-04-29 06:29:29.391467" + }, + { + "post_title": "conver-pack.com", + "group_name": "lockbit3", + "discovered": "2023-04-29 18:31:08.854397" + }, + { + "post_title": "ourrelentlesschurch.com", + "group_name": "lockbit3", + "discovered": "2023-04-29 18:31:11.592057" + }, + { + "post_title": "Our Sunday Visitor", + "group_name": "karakurt", + "discovered": "2023-04-29 18:31:15.597513" + }, + { + "post_title": "Colvill Banks Ltd", + "group_name": "blackbasta", + "discovered": "2023-04-29 20:31:56.877020" + }, + { + "post_title": "logicalsolutions.bc.ca", + "group_name": "lockbit3", + "discovered": "2023-04-29 20:32:01.396464" + }, + { + "post_title": "Sherman Consulting Services", + "group_name": "alphv", + "discovered": "2023-04-29 22:29:30.468002" + }, + { + "post_title": "KMC Savills", + "group_name": "alphv", + "discovered": "2023-04-29 22:29:31.268675" + }, + { + "post_title": "CMC Group", + "group_name": "vicesociety", + "discovered": "2023-04-30 10:30:15.433715" + }, + { + "post_title": "https://www.siix.co.jp", + "group_name": "qilin", + "discovered": "2023-04-30 10:30:22.833694" + }, + { + "post_title": "100X and ALL Clients", + "group_name": "ransomhouse", + "discovered": "2023-05-01 00:46:17.284132" + }, + { + "post_title": "http://www.edisonlearning.com", + "group_name": "royal", + "discovered": "2023-05-01 12:33:39.011464" + }, + { + "post_title": "BridgeValley Community & Technical", + "group_name": "akira", + "discovered": "2023-05-01 12:33:40.879876" + }, + { + "post_title": "Fee, Smith & Sharp", + "group_name": "akira", + "discovered": "2023-05-01 12:33:41.411374" + }, + { + "post_title": "*.A. ********* and *******, ***.", + "group_name": "bianlian", + "discovered": "2023-05-01 14:38:09.812462" + }, + { + "post_title": "Manufacturing", + "group_name": "bianlian", + "discovered": "2023-05-01 14:38:10.631151" + }, + { + "post_title": "Tony Clark Consulting", + "group_name": "alphv", + "discovered": "2023-05-02 00:43:32.380152" + }, + { + "post_title": "http://www.montana.edu", + "group_name": "royal", + "discovered": "2023-05-02 00:43:41.701461" + }, + { + "post_title": "http://www.gfcmsu.edu", + "group_name": "royal", + "discovered": "2023-05-02 00:43:42.586080" + }, + { + "post_title": "EirMed Devices, part of TRELLEBORG", + "group_name": "alphv", + "discovered": "2023-05-02 06:28:42.953416" + }, + { + "post_title": "Brighton Hill Community School", + "group_name": "vicesociety", + "discovered": "2023-05-02 06:28:43.933850" + }, + { + "post_title": "ambit.co | finvest.ambit.co Private Banking", + "group_name": "alphv", + "discovered": "2023-05-02 08:37:38.016742" + }, + { + "post_title": "Polat Yol Yap", + "group_name": "medusa", + "discovered": "2023-05-02 10:32:02.221806" + }, + { + "post_title": "Alto Calore Servizi S.p.A.", + "group_name": "medusa", + "discovered": "2023-05-02 10:32:03.171348" + }, + { + "post_title": "Lincoln Wood Products", + "group_name": "blackbasta", + "discovered": "2023-05-02 12:35:18.015969" + }, + { + "post_title": "American Foam & Packaging", + "group_name": "alphv", + "discovered": "2023-05-02 18:31:13.605503" + }, + { + "post_title": "MYSIMPLYGREEN.COM", + "group_name": "clop", + "discovered": "2023-05-02 22:31:14.308880" + }, + { + "post_title": "AvidXchange", + "group_name": "ransomhouse", + "discovered": "2023-05-02 22:31:20.786229" + }, + { + "post_title": "baycrestpartners.com", + "group_name": "lockbit3", + "discovered": "2023-05-02 22:31:22.047615" + }, + { + "post_title": "cloud51.com", + "group_name": "lockbit3", + "discovered": "2023-05-02 22:31:23.157596" + }, + { + "post_title": "hasenauer-anlagenbau.at", + "group_name": "lockbit3", + "discovered": "2023-05-02 22:31:24.584783" + }, + { + "post_title": "Lawrence Family Development Charter School", + "group_name": "snatch", + "discovered": "2023-05-03 00:39:55.301275" + }, + { + "post_title": "cydsa.com", + "group_name": "lockbit3", + "discovered": "2023-05-03 02:47:03.027368" + }, + { + "post_title": "Aeco was hacked. A lot of confidential customer data was stolen.", + "group_name": "alphv", + "discovered": "2023-05-03 08:30:17.757955" + }, + { + "post_title": "http://zbw.eu", + "group_name": "royal", + "discovered": "2023-05-03 12:31:53.858479" + }, + { + "post_title": "The McGregor", + "group_name": "akira", + "discovered": "2023-05-03 12:31:55.907556" + }, + { + "post_title": "http://www.southernwv.edu", + "group_name": "royal", + "discovered": "2023-05-03 14:29:57.205534" + }, + { + "post_title": "triaflex.at", + "group_name": "lockbit3", + "discovered": "2023-05-03 16:27:24.070479" + }, + { + "post_title": "Control & Automation technology - LUX Automation", + "group_name": "monti", + "discovered": "2023-05-03 16:27:26.882940" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila", + "group_name": "monti", + "discovered": "2023-05-03 16:27:27.455210" + }, + { + "post_title": "Carrington Group", + "group_name": "blackbasta", + "discovered": "2023-05-03 20:31:26.809146" + }, + { + "post_title": "Woonkracht10", + "group_name": "play", + "discovered": "2023-05-03 20:31:34.991692" + }, + { + "post_title": "https://www.groppernejat.com/", + "group_name": "qilin", + "discovered": "2023-05-03 22:28:31.601485" + }, + { + "post_title": "Vocalcom", + "group_name": "play", + "discovered": "2023-05-03 22:28:32.853715" + }, + { + "post_title": "Negma Business Solutions", + "group_name": "play", + "discovered": "2023-05-03 22:28:33.503194" + }, + { + "post_title": "Commune de Saxon", + "group_name": "play", + "discovered": "2023-05-03 22:28:34.035532" + }, + { + "post_title": "Libra Virtua", + "group_name": "play", + "discovered": "2023-05-03 22:28:34.521287" + }, + { + "post_title": "DGC", + "group_name": "play", + "discovered": "2023-05-03 22:28:35.086334" + }, + { + "post_title": "City of Lowell", + "group_name": "play", + "discovered": "2023-05-03 22:28:35.623103" + }, + { + "post_title": "Nova Group", + "group_name": "play", + "discovered": "2023-05-03 22:28:36.191418" + }, + { + "post_title": "SIVSA, Coremain", + "group_name": "play", + "discovered": "2023-05-03 22:28:36.858766" + }, + { + "post_title": "http://www.midwesttruck.com", + "group_name": "royal", + "discovered": "2023-05-04 00:48:16.461694" + }, + { + "post_title": "IDTECHPRODUCTS.COM", + "group_name": "clop", + "discovered": "2023-05-04 02:41:42.050509" + }, + { + "post_title": "The Crown Princess Mary Cancer Centre", + "group_name": "medusa", + "discovered": "2023-05-04 02:41:54.290170" + }, + { + "post_title": "Gihealthcare", + "group_name": "cuba", + "discovered": "2023-05-04 08:31:50.404527" + }, + { + "post_title": "Forest Ridge", + "group_name": "blackbasta", + "discovered": "2023-05-04 10:31:02.248594" + }, + { + "post_title": "layherna.com", + "group_name": "lockbit3", + "discovered": "2023-05-04 12:29:21.319439" + }, + { + "post_title": "Garcia Hamilton & Associates", + "group_name": "akira", + "discovered": "2023-05-04 12:29:26.591828" + }, + { + "post_title": "Willamette Falls", + "group_name": "alphv", + "discovered": "2023-05-04 14:35:17.204414" + }, + { + "post_title": "New World Travel, Inc.", + "group_name": "akira", + "discovered": "2023-05-04 14:35:26.568686" + }, + { + "post_title": "The Mitchell Partnership", + "group_name": "akira", + "discovered": "2023-05-04 14:35:27.099709" + }, + { + "post_title": "PRESS-SERVICE Monitoring Mediów", + "group_name": "blackbyte", + "discovered": "2023-05-04 16:39:43.882682" + }, + { + "post_title": "Treadwell, Tamplin & Company, Certified Public Accountants, Madison, GA", + "group_name": "trigona", + "discovered": "2023-05-04 16:39:56.011152" + }, + { + "post_title": "joysonsafety.com", + "group_name": "lockbit3", + "discovered": "2023-05-04 18:28:57.585863" + }, + { + "post_title": "Essen Medical Associates", + "group_name": "alphv", + "discovered": "2023-05-05 00:40:59.003825" + }, + { + "post_title": "Constellation Software Inc", + "group_name": "alphv", + "discovered": "2023-05-05 00:40:59.832698" + }, + { + "post_title": "https://eyedocsottawa.com", + "group_name": "qilin", + "discovered": "2023-05-05 00:41:08.089658" + }, + { + "post_title": "http://meadetractor.com", + "group_name": "royal", + "discovered": "2023-05-05 00:41:09.171996" + }, + { + "post_title": "R**** ******", + "group_name": "bianlian", + "discovered": "2023-05-05 12:28:39.963973" + }, + { + "post_title": "The Lab Consulting", + "group_name": "akira", + "discovered": "2023-05-05 12:28:43.040811" + }, + { + "post_title": "The Perry Law Firm", + "group_name": "akira", + "discovered": "2023-05-05 14:26:42.417580" + }, + { + "post_title": "KKDI.CO.ID including companies AICC, JBI, TJFI (part of the kddi.com holding company, whos", + "group_name": "alphv", + "discovered": "2023-05-05 16:28:20.869215" + }, + { + "post_title": "Coteccons Group was hacked. One of the most insecure construction companies in Asia has le", + "group_name": "alphv", + "discovered": "2023-05-05 16:28:21.759516" + }, + { + "post_title": "N******** ********", + "group_name": "bianlian", + "discovered": "2023-05-05 16:28:30.418537" + }, + { + "post_title": "M*********** ******* ******", + "group_name": "bianlian", + "discovered": "2023-05-05 16:28:32.050455" + }, + { + "post_title": "C******* **********", + "group_name": "bianlian", + "discovered": "2023-05-05 16:28:32.781155" + }, + { + "post_title": "B** ******* *********", + "group_name": "bianlian", + "discovered": "2023-05-05 16:28:33.505616" + }, + { + "post_title": "Grupo Cativa was hacked. Huge amounts of critical information have been stolen.", + "group_name": "alphv", + "discovered": "2023-05-05 18:30:07.815279" + }, + { + "post_title": "Axure Software Solutions - a company with an extremely low level of protection was hacked.", + "group_name": "alphv", + "discovered": "2023-05-05 18:30:08.445252" + }, + { + "post_title": "Sonda (Duplicate with update)", + "group_name": "medusa", + "discovered": "2023-05-05 22:27:36.530602" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *UPDATE*", + "group_name": "monti", + "discovered": "2023-05-06 14:26:32.488798" + }, + { + "post_title": "Eagle Eye Produce", + "group_name": "alphv", + "discovered": "2023-05-07 00:45:59.751827" + }, + { + "post_title": "marshallconstruction.co.uk", + "group_name": "lockbit3", + "discovered": "2023-05-07 10:32:06.265533" + }, + { + "post_title": "namibmills.com", + "group_name": "lockbit3", + "discovered": "2023-05-07 16:36:53.394953" + }, + { + "post_title": "First Community Credit Union", + "group_name": "alphv", + "discovered": "2023-05-08 08:26:37.720531" + }, + { + "post_title": "astate.edu", + "group_name": "lockbit3", + "discovered": "2023-05-08 10:29:28.655484" + }, + { + "post_title": "lssny.org", + "group_name": "lockbit3", + "discovered": "2023-05-08 10:29:31.376535" + }, + { + "post_title": "stmarys.net", + "group_name": "lockbit3", + "discovered": "2023-05-08 10:29:33.381050" + }, + { + "post_title": "unity.edu", + "group_name": "lockbit3", + "discovered": "2023-05-08 10:29:34.535556" + }, + { + "post_title": "avidxchange.com", + "group_name": "abyss", + "discovered": "2023-05-08 14:36:27.704442" + }, + { + "post_title": "brett-robinson.com", + "group_name": "abyss", + "discovered": "2023-05-08 14:36:28.384635" + }, + { + "post_title": "{UPD} Control & Automation technology - LUX Automation", + "group_name": "monti", + "discovered": "2023-05-08 20:36:09.848670" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *first 10gb upload*", + "group_name": "monti", + "discovered": "2023-05-08 22:34:18.333281" + }, + { + "post_title": "KLC Network Services", + "group_name": "play", + "discovered": "2023-05-09 04:29:30.108018" + }, + { + "post_title": "cbelaw.com", + "group_name": "lockbit3", + "discovered": "2023-05-09 13:01:31.923952" + }, + { + "post_title": "hk-finance.pl", + "group_name": "lockbit3", + "discovered": "2023-05-09 13:01:33.968470" + }, + { + "post_title": "interfides.de", + "group_name": "lockbit3", + "discovered": "2023-05-09 13:01:35.362479" + }, + { + "post_title": "The Pilgrim School", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:38.341781" + }, + { + "post_title": "Synergy Hematology Oncology Medical Associates Inc.", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:39.171180" + }, + { + "post_title": "Mercy Home", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:40.156020" + }, + { + "post_title": "Manoir Saint-Sauveur", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:40.990915" + }, + { + "post_title": "Logisuite", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:41.746535" + }, + { + "post_title": "Lifenet", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:42.535683" + }, + { + "post_title": "IDEM Safety Switches", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:43.379199" + }, + { + "post_title": "Humana", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:44.581278" + }, + { + "post_title": "Greenslade Taylor Hunt", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:45.470185" + }, + { + "post_title": "Entelect", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:46.210024" + }, + { + "post_title": "Department of Education of the Canton of Basel-Stadt", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:47.107070" + }, + { + "post_title": "Deer Lakes School District", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:47.853770" + }, + { + "post_title": "Commerce Pundit", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:48.706915" + }, + { + "post_title": "CADOpt Technologies", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:49.389225" + }, + { + "post_title": "Bedford Lodge Hotel", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:50.353418" + }, + { + "post_title": "Altstadt Hoffman Plumbing", + "group_name": "bianlian", + "discovered": "2023-05-09 13:01:51.276355" + }, + { + "post_title": "https://freshinsuranceitservices.co.uk", + "group_name": "trigona", + "discovered": "2023-05-09 13:01:54.481369" + }, + { + "post_title": "mbwswim.com", + "group_name": "lockbit3", + "discovered": "2023-05-09 16:32:54.489334" + }, + { + "post_title": "Mercer University", + "group_name": "akira", + "discovered": "2023-05-09 18:33:35.205322" + }, + { + "post_title": "Cooperativa de Ahorro y Crédito Ahorrocoop Ltda", + "group_name": "medusa", + "discovered": "2023-05-10 02:39:56.859123" + }, + { + "post_title": "gocontec.com", + "group_name": "lockbit3", + "discovered": "2023-05-10 08:32:45.578530" + }, + { + "post_title": "Constellation Software Inc 2", + "group_name": "alphv", + "discovered": "2023-05-10 10:31:47.042470" + }, + { + "post_title": "Vdi", + "group_name": "cuba", + "discovered": "2023-05-10 14:48:42.562519" + }, + { + "post_title": "BridgeValley Community & Technical Col lege", + "group_name": "akira", + "discovered": "2023-05-10 14:48:54.904775" + }, + { + "post_title": "Alliance Sports Group (THE PIONEER OF AKIRA BLOG)", + "group_name": "akira", + "discovered": "2023-05-10 14:48:55.588695" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *UPD 05-10*", + "group_name": "monti", + "discovered": "2023-05-10 18:31:52.501527" + }, + { + "post_title": "Columbia Distributin g", + "group_name": "akira", + "discovered": "2023-05-10 18:31:53.773882" + }, + { + "post_title": "Novatech Engineering Consultants", + "group_name": "akira", + "discovered": "2023-05-10 18:31:54.333955" + }, + { + "post_title": "Sun Windows", + "group_name": "akira", + "discovered": "2023-05-10 18:31:55.088686" + }, + { + "post_title": "New World Travel, In c.", + "group_name": "akira", + "discovered": "2023-05-10 18:31:55.768260" + }, + { + "post_title": "The Mitchell Partner ship", + "group_name": "akira", + "discovered": "2023-05-10 18:31:56.409935" + }, + { + "post_title": "Garcia Hamilton & As sociates", + "group_name": "akira", + "discovered": "2023-05-10 18:31:56.963152" + }, + { + "post_title": "BridgeValley Communi ty & Technical Colle ge", + "group_name": "akira", + "discovered": "2023-05-10 18:31:57.544620" + }, + { + "post_title": "Family Day Care Serv ices", + "group_name": "akira", + "discovered": "2023-05-10 18:31:58.188798" + }, + { + "post_title": "Schottenstein Proper ty Group Inc", + "group_name": "akira", + "discovered": "2023-05-10 18:31:58.711604" + }, + { + "post_title": "Settlement Music Sch ool", + "group_name": "akira", + "discovered": "2023-05-10 18:31:59.455921" + }, + { + "post_title": "Alliance Sports Grou p (THE PIONEER OF AK IRA BLOG)", + "group_name": "akira", + "discovered": "2023-05-10 18:32:00.181015" + }, + { + "post_title": "Houser LLP", + "group_name": "alphv", + "discovered": "2023-05-10 22:35:39.010277" + }, + { + "post_title": "Germany", + "group_name": "play", + "discovered": "2023-05-10 22:35:49.767706" + }, + { + "post_title": "JP Maguire & Associates", + "group_name": "play", + "discovered": "2023-05-10 22:35:50.873621" + }, + { + "post_title": "Sauerbruch Hutton", + "group_name": "play", + "discovered": "2023-05-10 22:35:51.843537" + }, + { + "post_title": "eyegene", + "group_name": "ragroup", + "discovered": "2023-05-11 00:40:33.198473" + }, + { + "post_title": "bisco-industries", + "group_name": "ragroup", + "discovered": "2023-05-11 00:40:33.647718" + }, + { + "post_title": "wealth-enhancement-group", + "group_name": "ragroup", + "discovered": "2023-05-11 00:40:34.365642" + }, + { + "post_title": "insurance-providers-group", + "group_name": "ragroup", + "discovered": "2023-05-11 00:40:35.131733" + }, + { + "post_title": "Axiom Professional Solutions", + "group_name": "trigona", + "discovered": "2023-05-11 10:32:37.333167" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *UPD 05-11*", + "group_name": "monti", + "discovered": "2023-05-11 12:34:46.474961" + }, + { + "post_title": "Unique Imaging", + "group_name": "trigona", + "discovered": "2023-05-11 12:34:48.064888" + }, + { + "post_title": "metronottevigilanza.it", + "group_name": "lockbit3", + "discovered": "2023-05-11 14:31:03.954909" + }, + { + "post_title": "tec-mex.com.mx", + "group_name": "lockbit3", + "discovered": "2023-05-11 14:31:06.092973" + }, + { + "post_title": "viseg.com", + "group_name": "lockbit3", + "discovered": "2023-05-11 14:31:07.217319" + }, + { + "post_title": "vuteq.mx", + "group_name": "lockbit3", + "discovered": "2023-05-11 14:31:07.809768" + }, + { + "post_title": "wuppermann.com", + "group_name": "lockbit3", + "discovered": "2023-05-11 14:31:08.494914" + }, + { + "post_title": "CSD Network Services Ltd", + "group_name": "monti", + "discovered": "2023-05-11 14:31:11.003650" + }, + { + "post_title": "Gregory Poole Equipm ent Company", + "group_name": "akira", + "discovered": "2023-05-11 14:31:12.754442" + }, + { + "post_title": "North Shore Medical Labs", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:08.206899" + }, + { + "post_title": "Hermes Medical Solutions", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:09.238523" + }, + { + "post_title": "DA Alexander Company INC", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:09.964249" + }, + { + "post_title": "BandR Eckel's Transport", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:11.071299" + }, + { + "post_title": "Allergy Services", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:11.905597" + }, + { + "post_title": "A****** ********* **o*****", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:12.727690" + }, + { + "post_title": "Vascular Center of Intervention", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:13.539197" + }, + { + "post_title": "*******, ***.", + "group_name": "bianlian", + "discovered": "2023-05-11 18:38:14.472951" + }, + { + "post_title": "Ipleiria Student Bra nch", + "group_name": "akira", + "discovered": "2023-05-11 18:38:18.805078" + }, + { + "post_title": "ResultsCX | The result of many unknown breaches?", + "group_name": "alphv", + "discovered": "2023-05-11 22:34:27.947013" + }, + { + "post_title": "DATALAN", + "group_name": "vicesociety", + "discovered": "2023-05-11 22:34:29.232090" + }, + { + "post_title": "pwlawfirm.com", + "group_name": "abyss", + "discovered": "2023-05-12 06:26:57.523592" + }, + { + "post_title": "Libyana was hacked. A company with an enormous amount of vulnerabilities has allowed its c", + "group_name": "alphv", + "discovered": "2023-05-12 08:35:44.331254" + }, + { + "post_title": "prolinerrescue.com", + "group_name": "lockbit3", + "discovered": "2023-05-12 10:32:20.736127" + }, + { + "post_title": "weberweber.at", + "group_name": "lockbit3", + "discovered": "2023-05-12 10:32:22.655174" + }, + { + "post_title": "Sterling Solutions", + "group_name": "blackbyte", + "discovered": "2023-05-12 14:34:37.661326" + }, + { + "post_title": "Schottenstein Proper ty Group", + "group_name": "akira", + "discovered": "2023-05-12 14:34:59.057989" + }, + { + "post_title": "Peachtree Orthopedics", + "group_name": "karakurt", + "discovered": "2023-05-12 16:31:06.424832" + }, + { + "post_title": "bankbsi.co.id", + "group_name": "lockbit3", + "discovered": "2023-05-12 22:34:53.188494" + }, + { + "post_title": "Wallick Communities", + "group_name": "medusa", + "discovered": "2023-05-12 22:35:04.171003" + }, + { + "post_title": "Aspen Dental Management Inc.", + "group_name": "moneymessage", + "discovered": "2023-05-12 22:35:05.562580" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *UPD 05-13*", + "group_name": "monti", + "discovered": "2023-05-13 00:40:41.620971" + }, + { + "post_title": "AKRON Mquinas Agrcolas", + "group_name": "alphv", + "discovered": "2023-05-13 10:27:07.713489" + }, + { + "post_title": "HostAfrica", + "group_name": "medusa", + "discovered": "2023-05-13 16:34:14.839045" + }, + { + "post_title": "TTCCPA", + "group_name": "trigona", + "discovered": "2023-05-13 20:29:59.320257" + }, + { + "post_title": "pikenursery.com", + "group_name": "lockbit3", + "discovered": "2023-05-14 22:34:34.689104" + }, + { + "post_title": "tool-temp.net", + "group_name": "lockbit3", + "discovered": "2023-05-14 22:34:36.178171" + }, + { + "post_title": "troteclaser.com", + "group_name": "lockbit3", + "discovered": "2023-05-14 22:34:36.952259" + }, + { + "post_title": "Academy Mortgage Corporation", + "group_name": "alphv", + "discovered": "2023-05-15 08:35:12.100485" + }, + { + "post_title": "euskaltel.com", + "group_name": "lockbit3", + "discovered": "2023-05-15 12:34:06.813730" + }, + { + "post_title": "mundo-r.com", + "group_name": "lockbit3", + "discovered": "2023-05-15 12:34:09.196572" + }, + { + "post_title": "ASL 1 - Avezzano Sulmona L'Aquila *All data upload*", + "group_name": "monti", + "discovered": "2023-05-15 12:34:13.817079" + }, + { + "post_title": "York County School of Technology", + "group_name": "karakurt", + "discovered": "2023-05-15 12:34:14.763758" + }, + { + "post_title": "QUORUMIS", + "group_name": "alphv", + "discovered": "2023-05-15 14:31:13.994445" + }, + { + "post_title": "Group DIS (Direct Info Services)", + "group_name": "alphv", + "discovered": "2023-05-15 16:31:17.943748" + }, + { + "post_title": "norcorp.com", + "group_name": "lockbit3", + "discovered": "2023-05-15 16:31:23.325612" + }, + { + "post_title": "http://www.parkerdrilling.comwww.parkerwellbore.com", + "group_name": "royal", + "discovered": "2023-05-15 16:31:26.969802" + }, + { + "post_title": "https://accudo.co.uk", + "group_name": "trigona", + "discovered": "2023-05-15 16:31:28.711388" + }, + { + "post_title": "PCS Wireless", + "group_name": "alphv", + "discovered": "2023-05-15 18:27:45.193088" + }, + { + "post_title": "BAMSI", + "group_name": "medusa", + "discovered": "2023-05-15 18:27:53.859816" + }, + { + "post_title": " wsots.net", + "group_name": "abyss", + "discovered": "2023-05-15 18:27:55.191526" + }, + { + "post_title": " www.l3harris.com", + "group_name": "abyss", + "discovered": "2023-05-15 20:32:51.742811" + }, + { + "post_title": "IXPERTA", + "group_name": "snatch", + "discovered": "2023-05-16 00:42:07.268394" + }, + { + "post_title": "chinadailyhk.com", + "group_name": "lockbit3", + "discovered": "2023-05-16 04:31:29.037808" + }, + { + "post_title": "airtac.com", + "group_name": "lockbit3", + "discovered": "2023-05-16 12:30:00.888425" + }, + { + "post_title": "https://feit.com", + "group_name": "trigona", + "discovered": "2023-05-16 12:30:11.358162" + }, + { + "post_title": "ORION", + "group_name": "alphv", + "discovered": "2023-05-16 14:28:24.469763" + }, + { + "post_title": "SOWITEC", + "group_name": "play", + "discovered": "2023-05-16 16:35:57.560452" + }, + { + "post_title": "ance.org.mx", + "group_name": "lockbit3", + "discovered": "2023-05-16 20:33:30.086618" + }, + { + "post_title": "wings.travel", + "group_name": "lockbit3", + "discovered": "2023-05-16 20:33:36.334128" + }, + { + "post_title": "Electrostim Medical Services", + "group_name": "alphv", + "discovered": "2023-05-17 06:30:00.088758" + }, + { + "post_title": "PM Medical Billing was hacking. A company with multiple vulnerabilities in its network all", + "group_name": "alphv", + "discovered": "2023-05-17 08:30:24.144290" + }, + { + "post_title": "plastictecnic.com", + "group_name": "lockbit3", + "discovered": "2023-05-17 12:35:55.087004" + }, + { + "post_title": "Magic-Aire", + "group_name": "blackbyte", + "discovered": "2023-05-17 14:29:52.651068" + }, + { + "post_title": "Group DIS leak 1/2", + "group_name": "alphv", + "discovered": "2023-05-17 14:30:01.326765" + }, + { + "post_title": "Aneka Tambang", + "group_name": "vicesociety", + "discovered": "2023-05-17 22:41:56.116786" + }, + { + "post_title": "AVIAREPS_COM_2222", + "group_name": "blackbasta", + "discovered": "2023-05-17 22:41:57.958482" + }, + { + "post_title": "TaslyUS", + "group_name": "alphv", + "discovered": "2023-05-18 06:42:12.353821" + }, + { + "post_title": "Z*** ******** ******s", + "group_name": "bianlian", + "discovered": "2023-05-18 08:27:33.521157" + }, + { + "post_title": "ENSA - Seguros de Angola", + "group_name": "bianlian", + "discovered": "2023-05-18 08:27:34.243146" + }, + { + "post_title": "*a***** *****", + "group_name": "bianlian", + "discovered": "2023-05-18 08:27:35.181308" + }, + { + "post_title": "https://lolaico.info", + "group_name": "trigona", + "discovered": "2023-05-18 10:30:44.949509" + }, + { + "post_title": "E4NET", + "group_name": "alphv", + "discovered": "2023-05-18 14:32:13.037683" + }, + { + "post_title": "http://www.nashua.edu", + "group_name": "royal", + "discovered": "2023-05-18 14:32:21.831762" + }, + { + "post_title": "enovationcontrols.com", + "group_name": "lockbit3", + "discovered": "2023-05-18 16:33:28.238724" + }, + { + "post_title": "metalnet.nl", + "group_name": "lockbit3", + "discovered": "2023-05-18 16:33:30.730049" + }, + { + "post_title": "shoreregional.org", + "group_name": "lockbit3", + "discovered": "2023-05-18 16:33:32.738446" + }, + { + "post_title": "Autlan Metallorum, Mexican Miner Leak", + "group_name": "ragnarlocker", + "discovered": "2023-05-18 18:30:36.871857" + }, + { + "post_title": "antea.es", + "group_name": "lockbit3", + "discovered": "2023-05-18 22:28:28.518993" + }, + { + "post_title": "It Works Global", + "group_name": "alphv", + "discovered": "2023-05-19 12:39:31.391507" + }, + { + "post_title": "csagh.org", + "group_name": "lockbit3", + "discovered": "2023-05-19 14:32:39.157993" + }, + { + "post_title": "https://hmsosa.com", + "group_name": "qilin", + "discovered": "2023-05-19 14:32:46.213907" + }, + { + "post_title": "http://www.dallascityhall.com", + "group_name": "royal", + "discovered": "2023-05-19 14:32:47.309500" + }, + { + "post_title": "https://rolser.com", + "group_name": "trigona", + "discovered": "2023-05-19 14:32:49.430524" + }, + { + "post_title": "Advantage Resourcing", + "group_name": "akira", + "discovered": "2023-05-19 16:31:55.069507" + }, + { + "post_title": "https://www.maier-sanitaer.de", + "group_name": "qilin", + "discovered": "2023-05-19 18:34:17.466411" + }, + { + "post_title": "Al Tamimi Law Firm", + "group_name": "medusa", + "discovered": "2023-05-19 18:34:18.522731" + }, + { + "post_title": "https://www.ktlaw.co.nz/", + "group_name": "qilin", + "discovered": "2023-05-19 20:40:24.432594" + }, + { + "post_title": "www.rheinmetall.com", + "group_name": "blackbasta", + "discovered": "2023-05-20 10:30:25.595567" + }, + { + "post_title": "ebdlab.com", + "group_name": "lockbit3", + "discovered": "2023-05-21 06:30:18.206574" + }, + { + "post_title": "Reach Cooling Group was hacked. A company whose cooperation is dangerous to your business ", + "group_name": "alphv", + "discovered": "2023-05-21 12:37:19.350928" + }, + { + "post_title": "FajarPaper was hacked. The most dangerous company to cooperate with in Indonesia may pose ", + "group_name": "alphv", + "discovered": "2023-05-21 14:31:16.075935" + }, + { + "post_title": "abe-brands.de", + "group_name": "lockbit3", + "discovered": "2023-05-21 14:31:19.365747" + }, + { + "post_title": "diasporacs.org", + "group_name": "lockbit3", + "discovered": "2023-05-21 22:33:03.554423" + }, + { + "post_title": "Asia Vital Components", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:43.178840" + }, + { + "post_title": "LiveAction", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:44.351453" + }, + { + "post_title": "MSSNY", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:45.178502" + }, + { + "post_title": "FRESCA", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:45.935575" + }, + { + "post_title": "Canadian Nurses Association", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:46.690200" + }, + { + "post_title": "Comoli Ferrari", + "group_name": "snatch", + "discovered": "2023-05-22 00:42:47.512167" + }, + { + "post_title": "hadefpartners.com", + "group_name": "lockbit3", + "discovered": "2023-05-22 06:32:11.238876" + }, + { + "post_title": "rapidmoldsolutions.com", + "group_name": "lockbit3", + "discovered": "2023-05-22 06:32:13.423508" + }, + { + "post_title": "siren-japan.com", + "group_name": "lockbit3", + "discovered": "2023-05-22 06:32:14.735524" + }, + { + "post_title": "softland.cl", + "group_name": "lockbit3", + "discovered": "2023-05-22 06:32:15.428285" + }, + { + "post_title": "vdbassocies.fr", + "group_name": "lockbit3", + "discovered": "2023-05-22 06:32:16.550390" + }, + { + "post_title": "Confidential and High Sensitive Data", + "group_name": "alphv", + "discovered": "2023-05-22 08:32:35.863475" + }, + { + "post_title": "SIGMA", + "group_name": "medusa", + "discovered": "2023-05-22 10:30:18.256752" + }, + { + "post_title": "Loreto Normanhurst", + "group_name": "medusa", + "discovered": "2023-05-22 10:30:19.039922" + }, + { + "post_title": "http://www.trinityexploration.com", + "group_name": "royal", + "discovered": "2023-05-22 12:30:55.552792" + }, + { + "post_title": "http://morrishospital.org", + "group_name": "royal", + "discovered": "2023-05-22 12:30:56.350847" + }, + { + "post_title": "http://www.utahyamas.com", + "group_name": "royal", + "discovered": "2023-05-22 12:30:57.312391" + }, + { + "post_title": "Harmony Gold", + "group_name": "akira", + "discovered": "2023-05-22 14:29:40.696547" + }, + { + "post_title": "rmc-canada.com", + "group_name": "lockbit3", + "discovered": "2023-05-22 16:29:10.132112" + }, + { + "post_title": "http://westside-health.org", + "group_name": "royal", + "discovered": "2023-05-22 16:29:14.110039" + }, + { + "post_title": "Zoni Language Centers", + "group_name": "bianlian", + "discovered": "2023-05-22 18:35:14.321806" + }, + { + "post_title": "H****** ****", + "group_name": "bianlian", + "discovered": "2023-05-22 18:35:15.071122" + }, + { + "post_title": "Alconex Specialty Products", + "group_name": "bianlian", + "discovered": "2023-05-22 18:35:16.311236" + }, + { + "post_title": "** T**** ***", + "group_name": "bianlian", + "discovered": "2023-05-22 18:35:17.963623" + }, + { + "post_title": "Cafpi", + "group_name": "vicesociety", + "discovered": "2023-05-22 22:31:11.045652" + }, + { + "post_title": "https://oppida.com/", + "group_name": "qilin", + "discovered": "2023-05-22 22:31:20.451020" + }, + { + "post_title": "https://smdea09.fr/", + "group_name": "qilin", + "discovered": "2023-05-22 22:31:22.540545" + }, + { + "post_title": "Aria Online", + "group_name": "play", + "discovered": "2023-05-22 22:31:24.229360" + }, + { + "post_title": "Xplain", + "group_name": "play", + "discovered": "2023-05-22 22:31:24.959148" + }, + { + "post_title": "Optimus Steel", + "group_name": "play", + "discovered": "2023-05-22 22:31:25.894267" + }, + { + "post_title": "Poly", + "group_name": "play", + "discovered": "2023-05-22 22:31:26.647076" + }, + { + "post_title": "Royal Centre", + "group_name": "play", + "discovered": "2023-05-22 22:31:27.478855" + }, + { + "post_title": "Chattanooga State Community College", + "group_name": "snatch", + "discovered": "2023-05-23 00:46:52.677657" + }, + { + "post_title": "Studioline Photography", + "group_name": "play", + "discovered": "2023-05-23 00:47:02.581581" + }, + { + "post_title": "Grupo Corporacion Control", + "group_name": "play", + "discovered": "2023-05-23 00:47:03.211473" + }, + { + "post_title": "Mayberry Investments", + "group_name": "play", + "discovered": "2023-05-23 00:47:03.887935" + }, + { + "post_title": "Paragon Software Lanka", + "group_name": "play", + "discovered": "2023-05-23 00:47:04.576102" + }, + { + "post_title": "Black Cat Networks", + "group_name": "play", + "discovered": "2023-05-23 00:47:05.233132" + }, + { + "post_title": "marehotels", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:24.889895" + }, + { + "post_title": "ocean", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:24.938311" + }, + { + "post_title": "Melco", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:24.991259" + }, + { + "post_title": "Matrix", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.044306" + }, + { + "post_title": "OKS", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.092157" + }, + { + "post_title": "Arrowall", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.139744" + }, + { + "post_title": "Ingersoll Rand", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.186960" + }, + { + "post_title": "La Providence", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.241325" + }, + { + "post_title": "confido", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.289982" + }, + { + "post_title": "Novelis", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.338442" + }, + { + "post_title": "berjaya", + "group_name": "stormous", + "discovered": "2023-05-23 19:47:25.384774" + }, + { + "post_title": "Liveaction inc.", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:33.919708" + }, + { + "post_title": "Global Remote Services", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:33.971788" + }, + { + "post_title": "Medical University of the Americas", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.020214" + }, + { + "post_title": "Miami University", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.068555" + }, + { + "post_title": "Chattanooga State Community", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.119029" + }, + { + "post_title": "Hyundai Motors Etats-Unis", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.165160" + }, + { + "post_title": "ePerformax", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.213808" + }, + { + "post_title": "Wyoming County Community Health System", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.261370" + }, + { + "post_title": "Canopy Children's Solutions", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.310961" + }, + { + "post_title": "Fresca", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.358906" + }, + { + "post_title": "Rural Workforce Agency", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.406727" + }, + { + "post_title": "Canadian Nurses Association", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.455848" + }, + { + "post_title": "Sabin", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.503479" + }, + { + "post_title": "Snodland C of E Primary School", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.552450" + }, + { + "post_title": "Stockmann Natursteine %26 Fliesen", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.599595" + }, + { + "post_title": "Accurate Auto Insurance", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.647946" + }, + { + "post_title": "Guardian Fine Art Services", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.696234" + }, + { + "post_title": "comcom-sgc", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.744926" + }, + { + "post_title": "Pueblo Mechanical %26 Controls", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.792957" + }, + { + "post_title": "City of Modesto", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.840349" + }, + { + "post_title": "Gaston College", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.888587" + }, + { + "post_title": "MSX International", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.937137" + }, + { + "post_title": "Miescor", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:34.987035" + }, + { + "post_title": "CONEX", + "group_name": "nokoyawa", + "discovered": "2023-05-23 19:47:35.035065" + }, + { + "post_title": "Technology and Telecommunications Consultants Inc", + "group_name": "trigona", + "discovered": "2023-05-23 19:47:35.965461" + }, + { + "post_title": "APIQROO", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.394589" + }, + { + "post_title": "Malkasian Accountancy", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.443118" + }, + { + "post_title": "SiComputer is a leader in the Italian information technology.", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.492340" + }, + { + "post_title": "Asbestos-Inspections-Solution-Management", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.540293" + }, + { + "post_title": "Just us lawyers", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.590628" + }, + { + "post_title": "Csc Baixo Sul Assessoria e Consultoria Empresarial e Contabil LTDA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.638625" + }, + { + "post_title": "Artconta - Contabilidade e. Assistência Fiscal", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.686647" + }, + { + "post_title": "CONTASS", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.734175" + }, + { + "post_title": "Ellard-Willson Engineering Ltd", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.801158" + }, + { + "post_title": "General de Alimentos Nisa C.A. (GENICA)", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.872121" + }, + { + "post_title": "M Metzler & Associates", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.921064" + }, + { + "post_title": "Zenex", + "group_name": "8base", + "discovered": "2023-05-23 19:47:36.968518" + }, + { + "post_title": "Lake Cable", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.016920" + }, + { + "post_title": "Midway Ford", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.067017" + }, + { + "post_title": "Thayer Academy", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.115493" + }, + { + "post_title": "HELPHONE", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.162210" + }, + { + "post_title": "Veal and Prasad", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.210623" + }, + { + "post_title": "COMPAGNIE REGIONALE D'ALIMENTS (COREAL)", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.259701" + }, + { + "post_title": "Immobilienmakler in Oldenburg", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.308401" + }, + { + "post_title": "IMASA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.359854" + }, + { + "post_title": "MRO SUPPORT, INC", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.407640" + }, + { + "post_title": "Richard W. Fuller CPA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.457451" + }, + { + "post_title": "La Canastería", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.510746" + }, + { + "post_title": "Neighborhood Progress Fund", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.567428" + }, + { + "post_title": "Print Globe", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.621371" + }, + { + "post_title": "China Export & Credit Insurance Corporation", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.669020" + }, + { + "post_title": "Conklin Benham", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.717567" + }, + { + "post_title": "FORMA ESPACOS IMOBILIARIOS LTDA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.766308" + }, + { + "post_title": "Ayers Mechanical Group", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.813520" + }, + { + "post_title": "Colares Linhares", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.861916" + }, + { + "post_title": "TTG Log", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.907826" + }, + { + "post_title": "SMYRNAPEDIATRICS", + "group_name": "8base", + "discovered": "2023-05-23 19:47:37.956951" + }, + { + "post_title": "ER of Dallas", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.003961" + }, + { + "post_title": "Redwood Lab Services", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.052239" + }, + { + "post_title": "NORTCON", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.099283" + }, + { + "post_title": "Formax Credit UK", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.146934" + }, + { + "post_title": "Taylor Made Hose", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.193933" + }, + { + "post_title": "Grupo Rimet", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.239735" + }, + { + "post_title": "Bronzino Engineering", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.287159" + }, + { + "post_title": "Direct Cleaning Services", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.334407" + }, + { + "post_title": "Semba", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.382243" + }, + { + "post_title": "CST Medicina do Trabalho", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.428128" + }, + { + "post_title": "Clear Start Accountants", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.476159" + }, + { + "post_title": "Lerch Bates", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.525618" + }, + { + "post_title": "Watex Solutions", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.573622" + }, + { + "post_title": "FrameOne", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.620931" + }, + { + "post_title": "Constantino Contabilidade E Comunicacao", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.666782" + }, + { + "post_title": "DBT Druckluft", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.714794" + }, + { + "post_title": "Brandao", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.761272" + }, + { + "post_title": "Grupo 2MGA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.809399" + }, + { + "post_title": "Intermountain", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.855108" + }, + { + "post_title": "SOVAC", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.902255" + }, + { + "post_title": "Shipmate", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.950128" + }, + { + "post_title": "Moore Global", + "group_name": "8base", + "discovered": "2023-05-23 19:47:38.997351" + }, + { + "post_title": "Innormax LLC", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.044972" + }, + { + "post_title": "Irmler Rechtsanwälte", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.092895" + }, + { + "post_title": "LebensWohnArt", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.140967" + }, + { + "post_title": "Butler and Gatz CPAs, LLC", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.188907" + }, + { + "post_title": "THE HARCOURTS FOUNDATION (AUSTRALIA) PTY LTD", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.236539" + }, + { + "post_title": "AS Netz", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.285640" + }, + { + "post_title": "Meklas Group", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.334633" + }, + { + "post_title": "Concept Fasteners", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.383398" + }, + { + "post_title": "MTS Office", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.432214" + }, + { + "post_title": "ESSPEE", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.482478" + }, + { + "post_title": "GIOTTO - COMÉRCIO DE VESTUÁRIO, UNIPESSOAL, LDA", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.532165" + }, + { + "post_title": "P1 Technical Services", + "group_name": "8base", + "discovered": "2023-05-23 19:47:39.581368" + }, + { + "post_title": "Inquirer", + "group_name": "cuba", + "discovered": "2023-05-23 09:38:52.635588" + }, + { + "post_title": "Defaulters", + "group_name": "malas", + "discovered": "2023-05-23 09:39:05.175410" + }, + { + "post_title": "Compañía Agricola San Felipe", + "group_name": "malas", + "discovered": "2023-05-23 09:39:05.786272" + }, + { + "post_title": "Fort Rolins Collection Agency", + "group_name": "malas", + "discovered": "2023-05-23 09:39:06.482669" + }, + { + "post_title": "Harita Group", + "group_name": "malas", + "discovered": "2023-05-23 09:39:07.010149" + }, + { + "post_title": "https://www.stant.com", + "group_name": "blacksuit", + "discovered": "2023-05-23 09:39:07.913998" + }, + { + "post_title": "TrueLogic (truelogiccompany.com)", + "group_name": "rancoz", + "discovered": "2023-05-23 09:39:08.615704" + }, + { + "post_title": "RIC Electronics (ricelectronics.com)", + "group_name": "rancoz", + "discovered": "2023-05-23 09:39:09.151815" + }, + { + "post_title": "spectre.dk", + "group_name": "lockbit3", + "discovered": "2023-05-23 12:43:42.162029" + }, + { + "post_title": "surfsidefoods.com", + "group_name": "lockbit3", + "discovered": "2023-05-23 12:43:43.067780" + }, + { + "post_title": "http://www.dotcomdist.com", + "group_name": "royal", + "discovered": "2023-05-23 12:43:46.352757" + }, + { + "post_title": "Chattanooga Heart Institute", + "group_name": "karakurt", + "discovered": "2023-05-23 12:43:47.906560" + }, + { + "post_title": "sunray.com.sg", + "group_name": "lockbit3", + "discovered": "2023-05-23 14:36:18.467680" + }, + { + "post_title": "Rusan Pharma", + "group_name": "bianlian", + "discovered": "2023-05-23 14:36:20.325216" + }, + { + "post_title": "H*****", + "group_name": "bianlian", + "discovered": "2023-05-23 14:36:21.199633" + }, + { + "post_title": "http://www.co.coos.or.us", + "group_name": "royal", + "discovered": "2023-05-23 14:36:24.258466" + }, + { + "post_title": "Leland Campbell LLP law firm", + "group_name": "medusa", + "discovered": "2023-05-23 14:36:25.251818" + }, + { + "post_title": "Amaszonas S.A. ", + "group_name": "medusa", + "discovered": "2023-05-23 14:36:26.141166" + }, + { + "post_title": "Voxx Electronics - company, which has a huge number of vulnerabilities was hacked. A large", + "group_name": "alphv", + "discovered": "2023-05-24 10:28:59.019407" + }, + { + "post_title": "interstateplastics.com", + "group_name": "lockbit3", + "discovered": "2023-05-24 10:29:04.433998" + }, + { + "post_title": "roha.com", + "group_name": "lockbit3", + "discovered": "2023-05-24 12:34:33.154387" + }, + { + "post_title": "M******* *****", + "group_name": "bianlian", + "discovered": "2023-05-24 12:34:35.585938" + }, + { + "post_title": "Trabzonspor Football Club", + "group_name": "medusa", + "discovered": "2023-05-24 16:28:48.621351" + }, + { + "post_title": "The Middleton Group", + "group_name": "alphv", + "discovered": "2023-05-24 22:32:05.246864" + }, + { + "post_title": "globalinfovision.com", + "group_name": "lockbit3", + "discovered": "2023-05-25 00:44:45.231753" + }, + { + "post_title": "Leidos", + "group_name": "trigona", + "discovered": "2023-05-25 10:31:09.157432" + }, + { + "post_title": "affinityhealthservices.net", + "group_name": "lockbit3", + "discovered": "2023-05-25 12:30:33.118524" + }, + { + "post_title": "pneusbelislecarrieres.com", + "group_name": "lockbit3", + "discovered": "2023-05-25 12:30:37.827735" + }, + { + "post_title": "sfponline.org", + "group_name": "lockbit3", + "discovered": "2023-05-25 12:30:39.036071" + }, + { + "post_title": "Norton Healthcare", + "group_name": "alphv", + "discovered": "2023-05-25 16:39:43.505955" + }, + { + "post_title": "City of Augusta", + "group_name": "blackbyte", + "discovered": "2023-05-25 20:34:58.611716" + }, + { + "post_title": "fams.net", + "group_name": "lockbit3", + "discovered": "2023-05-26 02:44:05.281388" + }, + { + "post_title": "kyocera-avx.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 02:44:07.216072" + }, + { + "post_title": "wenntownsend", + "group_name": "alphv", + "discovered": "2023-05-26 08:28:17.370616" + }, + { + "post_title": "Procurri", + "group_name": "alphv", + "discovered": "2023-05-26 10:36:21.637648" + }, + { + "post_title": "wiannoclub.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 10:36:28.707919" + }, + { + "post_title": "http://www.volt.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:19.069930" + }, + { + "post_title": "http://www.afgholdings.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:19.787947" + }, + { + "post_title": "http://www.mitutoyo.ch", + "group_name": "royal", + "discovered": "2023-05-26 12:36:20.914464" + }, + { + "post_title": "http://www.thebestconnection.co.uk", + "group_name": "royal", + "discovered": "2023-05-26 12:36:21.794865" + }, + { + "post_title": "http://www.directviz.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:22.627295" + }, + { + "post_title": "http://www.bmprecision.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:23.291260" + }, + { + "post_title": "http://www.sovitrat.fr", + "group_name": "royal", + "discovered": "2023-05-26 12:36:23.928454" + }, + { + "post_title": "http://www.co-pack.co.uk", + "group_name": "royal", + "discovered": "2023-05-26 12:36:24.668983" + }, + { + "post_title": "http://www.haworthtompkins.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:25.292342" + }, + { + "post_title": "http://www.colrich.com", + "group_name": "royal", + "discovered": "2023-05-26 12:36:26.100063" + }, + { + "post_title": "https://www.marshallconstruction.co.uk/", + "group_name": "trigona", + "discovered": "2023-05-26 12:36:28.100639" + }, + { + "post_title": "aimtron.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 14:30:43.450315" + }, + { + "post_title": "arnoldoilco.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 14:30:44.582277" + }, + { + "post_title": "fiduagraria.gov.co", + "group_name": "lockbit3", + "discovered": "2023-05-26 14:30:47.399124" + }, + { + "post_title": "floodlaw.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 14:30:48.244026" + }, + { + "post_title": "watersaversinc.com", + "group_name": "lockbit3", + "discovered": "2023-05-26 14:30:53.045311" + }, + { + "post_title": "Good Oil Company", + "group_name": "8base", + "discovered": "2023-05-26 14:30:58.544478" + }, + { + "post_title": "new-target-5", + "group_name": "ragroup", + "discovered": "2023-05-26 18:29:55.703383" + }, + { + "post_title": "Servizi Omnia", + "group_name": "monti", + "discovered": "2023-05-26 22:41:40.006948" + }, + { + "post_title": "ah-a", + "group_name": "lockbit3", + "discovered": "2023-05-27 10:34:48.108544" + }, + { + "post_title": "Fiduagraria", + "group_name": "medusa", + "discovered": "2023-05-27 14:38:28.407681" + }, + { + "post_title": "H****** **e*** V******* **i** Project", + "group_name": "bianlian", + "discovered": "2023-05-27 20:34:20.046329" + }, + { + "post_title": "*a*** I*********", + "group_name": "bianlian", + "discovered": "2023-05-27 20:34:21.330914" + }, + { + "post_title": "**G Inc.", + "group_name": "bianlian", + "discovered": "2023-05-27 20:34:21.949335" + }, + { + "post_title": "******MD", + "group_name": "bianlian", + "discovered": "2023-05-27 20:34:22.615892" + }, + { + "post_title": "Australian Universal Crane Leak", + "group_name": "ragnarlocker", + "discovered": "2023-05-28 08:32:46.725888" + }, + { + "post_title": "voyageursdumonde.fr", + "group_name": "lockbit3", + "discovered": "2023-05-28 08:32:58.782181" + }, + { + "post_title": "grantierra.com", + "group_name": "lockbit3", + "discovered": "2023-05-28 18:32:44.963051" + }, + { + "post_title": "BilgeAdam Software", + "group_name": "medusa", + "discovered": "2023-05-29 06:34:44.716371" + }, + { + "post_title": "Roadies", + "group_name": "nokoyawa", + "discovered": "2023-05-29 10:33:08.803622" + }, + { + "post_title": "Neutronic Stamping", + "group_name": "bianlian", + "discovered": "2023-05-29 12:31:44.773193" + }, + { + "post_title": "Earlens Corporation", + "group_name": "bianlian", + "discovered": "2023-05-29 12:31:45.524538" + }, + { + "post_title": "C********* ***************", + "group_name": "bianlian", + "discovered": "2023-05-29 12:31:46.294061" + }, + { + "post_title": "Fersten Worldwide", + "group_name": "akira", + "discovered": "2023-05-29 12:31:50.457069" + }, + { + "post_title": "retailmerchantservices.co.uk", + "group_name": "lockbit3", + "discovered": "2023-05-29 14:34:27.655071" + }, + { + "post_title": "Brokers Trust Insura nce Group", + "group_name": "akira", + "discovered": "2023-05-29 14:34:34.063736" + }, + { + "post_title": "Computer Information Concepts Inc", + "group_name": "akira", + "discovered": "2023-05-29 14:34:34.775465" + }, + { + "post_title": "aquidneckclub.com", + "group_name": "lockbit3", + "discovered": "2023-05-29 18:37:08.005110" + }, + { + "post_title": "BCATTORNEY", + "group_name": "alphv", + "discovered": "2023-05-29 20:31:24.795841" + }, + { + "post_title": "Adsboll", + "group_name": "vicesociety", + "discovered": "2023-05-29 22:33:45.710585" + }, + { + "post_title": "Soroc", + "group_name": "play", + "discovered": "2023-05-29 22:34:00.401710" + }, + { + "post_title": "eastern-media-international-corporation", + "group_name": "ragroup", + "discovered": "2023-05-30 02:48:12.766469" + }, + { + "post_title": "casepoint.com", + "group_name": "alphv", + "discovered": "2023-05-30 10:40:34.255193" + }, + { + "post_title": "www.mccarthyfingar.com", + "group_name": "blackbasta", + "discovered": "2023-05-30 12:33:52.453269" + }, + { + "post_title": "Servizi Omnia All data upload", + "group_name": "monti", + "discovered": "2023-05-30 12:34:01.511987" + }, + { + "post_title": "Lewis Young Robertso n & Burningham", + "group_name": "akira", + "discovered": "2023-05-30 12:34:02.982714" + }, + { + "post_title": "columbuscitizens.org", + "group_name": "lockbit3", + "discovered": "2023-05-30 16:36:03.529384" + }, + { + "post_title": "SK Life Science", + "group_name": "akira", + "discovered": "2023-05-30 16:36:13.365914" + }, + { + "post_title": "The National Associa tion of Home Builder s", + "group_name": "akira", + "discovered": "2023-05-30 16:36:14.183406" + }, + { + "post_title": "credicoop.coop.py", + "group_name": "lockbit3", + "discovered": "2023-05-30 22:34:45.575626" + }, + { + "post_title": "fixscr.com", + "group_name": "lockbit3", + "discovered": "2023-05-30 22:34:46.582325" + }, + { + "post_title": "nycollege.edu", + "group_name": "lockbit3", + "discovered": "2023-05-30 22:34:49.812845" + }, + { + "post_title": "Sur La Table", + "group_name": "blackbasta", + "discovered": "2023-05-31 12:31:39.775218" + }, + { + "post_title": "buckprop.com", + "group_name": "lockbit3", + "discovered": "2023-05-31 14:32:28.383829" + }, + { + "post_title": "casepoint.com (UPDATE)", + "group_name": "alphv", + "discovered": "2023-05-31 22:34:26.843770" + }, + { + "post_title": "Mission Community Hospital", + "group_name": "ransomhouse", + "discovered": "2023-06-01 00:48:40.926961" + }, + { + "post_title": "Pacific Union College", + "group_name": "trigona", + "discovered": "2023-06-01 12:35:09.578594" + }, + { + "post_title": "Brinkmann & Niemeijer Motoren", + "group_name": "alphv", + "discovered": "2023-06-01 14:36:12.580157" + }, + { + "post_title": "Middlesex County Pub lic Schools", + "group_name": "akira", + "discovered": "2023-06-01 16:34:06.884122" + }, + { + "post_title": "fsd.se", + "group_name": "lockbit3", + "discovered": "2023-06-01 20:34:24.090046" + }, + { + "post_title": "TY Inc", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:28.490612" + }, + { + "post_title": "Laebon Homes", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:29.320900" + }, + { + "post_title": "Handok Inc.", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:30.390815" + }, + { + "post_title": "Chadwick, Washington, Moriarty, Elmore and Bunn", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:31.320792" + }, + { + "post_title": "EDG, Inc", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:32.182276" + }, + { + "post_title": "Aarti Industries Ltd.", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:32.997410" + }, + { + "post_title": "****y *o***** Companies Group", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:33.962851" + }, + { + "post_title": "R Eckel's Transport", + "group_name": "bianlian", + "discovered": "2023-06-01 20:34:34.756729" + }, + { + "post_title": "Shows & Artists", + "group_name": "play", + "discovered": "2023-06-02 00:45:07.978235" + }, + { + "post_title": "NORANET - CZ", + "group_name": "play", + "discovered": "2023-06-02 00:45:08.588480" + }, + { + "post_title": "Abeko", + "group_name": "play", + "discovered": "2023-06-02 02:54:10.397325" + }, + { + "post_title": "Buffalo Niagara Association", + "group_name": "play", + "discovered": "2023-06-02 02:54:10.805538" + }, + { + "post_title": "BMD Systemhaus", + "group_name": "play", + "discovered": "2023-06-02 02:54:11.295982" + }, + { + "post_title": "CS Cargo Group", + "group_name": "play", + "discovered": "2023-06-02 02:54:11.758846" + }, + { + "post_title": "Alberta Newsprint", + "group_name": "play", + "discovered": "2023-06-02 02:54:12.155125" + }, + { + "post_title": "Unico Data,INSYS Industriesysteme,PathA Suisse,PB Swiss Tools,Boess Gruppe", + "group_name": "play", + "discovered": "2023-06-02 02:54:13.120582" + }, + { + "post_title": "Fortress Paper", + "group_name": "play", + "discovered": "2023-06-02 02:54:13.578212" + }, + { + "post_title": "Globalcaja", + "group_name": "play", + "discovered": "2023-06-02 04:33:13.222706" + }, + { + "post_title": "ykk.com", + "group_name": "lockbit3", + "discovered": "2023-06-02 08:30:43.051280" + }, + { + "post_title": "JPW Industries (jpwindustries.com) | Baileigh Industrial (baileigh.com) | With SpaceX Data", + "group_name": "alphv", + "discovered": "2023-06-02 10:31:16.286279" + }, + { + "post_title": "LETAPE JEUNES", + "group_name": "ransomblog_noname", + "discovered": "2023-06-02 14:28:31.403781" + }, + { + "post_title": "harwoodlloyd.com", + "group_name": "lockbit3", + "discovered": "2023-06-02 18:29:03.728800" + }, + { + "post_title": "packageconcepts.com", + "group_name": "lockbit3", + "discovered": "2023-06-02 18:29:05.822488" + }, + { + "post_title": "shakeys.com", + "group_name": "lockbit3", + "discovered": "2023-06-02 18:29:07.110973" + }, + { + "post_title": "SsangYong Motor", + "group_name": "snatch", + "discovered": "2023-06-03 00:41:46.000114" + }, + { + "post_title": "ServiceKing & CrashChampions", + "group_name": "alphv", + "discovered": "2023-06-03 00:41:47.662324" + }, + { + "post_title": "Young Homes, Inc", + "group_name": "mallox", + "discovered": "2023-06-03 04:34:55.009586" + }, + { + "post_title": "CCAA", + "group_name": "mallox", + "discovered": "2023-06-03 04:34:55.591855" + }, + { + "post_title": "FICCI", + "group_name": "mallox", + "discovered": "2023-06-03 04:34:56.110260" + }, + { + "post_title": "Share", + "group_name": "mallox", + "discovered": "2023-06-03 08:34:53.784854" + }, + { + "post_title": "Tension Corporation", + "group_name": "alphv", + "discovered": "2023-06-03 12:34:12.859459" + }, + { + "post_title": "Share and Harris", + "group_name": "mallox", + "discovered": "2023-06-04 08:37:23.887577" + }, + { + "post_title": "https://conleywirick.com", + "group_name": "qilin", + "discovered": "2023-06-04 12:31:36.115123" + }, + { + "post_title": "uhsp.edu", + "group_name": "lockbit3", + "discovered": "2023-06-04 18:37:57.502329" + }, + { + "post_title": "Nerim", + "group_name": "vicesociety", + "discovered": "2023-06-04 22:37:14.145411" + }, + { + "post_title": "https://ascentia.us", + "group_name": "qilin", + "discovered": "2023-06-04 22:37:24.738686" + }, + { + "post_title": "Avant Grup", + "group_name": "snatch", + "discovered": "2023-06-05 03:03:51.452503" + }, + { + "post_title": "The Briars Group", + "group_name": "snatch", + "discovered": "2023-06-05 03:03:52.445236" + }, + { + "post_title": "Mount Desert Island Hospital", + "group_name": "snatch", + "discovered": "2023-06-05 03:03:53.213370" + }, + { + "post_title": "ELITechGroup", + "group_name": "snatch", + "discovered": "2023-06-05 03:03:54.055924" + }, + { + "post_title": "etships.com", + "group_name": "lockbit3", + "discovered": "2023-06-05 14:36:23.930845" + }, + { + "post_title": "Beacon ABA Services", + "group_name": "karakurt", + "discovered": "2023-06-05 14:36:30.751730" + }, + { + "post_title": "Malt Products", + "group_name": "akira", + "discovered": "2023-06-05 14:36:32.089031" + }, + { + "post_title": "D&K Group, Inc", + "group_name": "alphv", + "discovered": "2023-06-05 16:34:05.521606" + }, + { + "post_title": "Robison Engineering", + "group_name": "alphv", + "discovered": "2023-06-05 16:34:06.200219" + }, + { + "post_title": "BOBSTNT", + "group_name": "blackbasta", + "discovered": "2023-06-05 16:34:08.393634" + }, + { + "post_title": "Concremat constructions", + "group_name": "medusa", + "discovered": "2023-06-05 18:35:01.910916" + }, + { + "post_title": "Farmacias Los Hidalgos ", + "group_name": "medusa", + "discovered": "2023-06-05 18:35:02.725871" + }, + { + "post_title": "adstradata.com", + "group_name": "lockbit3", + "discovered": "2023-06-05 20:37:12.562299" + }, + { + "post_title": "North West Paving Ltd", + "group_name": "alphv", + "discovered": "2023-06-05 22:34:43.437692" + }, + { + "post_title": "Stylish Fabric (stylishfabric.com)", + "group_name": "alphv", + "discovered": "2023-06-06 00:49:42.881276" + }, + { + "post_title": "Bibliotheek Gouda", + "group_name": "8base", + "discovered": "2023-06-06 06:29:56.411595" + }, + { + "post_title": "borwafs.co.za", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:08.263117" + }, + { + "post_title": "crosscity.com.au", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:09.487849" + }, + { + "post_title": "icae.net", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:11.419023" + }, + { + "post_title": "iprac.com", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:12.353423" + }, + { + "post_title": "jacquart.fr", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:13.117754" + }, + { + "post_title": "jeloin.se", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:13.956038" + }, + { + "post_title": "stimgroup.it", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:16.820252" + }, + { + "post_title": "tmd.go.th", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:17.845109" + }, + { + "post_title": "villemandeure.fr", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:18.778563" + }, + { + "post_title": "wjtowell.com", + "group_name": "lockbit3", + "discovered": "2023-06-06 12:34:20.069771" + }, + { + "post_title": "bintangindokaryagemilang.co.id", + "group_name": "lockbit3", + "discovered": "2023-06-06 14:36:12.019221" + }, + { + "post_title": "saragroup.in", + "group_name": "lockbit3", + "discovered": "2023-06-06 14:36:17.041447" + }, + { + "post_title": "nosm.ca", + "group_name": "lockbit3", + "discovered": "2023-06-06 16:29:33.369048" + }, + { + "post_title": "trois-i.com", + "group_name": "lockbit3", + "discovered": "2023-06-06 16:29:35.420985" + }, + { + "post_title": "WTI - Western Telema tic", + "group_name": "akira", + "discovered": "2023-06-06 16:29:40.207449" + }, + { + "post_title": "Asakura Robinson", + "group_name": "akira", + "discovered": "2023-06-06 16:29:41.030177" + }, + { + "post_title": "fredfeet.com", + "group_name": "lockbit3", + "discovered": "2023-06-06 18:35:05.427214" + }, + { + "post_title": "Public Health Management Corporation", + "group_name": "trigona", + "discovered": "2023-06-06 20:33:44.337344" + }, + { + "post_title": "PONDCO", + "group_name": "alphv", + "discovered": "2023-06-06 22:34:14.549450" + }, + { + "post_title": "birdair.com", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:18.124613" + }, + { + "post_title": "dalvikurbyggd.is", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:19.633832" + }, + { + "post_title": "mariohernandez.com.co", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:22.712875" + }, + { + "post_title": "payday.com.pa", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:24.235316" + }, + { + "post_title": "pentechsolution.com.my", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:26.016285" + }, + { + "post_title": "pittsburg.k12.ca.us", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:26.809191" + }, + { + "post_title": "progen.com.br", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:27.830153" + }, + { + "post_title": "screenline.co.za", + "group_name": "lockbit3", + "discovered": "2023-06-06 22:34:28.913604" + }, + { + "post_title": "newarka.edu", + "group_name": "lockbit3", + "discovered": "2023-06-07 02:56:41.070161" + }, + { + "post_title": "realcomp.com", + "group_name": "lockbit3", + "discovered": "2023-06-07 04:31:11.513365" + }, + { + "post_title": "billhurst.com", + "group_name": "lockbit3", + "discovered": "2023-06-07 06:32:35.835263" + }, + { + "post_title": "aluminumsandcastingsfoundry.com", + "group_name": "lockbit3", + "discovered": "2023-06-07 12:33:11.875920" + }, + { + "post_title": "newhorizonsmedical.org", + "group_name": "lockbit3", + "discovered": "2023-06-07 12:33:15.514235" + }, + { + "post_title": "worldlearning.org", + "group_name": "lockbit3", + "discovered": "2023-06-07 16:31:50.532146" + }, + { + "post_title": "https://awmga.com/", + "group_name": "qilin", + "discovered": "2023-06-07 16:31:52.936104" + }, + { + "post_title": "Harbro", + "group_name": "akira", + "discovered": "2023-06-07 16:31:55.361268" + }, + { + "post_title": "Tour Partner Group ", + "group_name": "medusa", + "discovered": "2023-06-07 18:34:59.117946" + }, + { + "post_title": "www.roadsafetraffic.com", + "group_name": "blackbasta", + "discovered": "2023-06-07 22:38:11.875088" + }, + { + "post_title": "knipmeijerenblok.nl", + "group_name": "lockbit3", + "discovered": "2023-06-08 00:42:23.577986" + }, + { + "post_title": "CASEPOINT pt.2", + "group_name": "alphv", + "discovered": "2023-06-08 10:31:18.507364" + }, + { + "post_title": "cortinawatch.com", + "group_name": "lockbit3", + "discovered": "2023-06-08 10:31:22.824825" + }, + { + "post_title": "https://claritywatertech.com", + "group_name": "qilin", + "discovered": "2023-06-08 10:31:29.718121" + }, + { + "post_title": "M*** ****", + "group_name": "bianlian", + "discovered": "2023-06-08 18:29:03.509630" + }, + { + "post_title": "Aeliusmd Medical Systems", + "group_name": "bianlian", + "discovered": "2023-06-08 18:29:03.946676" + }, + { + "post_title": "*** ******** ***** ** **u** *e********", + "group_name": "bianlian", + "discovered": "2023-06-08 18:29:04.429295" + }, + { + "post_title": "A******* ***** ******", + "group_name": "bianlian", + "discovered": "2023-06-08 18:29:06.476667" + }, + { + "post_title": "Kramer Enterprises", + "group_name": "medusa", + "discovered": "2023-06-09 10:29:51.695131" + }, + { + "post_title": "http://www.penncrest.org", + "group_name": "royal", + "discovered": "2023-06-09 12:37:31.805471" + }, + { + "post_title": "The Adams County Com munication Center or ADCOM911", + "group_name": "akira", + "discovered": "2023-06-09 12:37:34.323582" + }, + { + "post_title": "Columbus Regional Healthcare System (US)", + "group_name": "daixin", + "discovered": "2023-06-09 16:31:38.253300" + }, + { + "post_title": "Ellis Patents", + "group_name": "akira", + "discovered": "2023-06-09 16:31:41.202814" + }, + { + "post_title": "ACI Advanced Chemica l Industries", + "group_name": "akira", + "discovered": "2023-06-09 16:31:42.146704" + }, + { + "post_title": "gruppomercurio.com", + "group_name": "lockbit3", + "discovered": "2023-06-09 18:32:05.689198" + }, + { + "post_title": "wsisd.net", + "group_name": "lockbit3", + "discovered": "2023-06-09 18:32:09.539301" + }, + { + "post_title": "Caruso", + "group_name": "akira", + "discovered": "2023-06-09 18:32:14.631164" + }, + { + "post_title": "TAG Aviation", + "group_name": "unsafeleak", + "discovered": "2023-06-09 20:32:56.984080" + }, + { + "post_title": "Silicon Valley Mechanical", + "group_name": "alphv", + "discovered": "2023-06-09 22:28:28.398957" + }, + { + "post_title": "Coca-Cola FEMSA", + "group_name": "alphv", + "discovered": "2023-06-10 08:32:45.866940" + }, + { + "post_title": "FIIG", + "group_name": "alphv", + "discovered": "2023-06-10 10:31:13.153394" + }, + { + "post_title": "Comisión Nacional de Valores", + "group_name": "medusa", + "discovered": "2023-06-11 10:27:57.688033" + }, + { + "post_title": "GAE Construction", + "group_name": "medusa", + "discovered": "2023-06-11 10:27:58.065853" + }, + { + "post_title": "Ampla Divisórias", + "group_name": "8base", + "discovered": "2023-06-11 10:27:59.931906" + }, + { + "post_title": "RJP MEDICAL LTDA", + "group_name": "8base", + "discovered": "2023-06-11 10:28:01.019143" + }, + { + "post_title": "http://www.tachi-s.com", + "group_name": "royal", + "discovered": "2023-06-11 12:41:21.330870" + }, + { + "post_title": "SINTTEL", + "group_name": "8base", + "discovered": "2023-06-11 12:41:24.217898" + }, + { + "post_title": "CLONARTE", + "group_name": "8base", + "discovered": "2023-06-11 12:41:24.770778" + }, + { + "post_title": "PREMIER HOSPITAL DIA", + "group_name": "8base", + "discovered": "2023-06-11 12:41:25.388180" + }, + { + "post_title": "TECHCERT", + "group_name": "8base", + "discovered": "2023-06-11 12:41:25.931878" + }, + { + "post_title": "LUZBOA S.A", + "group_name": "8base", + "discovered": "2023-06-11 12:41:26.884566" + }, + { + "post_title": "Defesa da Classe Trabalhadora (Declatra)", + "group_name": "8base", + "discovered": "2023-06-11 12:41:27.703571" + }, + { + "post_title": "CEMAF PARTICIPACOES E ADMINISTRACAO DE BENS LTDA", + "group_name": "8base", + "discovered": "2023-06-11 12:41:28.313262" + }, + { + "post_title": "Ueno Periodontics", + "group_name": "alphv", + "discovered": "2023-06-12 00:45:59.355804" + }, + { + "post_title": "Krack Zapaterías", + "group_name": "alphv", + "discovered": "2023-06-12 00:46:00.446361" + }, + { + "post_title": "Transprensa", + "group_name": "8base", + "discovered": "2023-06-12 04:33:56.525837" + }, + { + "post_title": "https://marjam.com/", + "group_name": "blacksuit", + "discovered": "2023-06-12 06:35:02.948218" + }, + { + "post_title": "Amaszonas S.A.", + "group_name": "medusa", + "discovered": "2023-06-12 08:30:28.374401" + }, + { + "post_title": "www.regallogistics.com", + "group_name": "blackbasta", + "discovered": "2023-06-12 14:29:58.855298" + }, + { + "post_title": "www.hillaerosystems.com", + "group_name": "blackbasta", + "discovered": "2023-06-12 14:29:59.406709" + }, + { + "post_title": "Global Remote Services", + "group_name": "snatch", + "discovered": "2023-06-12 18:31:47.924694" + }, + { + "post_title": "ai-thermal.com", + "group_name": "lockbit3", + "discovered": "2023-06-12 20:35:00.540653" + }, + { + "post_title": "pneusbeaucerons.com", + "group_name": "lockbit3", + "discovered": "2023-06-12 20:35:04.764819" + }, + { + "post_title": "Automatic Systems - is a company with extremely low security of its network and products w", + "group_name": "alphv", + "discovered": "2023-06-12 22:33:33.092531" + }, + { + "post_title": "t-s-c.eu", + "group_name": "lockbit3", + "discovered": "2023-06-13 06:34:22.980615" + }, + { + "post_title": "Sonangol", + "group_name": "alphv", + "discovered": "2023-06-13 08:36:09.107732" + }, + { + "post_title": "eriematerials.com", + "group_name": "lockbit3", + "discovered": "2023-06-13 12:38:57.641733" + }, + { + "post_title": "gslelectric.com", + "group_name": "lockbit3", + "discovered": "2023-06-13 12:38:58.963320" + }, + { + "post_title": "rammutual.com", + "group_name": "lockbit3", + "discovered": "2023-06-13 12:39:01.330427" + }, + { + "post_title": "*i**r** *e***l****", + "group_name": "bianlian", + "discovered": "2023-06-13 16:29:29.917447" + }, + { + "post_title": "K********* ******* ***", + "group_name": "bianlian", + "discovered": "2023-06-13 16:29:30.391997" + }, + { + "post_title": "Jeff Wyler Automotive Family, Inc.", + "group_name": "8base", + "discovered": "2023-06-13 16:29:33.933536" + }, + { + "post_title": "Fullerton India", + "group_name": "snatch", + "discovered": "2023-06-13 22:37:40.696819" + }, + { + "post_title": "Bogleboo", + "group_name": "vicesociety", + "discovered": "2023-06-13 22:37:42.269320" + }, + { + "post_title": "Bunker Hill Community College", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:05.902994" + }, + { + "post_title": "James Briggs Limited", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:07.014950" + }, + { + "post_title": "Tetrosyl Group", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:07.582949" + }, + { + "post_title": "TF AMD Microelectronics", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:08.450426" + }, + { + "post_title": "MCNA Dental", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:09.072863" + }, + { + "post_title": "Hemenway Financial Services", + "group_name": "snatch", + "discovered": "2023-06-14 00:43:09.779080" + }, + { + "post_title": "prioritydispatch.net", + "group_name": "lockbit3", + "discovered": "2023-06-14 08:36:48.877076" + }, + { + "post_title": "primeretailservices.com", + "group_name": "lockbit3", + "discovered": "2023-06-14 14:37:53.039105" + }, + { + "post_title": "http://venturelogistics.com", + "group_name": "blacksuit", + "discovered": "2023-06-14 14:37:59.384793" + }, + { + "post_title": "granules.com", + "group_name": "lockbit3", + "discovered": "2023-06-14 16:34:54.074212" + }, + { + "post_title": "New Horizons Medical", + "group_name": "alphv", + "discovered": "2023-06-14 18:29:13.663974" + }, + { + "post_title": "Marchant Schmidt", + "group_name": "blackbasta", + "discovered": "2023-06-14 18:29:15.952510" + }, + { + "post_title": "Wison Engineering", + "group_name": "ransomhouse", + "discovered": "2023-06-14 18:29:16.994830" + }, + { + "post_title": "arborsct.com", + "group_name": "ransomblog_noname", + "discovered": "2023-06-14 18:29:26.782965" + }, + { + "post_title": "Jalux Americas, Inc.", + "group_name": "ransomblog_noname", + "discovered": "2023-06-14 18:29:28.032952" + }, + { + "post_title": "https://www.iecm.co.th", + "group_name": "qilin", + "discovered": "2023-06-14 20:38:51.230819" + }, + { + "post_title": "Air Comfort (aircomfort.ac)", + "group_name": "rancoz", + "discovered": "2023-06-14 20:38:55.130450" + }, + { + "post_title": "YAMAHA CORPORATION OF AMERICA", + "group_name": "blackbyte", + "discovered": "2023-06-14 22:34:10.242556" + }, + { + "post_title": "The Texwipe", + "group_name": "blackbyte", + "discovered": "2023-06-14 22:34:11.295069" + }, + { + "post_title": "NEBRASKALAND", + "group_name": "blackbyte", + "discovered": "2023-06-14 22:34:11.968887" + }, + { + "post_title": "Fiege Sp. z o.o.", + "group_name": "blackbyte", + "discovered": "2023-06-14 22:34:12.752616" + }, + { + "post_title": "Law Society of South Africa", + "group_name": "8base", + "discovered": "2023-06-15 06:36:34.510817" + }, + { + "post_title": "flybtr.com", + "group_name": "lockbit3", + "discovered": "2023-06-15 08:40:11.257274" + }, + { + "post_title": "ste-usa.com", + "group_name": "lockbit3", + "discovered": "2023-06-15 08:40:14.836749" + }, + { + "post_title": "Salem Community Schools", + "group_name": "medusa", + "discovered": "2023-06-15 08:40:18.513359" + }, + { + "post_title": "Plott Corporation", + "group_name": "alphv", + "discovered": "2023-06-15 10:33:44.448201" + }, + { + "post_title": "Alpha Data", + "group_name": "alphv", + "discovered": "2023-06-15 10:33:45.234634" + }, + { + "post_title": "https://asz-gmbh.de", + "group_name": "qilin", + "discovered": "2023-06-15 10:33:54.282802" + }, + { + "post_title": "Law Offices of Sergio J. Siderman", + "group_name": "8base", + "discovered": "2023-06-15 12:38:33.361364" + }, + { + "post_title": "San Luis Obispo County Office of Education", + "group_name": "8base", + "discovered": "2023-06-15 12:38:34.688953" + }, + { + "post_title": "Studio Legale Ranchino", + "group_name": "8base", + "discovered": "2023-06-15 12:38:35.566704" + }, + { + "post_title": "Ligas Gerais Industria E Comercio", + "group_name": "8base", + "discovered": "2023-06-15 12:38:36.338783" + }, + { + "post_title": "Stone Fox Ventures", + "group_name": "8base", + "discovered": "2023-06-15 12:38:37.318024" + }, + { + "post_title": "Hornbill", + "group_name": "8base", + "discovered": "2023-06-15 12:38:38.151478" + }, + { + "post_title": "DANIEL C. HARRIS, O.D", + "group_name": "8base", + "discovered": "2023-06-15 12:38:38.974665" + }, + { + "post_title": "https://delbonohotels.com", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:37.776694" + }, + { + "post_title": "asz-gmbh.de", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:38.396534" + }, + { + "post_title": "https://www.sippex.com", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:47.761778" + }, + { + "post_title": "https://www.attentzorgenbehandeling.nl/", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:48.400524" + }, + { + "post_title": "https://fsmsolicitors.co.uk/", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:48.981318" + }, + { + "post_title": "emtelco.com.co", + "group_name": "qilin", + "discovered": "2023-06-15 14:32:50.302888" + }, + { + "post_title": "Badan Operasi Bersama Pt Bumi Siak Pusako Pertamina Hulu", + "group_name": "alphv", + "discovered": "2023-06-15 22:31:47.260583" + }, + { + "post_title": "Prada Gayoso", + "group_name": "ransomhouse", + "discovered": "2023-06-15 22:31:49.690616" + }, + { + "post_title": "Roberto Verino Difusion", + "group_name": "ransomhouse", + "discovered": "2023-06-15 22:31:50.319237" + }, + { + "post_title": "Multistack", + "group_name": "blackbyte", + "discovered": "2023-06-16 04:34:13.332622" + }, + { + "post_title": "Kisco Senior Living", + "group_name": "blackbyte", + "discovered": "2023-06-16 04:34:13.978847" + }, + { + "post_title": "cangas.gal", + "group_name": "lockbit3", + "discovered": "2023-06-16 14:34:24.503546" + }, + { + "post_title": "target-8", + "group_name": "ragroup", + "discovered": "2023-06-17 00:48:01.844441" + }, + { + "post_title": "marstrand.se", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:44.264224" + }, + { + "post_title": "vaud-promotion", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:45.188983" + }, + { + "post_title": "PICPLUS.COM", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:46.208390" + }, + { + "post_title": "rzepeckimroczkowski", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:46.949220" + }, + { + "post_title": "hep global GmbH", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:47.693839" + }, + { + "post_title": "PLURISERVICE", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:48.650058" + }, + { + "post_title": "PESSI", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:49.544457" + }, + { + "post_title": "CONATECO", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:50.335301" + }, + { + "post_title": "ERT", + "group_name": "darkrace", + "discovered": "2023-06-17 04:47:51.177671" + }, + { + "post_title": "Koper Automatisering", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:51.904267" + }, + { + "post_title": "Ejercito de Chile", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:52.622889" + }, + { + "post_title": "Collectivite Territoriale de Martinique", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:53.499845" + }, + { + "post_title": "The Thomas Hardye School", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:54.211818" + }, + { + "post_title": "Amstutz Produkte", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:54.970025" + }, + { + "post_title": "Haemokinesis", + "group_name": "rhysida", + "discovered": "2023-06-17 04:47:55.751260" + }, + { + "post_title": "Ziegelwerk Eder", + "group_name": "rhysida", + "discovered": "2023-06-17 06:32:18.692158" + }, + { + "post_title": "Bauer Built", + "group_name": "alphv", + "discovered": "2023-06-17 14:29:16.169695" + }, + { + "post_title": "Creative Liquid Coatings", + "group_name": "alphv", + "discovered": "2023-06-17 14:29:17.048548" + }, + { + "post_title": "The Reddit Files", + "group_name": "alphv", + "discovered": "2023-06-17 22:33:18.856809" + }, + { + "post_title": "tdm.com.pe", + "group_name": "lockbit3", + "discovered": "2023-06-17 22:33:26.950394" + }, + { + "post_title": "Tyconz", + "group_name": "rhysida", + "discovered": "2023-06-18 00:41:36.902944" + }, + { + "post_title": "The Dufresne Group - DSG - ASHLEY HOMESTORES", + "group_name": "alphv", + "discovered": "2023-06-18 10:34:59.101607" + }, + { + "post_title": "Bangkok Industrial Gas Co., Ltd. (BIG)", + "group_name": "mallox", + "discovered": "2023-06-18 18:37:49.030331" + }, + { + "post_title": "EDER", + "group_name": "rhysida", + "discovered": "2023-06-18 20:38:50.451082" + }, + { + "post_title": "PORTBLUE", + "group_name": "8base", + "discovered": "2023-06-19 04:40:21.187130" + }, + { + "post_title": "LOONGSON", + "group_name": "8base", + "discovered": "2023-06-19 04:40:22.155429" + }, + { + "post_title": "Futura Agronegócios", + "group_name": "8base", + "discovered": "2023-06-19 04:40:22.888912" + }, + { + "post_title": "Northeastern State University", + "group_name": "rhysida", + "discovered": "2023-06-19 04:40:24.621394" + }, + { + "post_title": "FHR Electric", + "group_name": "medusa", + "discovered": "2023-06-19 10:32:23.860688" + }, + { + "post_title": "Ascendum Machinery", + "group_name": "alphv", + "discovered": "2023-06-19 12:45:20.183114" + }, + { + "post_title": "printmarksolution.com", + "group_name": "qilin", + "discovered": "2023-06-19 12:45:30.559597" + }, + { + "post_title": "BLUESAGE", + "group_name": "8base", + "discovered": "2023-06-19 12:45:33.230294" + }, + { + "post_title": "PrintGlobe, Inc.", + "group_name": "8base", + "discovered": "2023-06-19 12:45:33.946115" + }, + { + "post_title": "tilg.at", + "group_name": "lockbit3", + "discovered": "2023-06-19 14:28:45.307076" + }, + { + "post_title": "TARLE LAW, P.C.", + "group_name": "8base", + "discovered": "2023-06-19 14:28:50.146488" + }, + { + "post_title": "Texas Hotel and Lodging Association", + "group_name": "8base", + "discovered": "2023-06-19 14:28:51.074755" + }, + { + "post_title": "Onsupport Corporation", + "group_name": "8base", + "discovered": "2023-06-19 14:28:51.731018" + }, + { + "post_title": "absolutecal.co.uk", + "group_name": "lockbit3", + "discovered": "2023-06-19 16:38:44.022796" + }, + { + "post_title": "Mammoth Energy (NASDAQ: TUSK)", + "group_name": "alphv", + "discovered": "2023-06-19 22:29:32.225786" + }, + { + "post_title": "Telcoset", + "group_name": "snatch", + "discovered": "2023-06-20 02:56:16.298806" + }, + { + "post_title": "MAXIMUM PRIME ALIMENTOS EIRELI", + "group_name": "8base", + "discovered": "2023-06-20 04:45:11.057153" + }, + { + "post_title": "The Akin Law LLC", + "group_name": "8base", + "discovered": "2023-06-20 06:33:43.754366" + }, + { + "post_title": "bbrook.org", + "group_name": "lockbit3", + "discovered": "2023-06-20 10:37:36.283407" + }, + { + "post_title": "cornu.ch", + "group_name": "lockbit3", + "discovered": "2023-06-20 10:37:37.797480" + }, + { + "post_title": "valleyoaks.org", + "group_name": "lockbit3", + "discovered": "2023-06-20 10:37:42.863901" + }, + { + "post_title": "Strait & Lamp Group", + "group_name": "alphv", + "discovered": "2023-06-20 14:54:54.946593" + }, + { + "post_title": "www.morsemoving.com", + "group_name": "blackbasta", + "discovered": "2023-06-20 14:54:56.795698" + }, + { + "post_title": "Praxis Energy Agents", + "group_name": "medusa", + "discovered": "2023-06-20 18:45:46.260555" + }, + { + "post_title": "SAPROS", + "group_name": "rhysida", + "discovered": "2023-06-20 20:48:39.137740" + }, + { + "post_title": "COEX", + "group_name": "alphv", + "discovered": "2023-06-20 22:38:07.829019" + }, + { + "post_title": "SSV Architects", + "group_name": "vicesociety", + "discovered": "2023-06-20 22:38:10.055025" + }, + { + "post_title": "MICA ENVIRONNEMENT", + "group_name": "mallox", + "discovered": "2023-06-20 22:38:20.469572" + }, + { + "post_title": "Medical University of the Americas", + "group_name": "snatch", + "discovered": "2023-06-21 00:49:09.223040" + }, + { + "post_title": "Beverly Hills Plastic Surgery", + "group_name": "alphv", + "discovered": "2023-06-21 06:44:40.916848" + }, + { + "post_title": "SITARA", + "group_name": "8base", + "discovered": "2023-06-21 08:38:30.456239" + }, + { + "post_title": "EDG", + "group_name": "alphv", + "discovered": "2023-06-21 10:35:58.174889" + }, + { + "post_title": "The Sullivan Group of Court Reporters", + "group_name": "bianlian", + "discovered": "2023-06-21 10:36:06.941437" + }, + { + "post_title": "T***** ***** *********t** *.*.", + "group_name": "bianlian", + "discovered": "2023-06-21 10:36:07.600053" + }, + { + "post_title": "BGFIBank Group", + "group_name": "bianlian", + "discovered": "2023-06-21 10:36:08.381964" + }, + { + "post_title": "target-9", + "group_name": "ragroup", + "discovered": "2023-06-21 10:36:12.468789" + }, + { + "post_title": "deepnoid", + "group_name": "ragroup", + "discovered": "2023-06-21 10:36:13.135960" + }, + { + "post_title": "Wolfs Block Management Limited", + "group_name": "play", + "discovered": "2023-06-21 12:45:08.736660" + }, + { + "post_title": "Lorclon", + "group_name": "play", + "discovered": "2023-06-21 12:45:09.726653" + }, + { + "post_title": "Allpro Consulting Group", + "group_name": "play", + "discovered": "2023-06-21 12:45:11.009672" + }, + { + "post_title": "Luís Simoes", + "group_name": "play", + "discovered": "2023-06-21 12:45:11.972629" + }, + { + "post_title": "Federation Francaise de Rugby", + "group_name": "play", + "discovered": "2023-06-21 12:45:12.819026" + }, + { + "post_title": "PWI Engineering", + "group_name": "play", + "discovered": "2023-06-21 12:45:13.523413" + }, + { + "post_title": "Barentz North America", + "group_name": "play", + "discovered": "2023-06-21 12:45:14.324984" + }, + { + "post_title": "Hi-tec, Batra Group", + "group_name": "play", + "discovered": "2023-06-21 12:45:15.124071" + }, + { + "post_title": "OMNIPOL", + "group_name": "play", + "discovered": "2023-06-21 12:45:16.076035" + }, + { + "post_title": "Eastside Union School District", + "group_name": "karakurt", + "discovered": "2023-06-21 12:45:17.161972" + }, + { + "post_title": "Summit Hut", + "group_name": "play", + "discovered": "2023-06-21 14:36:14.266528" + }, + { + "post_title": "Dancie Perugini Ware Public Relations", + "group_name": "play", + "discovered": "2023-06-21 14:36:15.421939" + }, + { + "post_title": "Peter Mark", + "group_name": "play", + "discovered": "2023-06-21 14:36:16.171429" + }, + { + "post_title": "Café Soluble", + "group_name": "akira", + "discovered": "2023-06-21 14:36:17.964813" + }, + { + "post_title": "Habasit", + "group_name": "akira", + "discovered": "2023-06-21 14:36:18.837866" + }, + { + "post_title": "Yokohama-oht (atgtir e)", + "group_name": "akira", + "discovered": "2023-06-21 14:36:19.589075" + }, + { + "post_title": "Craig & Associates, LLC", + "group_name": "alphv", + "discovered": "2023-06-21 16:39:16.666931" + }, + { + "post_title": "Main Street Title and Settlement Services LLC", + "group_name": "alphv", + "discovered": "2023-06-21 16:39:17.181575" + }, + { + "post_title": "Kansas Joint & Spine Specialists", + "group_name": "alphv", + "discovered": "2023-06-21 16:39:18.039687" + }, + { + "post_title": "CYBERFREIGHT SYSTEMS MARITIMES INC.", + "group_name": "8base", + "discovered": "2023-06-21 16:39:33.448247" + }, + { + "post_title": "Avannubo", + "group_name": "rhysida", + "discovered": "2023-06-21 22:39:45.971817" + }, + { + "post_title": "londonandcapital", + "group_name": "alphv", + "discovered": "2023-06-22 14:31:18.109413" + }, + { + "post_title": "Refractron", + "group_name": "akira", + "discovered": "2023-06-22 16:37:28.004862" + }, + { + "post_title": "GC&E", + "group_name": "akira", + "discovered": "2023-06-22 16:37:28.793494" + }, + { + "post_title": "National Institutional Facilitation Technologies (Pvt.) Limited", + "group_name": "alphv", + "discovered": "2023-06-22 18:32:06.146105" + }, + { + "post_title": "DBSA hit by ransomwa re attack.", + "group_name": "akira", + "discovered": "2023-06-22 18:32:18.475461" + }, + { + "post_title": "medexs.com", + "group_name": "qilin", + "discovered": "2023-06-22 22:39:07.697012" + }, + { + "post_title": "Hill International", + "group_name": "play", + "discovered": "2023-06-22 22:39:09.681978" + }, + { + "post_title": "https://www.ultimatepail.com", + "group_name": "blackbasta", + "discovered": "2023-06-23 08:41:17.457349" + }, + { + "post_title": "Perpetual Group", + "group_name": "akira", + "discovered": "2023-06-23 14:36:33.875676" + }, + { + "post_title": "The Akron-Summit Cou nty Public Library", + "group_name": "akira", + "discovered": "2023-06-23 14:36:34.805509" + }, + { + "post_title": "Galveston College", + "group_name": "akira", + "discovered": "2023-06-23 14:36:35.624134" + }, + { + "post_title": "American Crane Rental", + "group_name": "bianlian", + "discovered": "2023-06-23 18:34:43.165737" + }, + { + "post_title": "*i***** *****", + "group_name": "bianlian", + "discovered": "2023-06-23 18:34:43.870572" + }, + { + "post_title": "**** H****", + "group_name": "bianlian", + "discovered": "2023-06-23 18:34:44.762130" + }, + { + "post_title": "SELL DATA(qtox)", + "group_name": "ransomblog_noname", + "discovered": "2023-06-24 02:55:51.383197" + }, + { + "post_title": "Hausamman company", + "group_name": "ransomblog_noname", + "discovered": "2023-06-24 02:55:52.526385" + }, + { + "post_title": "Tlantic", + "group_name": "mallox", + "discovered": "2023-06-24 04:30:43.171049" + }, + { + "post_title": "Jacobs Farm", + "group_name": "ransomexx", + "discovered": "2023-06-24 20:29:06.311612" + }, + { + "post_title": "Universitas Matthiae Belii association", + "group_name": "medusa", + "discovered": "2023-06-25 16:32:33.226569" + }, + { + "post_title": "Real Estate Systems Integrator", + "group_name": "medusa", + "discovered": "2023-06-25 16:32:33.860944" + }, + { + "post_title": "Farmacias Los Hidalgos", + "group_name": "medusa", + "discovered": "2023-06-25 16:32:34.677220" + }, + { + "post_title": "PNEUMAX", + "group_name": "8base", + "discovered": "2023-06-26 04:35:16.531665" + }, + { + "post_title": "LEGALILAVORO", + "group_name": "8base", + "discovered": "2023-06-26 04:35:17.077032" + }, + { + "post_title": "www.creditteam.eu", + "group_name": "noescape", + "discovered": "2023-06-26 18:27:49.324350" + }, + { + "post_title": "www.pfcfulfills.com", + "group_name": "noescape", + "discovered": "2023-06-26 18:27:49.378870" + }, + { + "post_title": "www.cjhire.co.uk", + "group_name": "noescape", + "discovered": "2023-06-26 18:27:49.463911" + }, + { + "post_title": "Lysander Shipping", + "group_name": "8base", + "discovered": "2023-06-26 10:36:38.972452" + }, + { + "post_title": "CLEAR MEDI HEALTHCARE", + "group_name": "8base", + "discovered": "2023-06-26 10:36:39.813555" + }, + { + "post_title": "JOB-SA BETON J.O.B SA", + "group_name": "8base", + "discovered": "2023-06-26 10:36:40.897072" + }, + { + "post_title": "a", + "group_name": "bianlian", + "discovered": "2023-06-26 12:34:41.330782" + }, + { + "post_title": "Looking for new partners", + "group_name": "everest", + "discovered": "2023-06-26 14:33:16.333430" + }, + { + "post_title": "Reeds Spring School District", + "group_name": "karakurt", + "discovered": "2023-06-26 14:33:36.801955" + }, + { + "post_title": "London Capital Group (LCG)", + "group_name": "akira", + "discovered": "2023-06-26 14:33:38.133250" + }, + { + "post_title": "Fassi Gru S.p.A.", + "group_name": "rhysida", + "discovered": "2023-06-26 14:33:40.756616" + }, + { + "post_title": "Chariton Valley", + "group_name": "akira", + "discovered": "2023-06-26 16:37:16.207161" + }, + { + "post_title": "Knights of Old Group", + "group_name": "akira", + "discovered": "2023-06-26 16:37:16.939424" + }, + { + "post_title": "Greenfiber", + "group_name": "alphv", + "discovered": "2023-06-26 20:38:11.569306" + }, + { + "post_title": "Hochschule Kaiserslautern", + "group_name": "rhysida", + "discovered": "2023-06-27 00:46:42.077640" + }, + { + "post_title": "COMPASS INFRASTRUCTURE GROUP", + "group_name": "mallox", + "discovered": "2023-06-27 08:45:49.406315" + }, + { + "post_title": "ITW Food Equipment Group", + "group_name": "alphv", + "discovered": "2023-06-27 12:53:15.789618" + }, + { + "post_title": "iMatica", + "group_name": "rhysida", + "discovered": "2023-06-27 12:53:27.993872" + }, + { + "post_title": "Cambridge Group of Clubs", + "group_name": "play", + "discovered": "2023-06-28 00:54:59.274527" + }, + { + "post_title": "Algotech", + "group_name": "play", + "discovered": "2023-06-28 00:55:00.299337" + }, + { + "post_title": "Intoximeters", + "group_name": "play", + "discovered": "2023-06-28 00:55:01.220475" + }, + { + "post_title": "Texas Heat Treating", + "group_name": "play", + "discovered": "2023-06-28 00:55:02.201058" + }, + { + "post_title": "https://www.giambelli.it", + "group_name": "blackbasta", + "discovered": "2023-06-28 08:31:11.920068" + }, + { + "post_title": "https://modernind.com", + "group_name": "blackbasta", + "discovered": "2023-06-28 08:31:12.722911" + }, + { + "post_title": "www.graphtecinc.com", + "group_name": "blackbasta", + "discovered": "2023-06-28 08:31:13.629661" + }, + { + "post_title": "Piramal Group", + "group_name": "bianlian", + "discovered": "2023-06-28 08:31:21.132541" + }, + { + "post_title": "N** ********* **********", + "group_name": "bianlian", + "discovered": "2023-06-28 08:31:21.857670" + }, + { + "post_title": "Misr Life Insurance", + "group_name": "bianlian", + "discovered": "2023-06-28 08:31:22.749496" + }, + { + "post_title": "Arab Shipbuilding and Repair Yard", + "group_name": "bianlian", + "discovered": "2023-06-28 08:31:23.499563" + }, + { + "post_title": "JBCC Corp", + "group_name": "mallox", + "discovered": "2023-06-28 08:31:26.211656" + }, + { + "post_title": "Coachella Valley Collection Service", + "group_name": "alphv", + "discovered": "2023-06-28 10:35:21.416351" + }, + { + "post_title": "thaire", + "group_name": "ragroup", + "discovered": "2023-06-28 10:35:36.187325" + }, + { + "post_title": "CON-STRUCT", + "group_name": "8base", + "discovered": "2023-06-28 10:35:36.939321" + }, + { + "post_title": "PORTERROOFING", + "group_name": "8base", + "discovered": "2023-06-28 10:35:37.629768" + }, + { + "post_title": "Pan Pacific Hotels Group", + "group_name": "karakurt", + "discovered": "2023-06-28 12:32:26.156134" + }, + { + "post_title": "Stoughton Trailers", + "group_name": "akira", + "discovered": "2023-06-28 12:32:27.768142" + }, + { + "post_title": "Wilcom", + "group_name": "akira", + "discovered": "2023-06-28 12:32:28.463148" + }, + { + "post_title": "CentroMed", + "group_name": "karakurt", + "discovered": "2023-06-28 16:33:27.911869" + }, + { + "post_title": "ibafrance.fr", + "group_name": "lockbit3", + "discovered": "2023-06-28 18:38:59.295657" + }, + { + "post_title": "ISPE Connecting Pharmaceutical Knowledge", + "group_name": "8base", + "discovered": "2023-06-28 20:32:17.416409" + }, + { + "post_title": "Alberta Newsprint", + "group_name": "rhysida", + "discovered": "2023-06-28 20:32:19.093344" + }, + { + "post_title": "Hospitality Staffing Solutions", + "group_name": "akira", + "discovered": "2023-06-29 14:33:17.062891" + }, + { + "post_title": "Nycon", + "group_name": "akira", + "discovered": "2023-06-29 16:39:54.150303" + }, + { + "post_title": "LCG company (URGENT! )", + "group_name": "akira", + "discovered": "2023-06-29 16:39:55.097600" + }, + { + "post_title": "Enfield Grammar School", + "group_name": "rhysida", + "discovered": "2023-06-29 20:41:41.341905" + }, + { + "post_title": "amepl.com.au", + "group_name": "lockbit3", + "discovered": "2023-06-29 22:34:49.528495" + }, + { + "post_title": "tsmc.com", + "group_name": "lockbit3", + "discovered": "2023-06-29 22:34:55.363040" + }, + { + "post_title": "barts health nhs trust", + "group_name": "alphv", + "discovered": "2023-06-30 10:33:50.178689" + }, + { + "post_title": "Undisclosed Staffing Company", + "group_name": "bianlian", + "discovered": "2023-07-01 06:39:26.731838" + }, + { + "post_title": "Kondratoff Persick LLP", + "group_name": "bianlian", + "discovered": "2023-07-01 06:39:27.238729" + }, + { + "post_title": "**l***** C***********", + "group_name": "bianlian", + "discovered": "2023-07-01 06:39:27.777170" + }, + { + "post_title": "DVA - DVision Architecture", + "group_name": "ransomexx", + "discovered": "2023-07-01 12:33:35.525059" + }, + { + "post_title": "Ashley HomeStore", + "group_name": "mallox", + "discovered": "2023-07-01 14:31:37.569615" + }, + { + "post_title": "Ucamco Belgium", + "group_name": "ransomblog_noname", + "discovered": "2023-07-02 10:30:41.433776" + }, + { + "post_title": "blowtherm.it", + "group_name": "lockbit3", + "discovered": "2023-07-02 18:29:30.785870" + }, + { + "post_title": "Brett Martin", + "group_name": "blackbyte", + "discovered": "2023-07-03 00:48:18.373672" + }, + { + "post_title": "Luna Hotels & Resorts ", + "group_name": "medusa", + "discovered": "2023-07-03 04:43:05.636366" + }, + { + "post_title": "Mutuelle LMP", + "group_name": "medusa", + "discovered": "2023-07-03 04:43:06.608680" + }, + { + "post_title": "Duncan Disability Law", + "group_name": "alphv", + "discovered": "2023-07-03 10:41:04.108940" + }, + { + "post_title": "Townsquare Media Inc", + "group_name": "alphv", + "discovered": "2023-07-03 14:46:23.048559" + }, + { + "post_title": "oneexchangecorp.com", + "group_name": "lockbit3", + "discovered": "2023-07-03 14:46:30.145833" + }, + { + "post_title": "snjb.net", + "group_name": "lockbit3", + "discovered": "2023-07-03 14:46:32.166041" + }, + { + "post_title": "**** I******** *********", + "group_name": "bianlian", + "discovered": "2023-07-03 16:40:57.829125" + }, + { + "post_title": "Jefferson County Health Center", + "group_name": "karakurt", + "discovered": "2023-07-03 16:41:02.097968" + }, + { + "post_title": "Polanglo", + "group_name": "8base", + "discovered": "2023-07-04 08:33:36.609239" + }, + { + "post_title": "Yunus Emre Institute Turkey", + "group_name": "medusa", + "discovered": "2023-07-04 20:38:07.309652" + }, + { + "post_title": "Tour Partner Group", + "group_name": "medusa", + "discovered": "2023-07-04 20:38:07.897913" + }, + { + "post_title": "Hoosier Equipment company", + "group_name": "ransomblog_noname", + "discovered": "2023-07-04 22:41:01.857324" + }, + { + "post_title": "eurosupport.com", + "group_name": "lockbit3", + "discovered": "2023-07-05 10:31:20.521704" + }, + { + "post_title": "mitr.com", + "group_name": "lockbit3", + "discovered": "2023-07-05 10:31:23.490479" + }, + { + "post_title": "recamlaser.com", + "group_name": "lockbit3", + "discovered": "2023-07-05 10:31:25.346780" + }, + { + "post_title": "guestgroup.com.au", + "group_name": "lockbit3", + "discovered": "2023-07-05 12:36:58.386715" + }, + { + "post_title": "Murphy", + "group_name": "akira", + "discovered": "2023-07-05 12:37:07.963159" + }, + { + "post_title": "Portugal Scotturb Data Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-07-05 15:25:07.678901" + }, + { + "post_title": "Avalign Technologies", + "group_name": "blackbyte", + "discovered": "2023-07-05 18:37:59.476789" + }, + { + "post_title": "http://zootampa.org", + "group_name": "blacksuit", + "discovered": "2023-07-05 18:38:28.434196" + }, + { + "post_title": "https://asicamericas.com/", + "group_name": "qilin", + "discovered": "2023-07-06 10:38:36.491108" + }, + { + "post_title": "KIRWIN FRYDAY MEDCALF Lawyers LLP", + "group_name": "8base", + "discovered": "2023-07-06 10:38:39.546174" + }, + { + "post_title": "Bangladesh Krishi Bank", + "group_name": "alphv", + "discovered": "2023-07-06 12:37:46.052187" + }, + { + "post_title": "Pinnergy", + "group_name": "akira", + "discovered": "2023-07-06 12:37:57.508770" + }, + { + "post_title": "betalandservices.com", + "group_name": "lockbit3", + "discovered": "2023-07-06 16:37:18.814467" + }, + { + "post_title": "chasc.org", + "group_name": "lockbit3", + "discovered": "2023-07-06 16:37:20.311485" + }, + { + "post_title": "cls-group.com", + "group_name": "lockbit3", + "discovered": "2023-07-06 16:37:21.387242" + }, + { + "post_title": "gacegypt.net", + "group_name": "lockbit3", + "discovered": "2023-07-06 16:37:23.405205" + }, + { + "post_title": "siegfried.com.mx", + "group_name": "lockbit3", + "discovered": "2023-07-06 16:37:27.704865" + }, + { + "post_title": "A** **************", + "group_name": "bianlian", + "discovered": "2023-07-06 18:34:41.413068" + }, + { + "post_title": "Ella Insurance Brokerage", + "group_name": "bianlian", + "discovered": "2023-07-06 18:34:42.152572" + }, + { + "post_title": "Carvin Software", + "group_name": "bianlian", + "discovered": "2023-07-06 18:34:42.965378" + }, + { + "post_title": "Safety Network", + "group_name": "play", + "discovered": "2023-07-06 20:32:28.729169" + }, + { + "post_title": "Wesco Equipment", + "group_name": "play", + "discovered": "2023-07-06 20:32:29.590348" + }, + { + "post_title": "Capacity LLC", + "group_name": "play", + "discovered": "2023-07-06 22:36:55.264538" + }, + { + "post_title": "Betty Lous", + "group_name": "play", + "discovered": "2023-07-06 22:36:56.053078" + }, + { + "post_title": "MUJI Europe Holdings Limited", + "group_name": "play", + "discovered": "2023-07-06 22:36:56.786800" + }, + { + "post_title": "Geneva Software", + "group_name": "play", + "discovered": "2023-07-06 22:36:57.846814" + }, + { + "post_title": "Uniquify", + "group_name": "play", + "discovered": "2023-07-06 22:36:58.797021" + }, + { + "post_title": "NST Attorneys at Law", + "group_name": "play", + "discovered": "2023-07-06 22:36:59.772959" + }, + { + "post_title": "Lawer SpA", + "group_name": "play", + "discovered": "2023-07-07 00:46:06.842453" + }, + { + "post_title": "Indiana Dimension", + "group_name": "play", + "discovered": "2023-07-07 00:46:07.756707" + }, + { + "post_title": "Star Island Resort", + "group_name": "play", + "discovered": "2023-07-07 00:46:08.694614" + }, + { + "post_title": "Lazer Tow", + "group_name": "play", + "discovered": "2023-07-07 00:46:09.700584" + }, + { + "post_title": "ROBERT L BAYLESS PRODUCER LLC", + "group_name": "8base", + "discovered": "2023-07-07 14:31:14.982812" + }, + { + "post_title": "New Century Advisors, LLC", + "group_name": "8base", + "discovered": "2023-07-07 14:31:15.603721" + }, + { + "post_title": "Lane Valente Industries", + "group_name": "play", + "discovered": "2023-07-07 20:42:55.531242" + }, + { + "post_title": "Industrial Heat Transfer (iht-inc.com)", + "group_name": "rancoz", + "discovered": "2023-07-07 20:42:58.387177" + }, + { + "post_title": "ewewwe", + "group_name": "mallox", + "discovered": "2023-07-08 12:51:11.039719" + }, + { + "post_title": "Tracker de Colombia SAS", + "group_name": "medusa", + "discovered": "2023-07-08 16:35:51.169106" + }, + { + "post_title": "Peroni Pompe", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:01.607713" + }, + { + "post_title": "Jacklyn Dawson Solicitors", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:03.665642" + }, + { + "post_title": "The Travel Network Group", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:04.399882" + }, + { + "post_title": "UnitedLex.com", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:05.107201" + }, + { + "post_title": "Nabtesco Motion Control", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:05.772620" + }, + { + "post_title": "Montgomery General Hospital", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:06.501881" + }, + { + "post_title": "Garden Hotel NARITA", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:07.123196" + }, + { + "post_title": "JANUS Research Group", + "group_name": "donutleaks", + "discovered": "2023-07-09 00:44:07.839051" + }, + { + "post_title": "www.chrn.be", + "group_name": "noescape", + "discovered": "2023-07-09 00:44:12.116425" + }, + { + "post_title": "www.castec.com", + "group_name": "noescape", + "discovered": "2023-07-09 00:44:12.820934" + }, + { + "post_title": "www.doesburg-comp.nl", + "group_name": "noescape", + "discovered": "2023-07-09 00:44:13.431632" + }, + { + "post_title": "Atherfield Medical Service", + "group_name": "knight", + "discovered": "2023-07-09 00:44:14.056111" + }, + { + "post_title": "ALTARGRUP", + "group_name": "knight", + "discovered": "2023-07-09 00:44:14.759068" + }, + { + "post_title": "Guatemala Military Intelligence Directorate", + "group_name": "knight", + "discovered": "2023-07-09 00:44:15.549041" + }, + { + "post_title": "Cabra Consulting Ltd", + "group_name": "8base", + "discovered": "2023-07-09 06:34:12.815105" + }, + { + "post_title": "M****** *****", + "group_name": "bianlian", + "discovered": "2023-07-09 16:34:54.495265" + }, + { + "post_title": "Evergreen Seamless Pipes and Tubes", + "group_name": "bianlian", + "discovered": "2023-07-09 16:34:55.472023" + }, + { + "post_title": "Bunn", + "group_name": "bianlian", + "discovered": "2023-07-09 16:34:56.558979" + }, + { + "post_title": "roys.co.uk", + "group_name": "lockbit3", + "discovered": "2023-07-09 18:37:58.189068" + }, + { + "post_title": "Garuda Indonesia", + "group_name": "mallox", + "discovered": "2023-07-09 18:38:02.343853" + }, + { + "post_title": "BM GROUP POLYTEC S.p.A.", + "group_name": "rhysida", + "discovered": "2023-07-10 00:46:35.062556" + }, + { + "post_title": "leeindustries.com", + "group_name": "lockbit3", + "discovered": "2023-07-10 03:01:02.660873" + }, + { + "post_title": "Ayuntamiento de Arganda City Council", + "group_name": "rhysida", + "discovered": "2023-07-10 10:42:25.485238" + }, + { + "post_title": "Hollywood Forever", + "group_name": "rhysida", + "discovered": "2023-07-10 10:42:26.560131" + }, + { + "post_title": "Paris High School", + "group_name": "rhysida", + "discovered": "2023-07-10 10:42:27.395270" + }, + { + "post_title": "Belize Electricity Limited - Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-07-10 16:41:55.279496" + }, + { + "post_title": "Green Diamond", + "group_name": "akira", + "discovered": "2023-07-10 16:42:16.597818" + }, + { + "post_title": "Hamre Schumann Muell er & Larson HSML", + "group_name": "akira", + "discovered": "2023-07-10 18:34:48.317755" + }, + { + "post_title": "Customer Elation - Business Information", + "group_name": "ransomhouse", + "discovered": "2023-07-10 22:36:37.326957" + }, + { + "post_title": "gis4.addison-il", + "group_name": "cuba", + "discovered": "2023-07-11 08:42:57.947370" + }, + { + "post_title": "Motor Components, LLC", + "group_name": "8base", + "discovered": "2023-07-11 08:43:17.764082" + }, + { + "post_title": "Citelis Mobility", + "group_name": "8base", + "discovered": "2023-07-11 08:43:18.547722" + }, + { + "post_title": "Advanced Fiberglass Industries", + "group_name": "8base", + "discovered": "2023-07-11 08:43:19.717646" + }, + { + "post_title": "Danbury Public Schools", + "group_name": "8base", + "discovered": "2023-07-11 08:43:20.729168" + }, + { + "post_title": "Kansas medical center LLC", + "group_name": "8base", + "discovered": "2023-07-11 08:43:21.558349" + }, + { + "post_title": "Weitkamp · Hirsch and Kollegen Steuerberatungsgesellschaft mbH", + "group_name": "8base", + "discovered": "2023-07-11 08:43:22.259889" + }, + { + "post_title": "Pesquera Diamante S.A.", + "group_name": "8base", + "discovered": "2023-07-11 08:43:22.982805" + }, + { + "post_title": "panoramaeyecare.com", + "group_name": "lockbit3", + "discovered": "2023-07-11 10:50:04.349293" + }, + { + "post_title": "microport.com", + "group_name": "qilin", + "discovered": "2023-07-11 12:39:14.187854" + }, + { + "post_title": "A123 Systems", + "group_name": "akira", + "discovered": "2023-07-11 14:34:52.201998" + }, + { + "post_title": "nipun", + "group_name": "stormous", + "discovered": "2023-07-11 16:36:08.820234" + }, + { + "post_title": "mambo", + "group_name": "stormous", + "discovered": "2023-07-11 16:36:09.838701" + }, + { + "post_title": "Murfreesboro Medical Clinic", + "group_name": "bianlian", + "discovered": "2023-07-11 16:36:18.866974" + }, + { + "post_title": "www.protactics.com.co", + "group_name": "noescape", + "discovered": "2023-07-11 22:34:32.727764" + }, + { + "post_title": "www.bettersystem.co.th", + "group_name": "qilin", + "discovered": "2023-07-12 10:35:19.442739" + }, + { + "post_title": "Wright Moore DeHart Dupuis & Hutchinson", + "group_name": "alphv", + "discovered": "2023-07-12 12:44:41.604265" + }, + { + "post_title": "Schmidt Salzman & Mo ran, Ltd", + "group_name": "akira", + "discovered": "2023-07-12 12:44:53.050000" + }, + { + "post_title": "Maruchan Inc", + "group_name": "alphv", + "discovered": "2023-07-12 14:32:19.035642" + }, + { + "post_title": "Amber Court 2020 was hacking. A lot of customers' personal information was stolen.", + "group_name": "alphv", + "discovered": "2023-07-12 14:32:19.973963" + }, + { + "post_title": "Algeiba.com has a critical level of security on its network. Customer and partner data is ", + "group_name": "alphv", + "discovered": "2023-07-12 14:32:20.730455" + }, + { + "post_title": "Eastin Hotel Makkasan Bangkok was hacked. Customers' financial and personal information ha", + "group_name": "alphv", + "discovered": "2023-07-12 14:32:21.466711" + }, + { + "post_title": "Divgi-TTS was hacked. Due to the extreme low level of security, a huge amount of confident", + "group_name": "alphv", + "discovered": "2023-07-12 14:32:22.798280" + }, + { + "post_title": "innodisgroup.com", + "group_name": "noescape", + "discovered": "2023-07-12 16:41:31.348369" + }, + { + "post_title": "Mission Parks", + "group_name": "bianlian", + "discovered": "2023-07-12 18:33:02.993896" + }, + { + "post_title": "Lyon and Healy", + "group_name": "bianlian", + "discovered": "2023-07-12 18:33:03.885099" + }, + { + "post_title": "Henock Construction", + "group_name": "bianlian", + "discovered": "2023-07-12 18:33:04.509000" + }, + { + "post_title": "ATS Infrastructure", + "group_name": "bianlian", + "discovered": "2023-07-12 18:33:05.235799" + }, + { + "post_title": "Tubes", + "group_name": "bianlian", + "discovered": "2023-07-12 18:33:06.005419" + }, + { + "post_title": "affinityhealthservices.ne", + "group_name": "lockbit3", + "discovered": "2023-07-12 22:37:02.384013" + }, + { + "post_title": "Ministry of Energy and Mines (Cuba) \" STORMOUS + GhostSec \"", + "group_name": "stormous", + "discovered": "2023-07-13 06:33:29.825561" + }, + { + "post_title": "Ministry of Foreign Trade \" STORMOUS + GhostSec \"", + "group_name": "stormous", + "discovered": "2023-07-13 06:33:30.560274" + }, + { + "post_title": "Ministerio de Cultura de la Republica de Cuba \" STORMOUS + GhostSec \"", + "group_name": "stormous", + "discovered": "2023-07-13 06:33:31.426669" + }, + { + "post_title": "BTU", + "group_name": "8base", + "discovered": "2023-07-13 06:33:48.248543" + }, + { + "post_title": "ANL Packaging", + "group_name": "8base", + "discovered": "2023-07-13 06:33:49.110860" + }, + { + "post_title": "Dental One Craigieburn", + "group_name": "8base", + "discovered": "2023-07-13 06:33:49.855244" + }, + { + "post_title": "Jadranka Group", + "group_name": "8base", + "discovered": "2023-07-13 06:33:50.713089" + }, + { + "post_title": "Quikcard Solutions Inc.", + "group_name": "8base", + "discovered": "2023-07-13 06:33:51.511393" + }, + { + "post_title": "The Traffic Tech", + "group_name": "8base", + "discovered": "2023-07-13 06:33:52.263167" + }, + { + "post_title": "Telepizza", + "group_name": "8base", + "discovered": "2023-07-13 06:33:52.913158" + }, + { + "post_title": "Blackjewel L.L.C.", + "group_name": "lockbit3", + "discovered": "2023-07-13 14:32:51.103632" + }, + { + "post_title": "Gerber Childrenswear LLC", + "group_name": "akira", + "discovered": "2023-07-13 16:39:37.047683" + }, + { + "post_title": "Snatch News", + "group_name": "snatch", + "discovered": "2023-07-14 03:05:30.019177" + }, + { + "post_title": "Kenya Bureau Of Standards", + "group_name": "rhysida", + "discovered": "2023-07-14 03:05:46.158165" + }, + { + "post_title": "Info Salons", + "group_name": "8base", + "discovered": "2023-07-14 04:43:37.681812" + }, + { + "post_title": "CPA Advisors Group", + "group_name": "8base", + "discovered": "2023-07-14 06:34:43.052128" + }, + { + "post_title": "eyedoc.com.na", + "group_name": "lockbit3", + "discovered": "2023-07-14 10:33:34.888221" + }, + { + "post_title": "www.bsdc.ac.uk", + "group_name": "noescape", + "discovered": "2023-07-14 14:34:54.013765" + }, + { + "post_title": "www.jordanairmotive.com", + "group_name": "noescape", + "discovered": "2023-07-14 14:34:54.591501" + }, + { + "post_title": "Superloop ISP", + "group_name": "knight", + "discovered": "2023-07-14 20:37:25.463403" + }, + { + "post_title": "Chin Hin Group", + "group_name": "alphv", + "discovered": "2023-07-14 22:37:18.387821" + }, + { + "post_title": "Ministry of Energy and Mines (Cuba) \" STORMOUS + GhostSec \"", + "group_name": "stormous", + "discovered": "2023-07-14 22:37:20.551225" + }, + { + "post_title": "Highland Health Systems", + "group_name": "alphv", + "discovered": "2023-07-15 14:33:13.164943" + }, + { + "post_title": "jasper", + "group_name": "stormous", + "discovered": "2023-07-15 14:33:16.151428" + }, + { + "post_title": "energym.co.il", + "group_name": "lockbit3", + "discovered": "2023-07-15 14:33:21.172007" + }, + { + "post_title": "greatlakesmbpm.com", + "group_name": "lockbit3", + "discovered": "2023-07-15 14:33:22.751307" + }, + { + "post_title": "hgc.com.hk", + "group_name": "lockbit3", + "discovered": "2023-07-15 14:33:24.091317" + }, + { + "post_title": "konrad-mr.de", + "group_name": "lockbit3", + "discovered": "2023-07-15 14:33:25.663078" + }, + { + "post_title": "province.namur.be", + "group_name": "lockbit3", + "discovered": "2023-07-15 14:33:28.397540" + }, + { + "post_title": "co.langlade.wi.us", + "group_name": "lockbit3", + "discovered": "2023-07-15 16:37:48.649579" + }, + { + "post_title": "equmedia.es", + "group_name": "lockbit3", + "discovered": "2023-07-15 16:37:50.172651" + }, + { + "post_title": "magnumphotos.com", + "group_name": "lockbit3", + "discovered": "2023-07-15 16:37:53.101620" + }, + { + "post_title": "www.arb.ch", + "group_name": "abyss", + "discovered": "2023-07-16 10:32:04.905332" + }, + { + "post_title": "Baumschlager Hutter Partners - Business Information", + "group_name": "alphv", + "discovered": "2023-07-16 16:36:33.244207" + }, + { + "post_title": "www.stri.se", + "group_name": "abyss", + "discovered": "2023-07-16 18:37:47.315669" + }, + { + "post_title": "selmi.com.br", + "group_name": "lockbit3", + "discovered": "2023-07-16 20:46:23.504054" + }, + { + "post_title": "test.com", + "group_name": "lockbit3", + "discovered": "2023-07-16 20:46:25.613776" + }, + { + "post_title": "Hiberus Tecnología", + "group_name": "bianlian", + "discovered": "2023-07-17 10:58:49.486730" + }, + { + "post_title": "Bitimen exchange", + "group_name": "arvinclub", + "discovered": "2023-07-17 00:51:53.369885" + }, + { + "post_title": "Venture Drilling Supply", + "group_name": "8base", + "discovered": "2023-07-17 12:36:27.428169" + }, + { + "post_title": "Citta Nuova", + "group_name": "rhysida", + "discovered": "2023-07-17 12:36:29.248775" + }, + { + "post_title": "www.tractrad.com", + "group_name": "abyss", + "discovered": "2023-07-17 14:35:44.419422" + }, + { + "post_title": "Cavanaugh, Biggs & Lemon P.A., Attorneys at Law", + "group_name": "alphv", + "discovered": "2023-07-17 16:38:45.085606" + }, + { + "post_title": "hopetech.com", + "group_name": "lockbit3", + "discovered": "2023-07-17 16:38:53.241553" + }, + { + "post_title": "johnreilly.co.uk", + "group_name": "lockbit3", + "discovered": "2023-07-17 16:38:54.478181" + }, + { + "post_title": "Protected: Hidden name", + "group_name": "ransomblog_noname", + "discovered": "2023-07-17 18:39:19.386793" + }, + { + "post_title": "Wasserstrom", + "group_name": "snatch", + "discovered": "2023-07-18 02:57:00.131395" + }, + { + "post_title": "Ningbo Joyson Electronic Corp.", + "group_name": "snatch", + "discovered": "2023-07-18 02:57:00.982134" + }, + { + "post_title": "Seasia Infotech", + "group_name": "snatch", + "discovered": "2023-07-18 02:57:01.654516" + }, + { + "post_title": "CashCall, Inc.", + "group_name": "8base", + "discovered": "2023-07-18 04:39:03.875940" + }, + { + "post_title": "academia21.com", + "group_name": "lockbit3", + "discovered": "2023-07-18 08:35:01.486421" + }, + { + "post_title": "dixiesfed.com", + "group_name": "lockbit3", + "discovered": "2023-07-18 10:40:30.216364" + }, + { + "post_title": "flexity.com", + "group_name": "lockbit3", + "discovered": "2023-07-18 10:40:31.567402" + }, + { + "post_title": "ope.com.na", + "group_name": "lockbit3", + "discovered": "2023-07-18 10:40:34.808668" + }, + { + "post_title": "www.brockhouse.co.uk", + "group_name": "abyss", + "discovered": "2023-07-18 10:40:42.718243" + }, + { + "post_title": "berg-life.com", + "group_name": "lockbit3", + "discovered": "2023-07-18 14:39:42.582811" + }, + { + "post_title": "cotrelec.com", + "group_name": "lockbit3", + "discovered": "2023-07-18 14:39:44.612947" + }, + { + "post_title": "lfcaire.org", + "group_name": "lockbit3", + "discovered": "2023-07-18 14:39:47.705902" + }, + { + "post_title": "suninsurance.com.fj", + "group_name": "lockbit3", + "discovered": "2023-07-18 14:39:50.971169" + }, + { + "post_title": "Nini Collection Ltd (Nini's Jewels)", + "group_name": "medusa", + "discovered": "2023-07-18 14:39:56.165007" + }, + { + "post_title": "Health Springs Medical Center ", + "group_name": "medusa", + "discovered": "2023-07-18 14:39:57.341398" + }, + { + "post_title": "www.girardini.it", + "group_name": "noescape", + "discovered": "2023-07-18 14:40:01.472506" + }, + { + "post_title": "Tampa general hospital", + "group_name": "snatch", + "discovered": "2023-07-18 16:33:16.418702" + }, + { + "post_title": "www.acomen.fr", + "group_name": "noescape", + "discovered": "2023-07-18 16:33:30.917539" + }, + { + "post_title": "KUITS", + "group_name": "alphv", + "discovered": "2023-07-18 20:41:55.296322" + }, + { + "post_title": "The Estée Lauder Companies", + "group_name": "alphv", + "discovered": "2023-07-18 22:45:44.444300" + }, + { + "post_title": "DTD Express ", + "group_name": "medusa", + "discovered": "2023-07-18 22:45:49.507083" + }, + { + "post_title": "VOG", + "group_name": "alphv", + "discovered": "2023-07-19 00:49:01.594267" + }, + { + "post_title": "EA SMITH", + "group_name": "alphv", + "discovered": "2023-07-19 00:49:02.450427" + }, + { + "post_title": "obeidpartners.com", + "group_name": "lockbit3", + "discovered": "2023-07-19 12:38:39.054545" + }, + { + "post_title": "Undisclosed Aerospace Company", + "group_name": "bianlian", + "discovered": "2023-07-19 12:38:43.016710" + }, + { + "post_title": "R***** ********** *******", + "group_name": "bianlian", + "discovered": "2023-07-19 12:38:43.867879" + }, + { + "post_title": "http://www.braintreema.gov", + "group_name": "royal", + "discovered": "2023-07-19 14:34:14.468882" + }, + { + "post_title": "Centennial Management", + "group_name": "play", + "discovered": "2023-07-19 16:34:59.324815" + }, + { + "post_title": "Sea Force IX", + "group_name": "play", + "discovered": "2023-07-19 16:35:00.628685" + }, + { + "post_title": "Cumberland Pharmaceuticals Inc.", + "group_name": "bianlian", + "discovered": "2023-07-19 18:52:35.459671" + }, + { + "post_title": "Woodbine Hospitality", + "group_name": "play", + "discovered": "2023-07-19 18:52:40.459138" + }, + { + "post_title": "ECS Technology Group", + "group_name": "play", + "discovered": "2023-07-19 18:52:41.150523" + }, + { + "post_title": "Fernmoor Homes", + "group_name": "play", + "discovered": "2023-07-19 18:52:41.880152" + }, + { + "post_title": "Kensington Publishing", + "group_name": "play", + "discovered": "2023-07-19 18:52:42.618911" + }, + { + "post_title": "Anesco Ltd", + "group_name": "8base", + "discovered": "2023-07-19 18:52:44.785210" + }, + { + "post_title": "New Braunfels Cardiology", + "group_name": "bianlian", + "discovered": "2023-07-20 08:38:28.940325" + }, + { + "post_title": "Magnolia Steel", + "group_name": "bianlian", + "discovered": "2023-07-20 08:38:30.173503" + }, + { + "post_title": "Hightway Care", + "group_name": "bianlian", + "discovered": "2023-07-20 08:38:30.932064" + }, + { + "post_title": "cityserve-mech.co.uk", + "group_name": "lockbit3", + "discovered": "2023-07-20 10:36:03.582304" + }, + { + "post_title": "Entegra", + "group_name": "alphv", + "discovered": "2023-07-20 12:38:01.694696" + }, + { + "post_title": "Campbell Killin Brittan & Ray LLC", + "group_name": "alphv", + "discovered": "2023-07-20 16:36:05.525967" + }, + { + "post_title": "CANAROPA Inc", + "group_name": "nokoyawa", + "discovered": "2023-07-20 16:36:17.571466" + }, + { + "post_title": "Tampa General Hospital", + "group_name": "nokoyawa", + "discovered": "2023-07-20 16:36:18.305445" + }, + { + "post_title": "Bright Future Electr ic, LLC", + "group_name": "akira", + "discovered": "2023-07-20 18:38:11.932919" + }, + { + "post_title": "www.coriniumcarpets.co.uk", + "group_name": "noescape", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Novobit", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Michigan Production Machining", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Italkraft", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Imagination", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Hawa Sliding Solutions", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "CWS", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "ScanSource", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Confartigianato Federimpresa FC", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Biocair International", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "American Meteorological Society", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Agoravita", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Alberto Couto Alves", + "group_name": "cactus", + "discovered": "2023-07-20 18:38:14.685374" + }, + { + "post_title": "Americold", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:02.127536" + }, + { + "post_title": "Wasserstrom", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:03.027902" + }, + { + "post_title": "Phoenix Taxis", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:03.681605" + }, + { + "post_title": "Rotomail Italia SpA", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:04.321422" + }, + { + "post_title": "Reyes Automotive Group", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:04.978180" + }, + { + "post_title": "Artemide", + "group_name": "cactus", + "discovered": "2023-07-21 00:55:05.805327" + }, + { + "post_title": "plbint.com", + "group_name": "abyss", + "discovered": "2023-07-21 04:37:19.209314" + }, + { + "post_title": "Hirsch Bedner Associates", + "group_name": "alphv", + "discovered": "2023-07-21 08:37:58.254342" + }, + { + "post_title": "CORDELL", + "group_name": "alphv", + "discovered": "2023-07-21 08:38:00.024817" + }, + { + "post_title": "Yamaha Canada Music Ltd", + "group_name": "akira", + "discovered": "2023-07-21 12:41:39.443222" + }, + { + "post_title": "Azimut.it", + "group_name": "alphv", + "discovered": "2023-07-21 20:36:40.354572" + }, + { + "post_title": "Caterham High School", + "group_name": "rhysida", + "discovered": "2023-07-21 20:36:48.329258" + }, + { + "post_title": "Samson Electric", + "group_name": "play", + "discovered": "2023-07-22 12:45:28.068596" + }, + { + "post_title": "Hungarian Investment Promotion Agency Press Release", + "group_name": "monti", + "discovered": "2023-07-22 14:35:26.852999" + }, + { + "post_title": "Siden & Associates Press Release", + "group_name": "monti", + "discovered": "2023-07-22 14:35:27.775814" + }, + { + "post_title": "Chan & Associates", + "group_name": "8base", + "discovered": "2023-07-22 16:42:33.372772" + }, + { + "post_title": "Chan and Associates", + "group_name": "8base", + "discovered": "2023-07-23 04:41:19.625393" + }, + { + "post_title": "THE COLLINS LAW FIRM", + "group_name": "alphv", + "discovered": "2023-07-23 08:34:04.182835" + }, + { + "post_title": "Cafe Britt", + "group_name": "medusa", + "discovered": "2023-07-23 08:34:16.437026" + }, + { + "post_title": "Sun Pain Management", + "group_name": "medusa", + "discovered": "2023-07-23 08:34:17.087150" + }, + { + "post_title": "Cvlan", + "group_name": "knight", + "discovered": "2023-07-23 08:34:21.184402" + }, + { + "post_title": "Pechexport", + "group_name": "knight", + "discovered": "2023-07-23 08:34:21.906723" + }, + { + "post_title": "championgse.com", + "group_name": "lockbit3", + "discovered": "2023-07-23 12:38:56.133520" + }, + { + "post_title": "Jackson Township Police Department and Administration.", + "group_name": "donutleaks", + "discovered": "2023-07-23 12:39:05.685724" + }, + { + "post_title": "Exbon Development, Inc", + "group_name": "8base", + "discovered": "2023-07-23 18:34:55.622991" + }, + { + "post_title": "Stephen F. Austin State University", + "group_name": "rhysida", + "discovered": "2023-07-23 18:34:57.623309" + }, + { + "post_title": "Franklins european bathrooms", + "group_name": "mallox", + "discovered": "2023-07-23 20:39:20.566977" + }, + { + "post_title": "bl----ea", + "group_name": "ragroup", + "discovered": "2023-07-24 06:36:21.500573" + }, + { + "post_title": "ebpsupply.com", + "group_name": "lockbit3", + "discovered": "2023-07-24 08:38:23.608541" + }, + { + "post_title": "EJM Engineered Systems", + "group_name": "8base", + "discovered": "2023-07-24 08:38:36.267587" + }, + { + "post_title": "IRIS Informatique", + "group_name": "rhysida", + "discovered": "2023-07-24 08:38:38.633477" + }, + { + "post_title": "ICT-College", + "group_name": "rhysida", + "discovered": "2023-07-24 08:38:39.442136" + }, + { + "post_title": "dynamite", + "group_name": "stormous", + "discovered": "2023-07-24 16:37:37.614280" + }, + { + "post_title": "El Milagro", + "group_name": "akira", + "discovered": "2023-07-24 16:37:44.150979" + }, + { + "post_title": "Charles & Colvard Lt d.", + "group_name": "akira", + "discovered": "2023-07-24 16:37:44.747140" + }, + { + "post_title": "https://www.bionpharma.com", + "group_name": "blackbasta", + "discovered": "2023-07-24 18:38:39.884632" + }, + { + "post_title": "FERRE BARNIEDO", + "group_name": "play", + "discovered": "2023-07-24 18:38:53.746966" + }, + { + "post_title": "Grupo MH", + "group_name": "play", + "discovered": "2023-07-24 18:38:54.564763" + }, + { + "post_title": "SBM", + "group_name": "akira", + "discovered": "2023-07-24 18:38:56.430021" + }, + { + "post_title": "Primoteq", + "group_name": "play", + "discovered": "2023-07-24 20:35:24.319949" + }, + { + "post_title": "Scharco Elektronik", + "group_name": "play", + "discovered": "2023-07-24 20:35:25.496659" + }, + { + "post_title": "John Mulder Heating & Air Conditioning", + "group_name": "play", + "discovered": "2023-07-24 20:35:26.446726" + }, + { + "post_title": "https://www.zoominfo.com/c/it-luggage-ltd/356677571", + "group_name": "blacksuit", + "discovered": "2023-07-24 20:35:29.893795" + }, + { + "post_title": "NEBRASKALAND", + "group_name": "alphv", + "discovered": "2023-07-25 06:36:48.658477" + }, + { + "post_title": "Republic.bz", + "group_name": "alphv", + "discovered": "2023-07-25 06:36:49.447481" + }, + { + "post_title": "ridgeviewindustries.com", + "group_name": "lockbit3", + "discovered": "2023-07-25 08:34:28.339289" + }, + { + "post_title": "The Sinbad Club", + "group_name": "medusa", + "discovered": "2023-07-25 08:34:34.300981" + }, + { + "post_title": "Becht Engineering", + "group_name": "akira", + "discovered": "2023-07-25 14:38:57.317096" + }, + { + "post_title": "bsb-steuerberatung.de", + "group_name": "blackbasta", + "discovered": "2023-07-25 16:35:39.764661" + }, + { + "post_title": "rampi.com", + "group_name": "noescape", + "discovered": "2023-07-25 16:35:56.091587" + }, + { + "post_title": "BoomData | Data & Analytics Consultancy", + "group_name": "8base", + "discovered": "2023-07-25 18:34:59.402519" + }, + { + "post_title": "CROWD", + "group_name": "8base", + "discovered": "2023-07-25 18:35:00.184818" + }, + { + "post_title": "DV8 Technology Group", + "group_name": "8base", + "discovered": "2023-07-25 18:35:00.924042" + }, + { + "post_title": "FANSIPAN CONSTRUCTION CONSULTANTS CO.,LTD", + "group_name": "8base", + "discovered": "2023-07-25 18:35:01.677110" + }, + { + "post_title": "Kersey & Co", + "group_name": "8base", + "discovered": "2023-07-25 18:35:02.519281" + }, + { + "post_title": "Institut Mensalus S.L.", + "group_name": "8base", + "discovered": "2023-07-25 18:35:03.412946" + }, + { + "post_title": "Miranda Brokerage", + "group_name": "8base", + "discovered": "2023-07-25 18:35:04.297702" + }, + { + "post_title": "Spectra Industrial", + "group_name": "8base", + "discovered": "2023-07-25 18:35:05.147119" + }, + { + "post_title": "de----int", + "group_name": "ragroup", + "discovered": "2023-07-25 20:37:21.102858" + }, + { + "post_title": "Propper International", + "group_name": "moneymessage", + "discovered": "2023-07-26 02:44:33.173923" + }, + { + "post_title": "ANDRADE GUTIERREZ & ZAGOPE", + "group_name": "dunghill_leak", + "discovered": "2023-07-26 02:44:33.915514" + }, + { + "post_title": "Gentex Corporation", + "group_name": "dunghill_leak", + "discovered": "2023-07-26 02:44:34.722929" + }, + { + "post_title": "Sysco Corporation", + "group_name": "dunghill_leak", + "discovered": "2023-07-26 02:44:35.650830" + }, + { + "post_title": "BoomData |Data and Analytics Consultancy", + "group_name": "8base", + "discovered": "2023-07-26 02:44:36.767315" + }, + { + "post_title": "The Big Life group", + "group_name": "rhysida", + "discovered": "2023-07-26 02:44:38.543500" + }, + { + "post_title": "Kersey CO", + "group_name": "8base", + "discovered": "2023-07-26 04:27:52.942561" + }, + { + "post_title": "Kovair Software", + "group_name": "everest", + "discovered": "2023-07-26 10:32:29.005579" + }, + { + "post_title": "Lumberton Independent School District", + "group_name": "rhysida", + "discovered": "2023-07-26 10:32:50.357359" + }, + { + "post_title": "www.addison-electronique.com", + "group_name": "noescape", + "discovered": "2023-07-26 14:36:39.796683" + }, + { + "post_title": "www.beijer.es", + "group_name": "noescape", + "discovered": "2023-07-26 14:36:40.650716" + }, + { + "post_title": "www.ville-chevilly-larue.fr", + "group_name": "noescape", + "discovered": "2023-07-26 14:36:42.063389" + }, + { + "post_title": "CF Assicurazioni", + "group_name": "alphv", + "discovered": "2023-07-26 16:29:15.459020" + }, + { + "post_title": "Globacom Limited", + "group_name": "alphv", + "discovered": "2023-07-26 16:29:16.091596" + }, + { + "post_title": "important information(Knight)", + "group_name": "knight", + "discovered": "2023-07-26 18:32:35.903485" + }, + { + "post_title": "Azimut - Time of publication!", + "group_name": "alphv", + "discovered": "2023-07-26 22:44:29.656990" + }, + { + "post_title": "scmh.org.tw", + "group_name": "lockbit3", + "discovered": "2023-07-27 01:32:43.893218" + }, + { + "post_title": "West Cargo", + "group_name": "mallox", + "discovered": "2023-07-27 01:32:49.150613" + }, + { + "post_title": "Offutt Nord", + "group_name": "akira", + "discovered": "2023-07-27 14:30:55.885770" + }, + { + "post_title": "Morehead State Unive rsity (MSU)", + "group_name": "akira", + "discovered": "2023-07-27 16:37:38.556001" + }, + { + "post_title": "Handi Quilter", + "group_name": "akira", + "discovered": "2023-07-27 16:37:39.449005" + }, + { + "post_title": "Protected: INSULCANA CONTRACTING LTD", + "group_name": "ransomblog_noname", + "discovered": "2023-07-27 22:38:05.955804" + }, + { + "post_title": "McAlester Regional Health Center", + "group_name": "karakurt", + "discovered": "2023-07-28 10:43:19.513459" + }, + { + "post_title": "Rouzbeh Educational Complex", + "group_name": "rhysida", + "discovered": "2023-07-28 10:43:22.656605" + }, + { + "post_title": "Regional Family Medicine", + "group_name": "karakurt", + "discovered": "2023-07-28 12:38:53.831539" + }, + { + "post_title": "Dekko Window Systems", + "group_name": "bianlian", + "discovered": "2023-07-28 16:44:38.049307" + }, + { + "post_title": "CMC Marine", + "group_name": "bianlian", + "discovered": "2023-07-28 16:44:38.882689" + }, + { + "post_title": "Chu De Rennes", + "group_name": "bianlian", + "discovered": "2023-07-28 16:44:39.527653" + }, + { + "post_title": "Frost & Sullivan", + "group_name": "akira", + "discovered": "2023-07-28 18:32:51.444426" + }, + { + "post_title": "ESMOD", + "group_name": "rhysida", + "discovered": "2023-07-28 22:46:27.449780" + }, + { + "post_title": "Alinabal", + "group_name": "snatch", + "discovered": "2023-07-29 00:43:41.387443" + }, + { + "post_title": "Axity", + "group_name": "rhysida", + "discovered": "2023-07-29 12:34:00.640852" + }, + { + "post_title": "N** ******* ******", + "group_name": "bianlian", + "discovered": "2023-07-29 14:33:27.237167" + }, + { + "post_title": "One Health Solutions", + "group_name": "nokoyawa", + "discovered": "2023-07-29 18:39:08.555520" + }, + { + "post_title": "Modern Eyez", + "group_name": "nokoyawa", + "discovered": "2023-07-29 18:39:09.628126" + }, + { + "post_title": "Village Church of Barrington", + "group_name": "nokoyawa", + "discovered": "2023-07-29 18:39:10.452605" + }, + { + "post_title": "AT%26S", + "group_name": "nokoyawa", + "discovered": "2023-07-29 18:39:11.247359" + }, + { + "post_title": "Muncy Homes", + "group_name": "nokoyawa", + "discovered": "2023-07-29 18:39:12.608879" + }, + { + "post_title": "decimal-point-analytics-pvt", + "group_name": "ragroup", + "discovered": "2023-07-30 08:32:57.661050" + }, + { + "post_title": "bluelinea", + "group_name": "ragroup", + "discovered": "2023-07-30 08:32:58.506300" + }, + { + "post_title": "Hungarian Investment Promotion Agency", + "group_name": "monti", + "discovered": "2023-07-30 10:36:37.153794" + }, + { + "post_title": "twv-staderland.de", + "group_name": "lockbit3", + "discovered": "2023-07-30 14:46:32.744613" + }, + { + "post_title": "Contec Systems", + "group_name": "mallox", + "discovered": "2023-07-30 20:41:41.702991" + }, + { + "post_title": "St Landry Parish School Board ", + "group_name": "medusa", + "discovered": "2023-07-31 06:40:48.035001" + }, + { + "post_title": "Ace Micromatic Group", + "group_name": "medusa", + "discovered": "2023-07-31 06:40:48.711710" + }, + { + "post_title": "llombart.de", + "group_name": "lockbit3", + "discovered": "2023-07-31 10:34:15.103625" + }, + { + "post_title": "westoaksschool.co.uk", + "group_name": "lockbit3", + "discovered": "2023-07-31 10:34:19.729022" + }, + { + "post_title": "Retail Information Systems", + "group_name": "bianlian", + "discovered": "2023-07-31 10:34:20.933998" + }, + { + "post_title": "TELNET Redes Inteligentes S.A.", + "group_name": "bianlian", + "discovered": "2023-07-31 10:34:21.978406" + }, + { + "post_title": "hydrex.co.uk", + "group_name": "cuba", + "discovered": "2023-07-31 12:33:58.696309" + }, + { + "post_title": "txmplant.co.uk", + "group_name": "cuba", + "discovered": "2023-07-31 12:33:59.556277" + }, + { + "post_title": "fushimitsu.com", + "group_name": "noescape", + "discovered": "2023-07-31 12:34:20.942441" + }, + { + "post_title": "www.garac.com", + "group_name": "noescape", + "discovered": "2023-07-31 12:34:22.549476" + }, + { + "post_title": "Announcement: Batesville Tool & Die, Inc will be leaked in 3 Days", + "group_name": "ragnarlocker", + "discovered": "2023-07-31 16:39:18.038631" + }, + { + "post_title": "Great Opportunity to monetize your corporate access", + "group_name": "everest", + "discovered": "2023-07-31 18:34:46.187118" + }, + { + "post_title": "nbcc.org", + "group_name": "lockbit3", + "discovered": "2023-07-31 20:34:44.734620" + }, + { + "post_title": "obrelli.it", + "group_name": "lockbit3", + "discovered": "2023-07-31 20:34:45.658608" + }, + { + "post_title": "paretophone.com", + "group_name": "lockbit3", + "discovered": "2023-07-31 20:34:46.565098" + }, + { + "post_title": "newtonit.co.uk", + "group_name": "noescape", + "discovered": "2023-08-01 02:58:41.584698" + }, + { + "post_title": "persingerlaw.com", + "group_name": "lockbit3", + "discovered": "2023-08-01 06:38:52.067745" + }, + { + "post_title": "University of the West of Scotland", + "group_name": "rhysida", + "discovered": "2023-08-01 06:39:02.680665" + }, + { + "post_title": "Jacklett Construction LLC", + "group_name": "8base", + "discovered": "2023-08-01 08:34:05.426796" + }, + { + "post_title": "gerb.bg", + "group_name": "lockbit3", + "discovered": "2023-08-01 10:33:46.056482" + }, + { + "post_title": "Pea River Electric Cooperative", + "group_name": "nokoyawa", + "discovered": "2023-08-01 12:32:23.303250" + }, + { + "post_title": "MBS Equipment TTI", + "group_name": "8base", + "discovered": "2023-08-01 12:32:25.915153" + }, + { + "post_title": "KIMCO Staffing Service", + "group_name": "alphv", + "discovered": "2023-08-01 16:35:23.926857" + }, + { + "post_title": "Parathon by JDA eHea lth Systems", + "group_name": "akira", + "discovered": "2023-08-01 16:35:31.951887" + }, + { + "post_title": "Kogetsu", + "group_name": "mallox", + "discovered": "2023-08-01 18:33:29.362754" + }, + { + "post_title": "Aquatlantis", + "group_name": "play", + "discovered": "2023-08-01 20:34:54.994554" + }, + { + "post_title": "ACTIVA Group", + "group_name": "play", + "discovered": "2023-08-01 20:34:55.913279" + }, + { + "post_title": "Professionnel France", + "group_name": "play", + "discovered": "2023-08-01 20:34:56.716944" + }, + { + "post_title": "Coral Resort", + "group_name": "play", + "discovered": "2023-08-01 20:34:57.492293" + }, + { + "post_title": "DAL-TECH Engineering", + "group_name": "play", + "discovered": "2023-08-01 20:34:58.371246" + }, + { + "post_title": "Birch, Horton, Bittner & Cherot", + "group_name": "play", + "discovered": "2023-08-01 20:34:59.167629" + }, + { + "post_title": "Aapd", + "group_name": "play", + "discovered": "2023-08-01 20:35:00.144344" + }, + { + "post_title": "Garage Living, The Dispenser USA", + "group_name": "play", + "discovered": "2023-08-01 20:35:00.931132" + }, + { + "post_title": "unicorpusa.com", + "group_name": "lockbit3", + "discovered": "2023-08-02 06:36:01.785735" + }, + { + "post_title": "ohiohistory.org", + "group_name": "lockbit3", + "discovered": "2023-08-02 08:36:34.651616" + }, + { + "post_title": "University of Salerno", + "group_name": "rhysida", + "discovered": "2023-08-02 08:36:46.914020" + }, + { + "post_title": "Bickel & Brewer - Press Release", + "group_name": "monti", + "discovered": "2023-08-02 12:33:44.616354" + }, + { + "post_title": "COSI", + "group_name": "karakurt", + "discovered": "2023-08-02 12:33:45.552167" + }, + { + "post_title": "Guido", + "group_name": "akira", + "discovered": "2023-08-02 14:35:41.585972" + }, + { + "post_title": "TGRWA", + "group_name": "akira", + "discovered": "2023-08-02 14:35:42.826695" + }, + { + "post_title": "www.gruposca.com", + "group_name": "noescape", + "discovered": "2023-08-02 16:39:50.914594" + }, + { + "post_title": "Helen F. Dalton Lawyers", + "group_name": "alphv", + "discovered": "2023-08-02 18:37:20.243663" + }, + { + "post_title": "bestmotel.de", + "group_name": "lockbit3", + "discovered": "2023-08-03 00:40:30.875782" + }, + { + "post_title": "constructioncrd.com", + "group_name": "lockbit3", + "discovered": "2023-08-03 00:40:32.462669" + }, + { + "post_title": "fec-corp.com", + "group_name": "lockbit3", + "discovered": "2023-08-03 00:40:34.375083" + }, + { + "post_title": "Tempur Sealy International", + "group_name": "alphv", + "discovered": "2023-08-03 02:43:19.858176" + }, + { + "post_title": "riggsabney", + "group_name": "alphv", + "discovered": "2023-08-03 08:45:03.154099" + }, + { + "post_title": "Rossman Realty Group, inc.", + "group_name": "8base", + "discovered": "2023-08-03 08:45:18.700899" + }, + { + "post_title": "RevZero, Inc", + "group_name": "8base", + "discovered": "2023-08-03 08:45:19.491409" + }, + { + "post_title": "admsc.com", + "group_name": "lockbit3", + "discovered": "2023-08-03 10:30:17.563765" + }, + { + "post_title": "Datawatch Systems", + "group_name": "akira", + "discovered": "2023-08-03 10:30:30.575676" + }, + { + "post_title": "L** **** ****", + "group_name": "bianlian", + "discovered": "2023-08-03 12:36:05.548946" + }, + { + "post_title": "INSULCANA CONTRACTING LTD", + "group_name": "ransomblog_noname", + "discovered": "2023-08-03 12:36:09.026829" + }, + { + "post_title": "Venture General Agen cy", + "group_name": "akira", + "discovered": "2023-08-03 14:42:19.859839" + }, + { + "post_title": "pointpleasant.k12.nj.us", + "group_name": "lockbit3", + "discovered": "2023-08-03 16:40:55.761908" + }, + { + "post_title": "Roman Catholic Diocese of Albany", + "group_name": "nokoyawa", + "discovered": "2023-08-03 16:41:02.739746" + }, + { + "post_title": "Spokane Spinal Sports Care Clinic", + "group_name": "bianlian", + "discovered": "2023-08-03 22:37:25.265149" + }, + { + "post_title": "H********** ********* ***", + "group_name": "bianlian", + "discovered": "2023-08-03 22:37:25.686575" + }, + { + "post_title": "Abatti Companies - Press Release", + "group_name": "monti", + "discovered": "2023-08-04 06:34:42.831422" + }, + { + "post_title": "Ofimedic", + "group_name": "alphv", + "discovered": "2023-08-04 08:33:05.505652" + }, + { + "post_title": "THECHANGE", + "group_name": "alphv", + "discovered": "2023-08-04 08:33:06.411252" + }, + { + "post_title": "Studio Domaine LLC", + "group_name": "nokoyawa", + "discovered": "2023-08-04 10:38:09.948480" + }, + { + "post_title": "ESKA Erich Schweizer", + "group_name": "rhysida", + "discovered": "2023-08-04 12:37:50.706209" + }, + { + "post_title": "SBS Construction", + "group_name": "alphv", + "discovered": "2023-08-04 14:33:07.171318" + }, + { + "post_title": "Grupo Garza Ponce was hacked! Due to a massive company vulnerability, more than 2 TB of se", + "group_name": "alphv", + "discovered": "2023-08-04 14:33:07.942546" + }, + { + "post_title": "Pharmatech Repblica Dominicana was hacked. All sensitive company and customer information ", + "group_name": "alphv", + "discovered": "2023-08-04 14:33:08.681737" + }, + { + "post_title": "Koury Engineering", + "group_name": "akira", + "discovered": "2023-08-04 14:33:23.132342" + }, + { + "post_title": "z", + "group_name": "ragroup", + "discovered": "2023-08-04 18:38:37.645038" + }, + { + "post_title": "p", + "group_name": "ragroup", + "discovered": "2023-08-04 18:38:38.486929" + }, + { + "post_title": "Galicia en Goles", + "group_name": "alphv", + "discovered": "2023-08-04 20:42:04.902212" + }, + { + "post_title": "armortex.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:08.087042" + }, + { + "post_title": "atser.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:08.963596" + }, + { + "post_title": "iqcontrols.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:12.867839" + }, + { + "post_title": "mipe.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:14.724782" + }, + { + "post_title": "scottevest.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:17.162305" + }, + { + "post_title": "tetco.com", + "group_name": "lockbit3", + "discovered": "2023-08-04 20:42:18.989062" + }, + { + "post_title": "Henlaw", + "group_name": "alphv", + "discovered": "2023-08-05 08:33:08.342505" + }, + { + "post_title": "Kovair Software Data Leak", + "group_name": "everest", + "discovered": "2023-08-05 10:36:05.716932" + }, + { + "post_title": "haynesintl.com", + "group_name": "lockbit3", + "discovered": "2023-08-05 12:31:15.530413" + }, + { + "post_title": "Rayden Solicitors", + "group_name": "alphv", + "discovered": "2023-08-05 16:31:30.484083" + }, + { + "post_title": "SatCom Marketing", + "group_name": "8base", + "discovered": "2023-08-06 04:38:12.134957" + }, + { + "post_title": "premierbpo.com", + "group_name": "alphv", + "discovered": "2023-08-06 06:34:07.819748" + }, + { + "post_title": "Oregon Sports Medicine", + "group_name": "8base", + "discovered": "2023-08-06 06:34:21.435869" + }, + { + "post_title": "IBL", + "group_name": "alphv", + "discovered": "2023-08-06 10:34:38.655202" + }, + { + "post_title": "Delaney Browne Recruitment", + "group_name": "8base", + "discovered": "2023-08-06 14:36:58.526678" + }, + { + "post_title": "varian.com", + "group_name": "lockbit3", + "discovered": "2023-08-07 08:31:30.611701" + }, + { + "post_title": "rvpl.lt", + "group_name": "noescape", + "discovered": "2023-08-07 10:33:52.860747" + }, + { + "post_title": "www.avertronics.com", + "group_name": "noescape", + "discovered": "2023-08-07 10:33:53.585917" + }, + { + "post_title": "Papel Prensa SA", + "group_name": "akira", + "discovered": "2023-08-07 12:34:42.622432" + }, + { + "post_title": "www.kreacta.com", + "group_name": "noescape", + "discovered": "2023-08-07 12:34:45.604446" + }, + { + "post_title": "Räddningstjänsten Vä stra Blekinge", + "group_name": "akira", + "discovered": "2023-08-07 16:36:31.317174" + }, + { + "post_title": "T********", + "group_name": "bianlian", + "discovered": "2023-08-07 20:33:36.418470" + }, + { + "post_title": "G***** *******", + "group_name": "bianlian", + "discovered": "2023-08-07 20:33:37.364362" + }, + { + "post_title": "mercedes-benz.co.th", + "group_name": "qilin", + "discovered": "2023-08-07 22:37:05.055760" + }, + { + "post_title": "CH informatica", + "group_name": "8base", + "discovered": "2023-08-08 04:36:18.431173" + }, + { + "post_title": "Emerson School District", + "group_name": "medusa", + "discovered": "2023-08-08 08:34:16.325560" + }, + { + "post_title": "Magic Micro Computers", + "group_name": "alphv", + "discovered": "2023-08-08 12:42:56.701746" + }, + { + "post_title": "ZESA Holdings", + "group_name": "everest", + "discovered": "2023-08-08 14:33:50.467107" + }, + { + "post_title": "Batesville didn't react on appeal and allows Full Leak", + "group_name": "ragnarlocker", + "discovered": "2023-08-08 20:38:08.476438" + }, + { + "post_title": "unitycouncil.org", + "group_name": "lockbit3", + "discovered": "2023-08-09 08:33:38.964565" + }, + { + "post_title": "www.finitia.net", + "group_name": "abyss", + "discovered": "2023-08-09 08:33:45.664566" + }, + { + "post_title": "independenceia.org", + "group_name": "lockbit3", + "discovered": "2023-08-09 10:32:05.277061" + }, + { + "post_title": "2plan.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 12:33:34.632502" + }, + { + "post_title": "chula.ac.th", + "group_name": "lockbit3", + "discovered": "2023-08-09 12:33:37.100471" + }, + { + "post_title": "etisaleg.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 12:33:38.990242" + }, + { + "post_title": "asfcustomers.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:28.675520" + }, + { + "post_title": "cbcstjohns.co.za", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:29.980454" + }, + { + "post_title": "csem.qc.ca", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:31.545715" + }, + { + "post_title": "el-cerrito.org", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:33.003812" + }, + { + "post_title": "fashions-uk.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:34.624835" + }, + { + "post_title": "janus-engineering.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:36.924672" + }, + { + "post_title": "octoso.de", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:39.660652" + }, + { + "post_title": "ricks-motorcycles.com", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:41.406143" + }, + { + "post_title": "sekuro.com.tr", + "group_name": "lockbit3", + "discovered": "2023-08-09 14:37:42.750384" + }, + { + "post_title": "TIMECO", + "group_name": "akira", + "discovered": "2023-08-09 14:37:50.718957" + }, + { + "post_title": "www.lysd.org", + "group_name": "noescape", + "discovered": "2023-08-09 18:37:03.027709" + }, + { + "post_title": "oneatlas.com", + "group_name": "lockbit3", + "discovered": "2023-08-10 00:44:15.854715" + }, + { + "post_title": "Stockdale Podiatry", + "group_name": "8base", + "discovered": "2023-08-10 08:40:30.151610" + }, + { + "post_title": "United Tractors", + "group_name": "rhysida", + "discovered": "2023-08-10 10:31:19.700736" + }, + { + "post_title": "Optimum Technology", + "group_name": "akira", + "discovered": "2023-08-10 12:35:43.979090" + }, + { + "post_title": "Boson", + "group_name": "akira", + "discovered": "2023-08-10 14:32:22.876074" + }, + { + "post_title": "The Belt Railway Com pany of Chicago", + "group_name": "akira", + "discovered": "2023-08-10 16:34:04.703371" + }, + { + "post_title": "cegedim.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:00.809955" + }, + { + "post_title": "durr.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:00.871211" + }, + { + "post_title": "putnam.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:00.930380" + }, + { + "post_title": "ironbow.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:00.987723" + }, + { + "post_title": "citynational.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.140116" + }, + { + "post_title": "andesaservices.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.231430" + }, + { + "post_title": "stiwa.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.291509" + }, + { + "post_title": "enzo.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.349206" + }, + { + "post_title": "delawarelife.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.408127" + }, + { + "post_title": "navaxx.lu", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.466726" + }, + { + "post_title": "heidelberg.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.524809" + }, + { + "post_title": "landal.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.582362" + }, + { + "post_title": "zurich.com.br", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.640606" + }, + { + "post_title": "aon.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.699458" + }, + { + "post_title": "uhcsr.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.757535" + }, + { + "post_title": "klgates.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.817397" + }, + { + "post_title": "paycor.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.874743" + }, + { + "post_title": "caresource.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.931208" + }, + { + "post_title": "1stsource.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:01.989652" + }, + { + "post_title": "www.pwc.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:02.048215" + }, + { + "post_title": "ey.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:02.105758" + }, + { + "post_title": "paycom.com", + "group_name": "clop", + "discovered": "2023-08-11 12:34:02.164758" + }, + { + "post_title": "Important Updates", + "group_name": "knight", + "discovered": "2023-08-11 12:34:25.081465" + }, + { + "post_title": "Thermenhotel Stoiser", + "group_name": "incransom", + "discovered": "2023-08-11 12:34:25.181087" + }, + { + "post_title": "EAI", + "group_name": "play", + "discovered": "2023-08-11 02:39:26.184843" + }, + { + "post_title": "Algorry Zappia & Associates", + "group_name": "play", + "discovered": "2023-08-11 02:39:27.063233" + }, + { + "post_title": "Top Light", + "group_name": "play", + "discovered": "2023-08-11 02:39:28.125122" + }, + { + "post_title": "zain.com", + "group_name": "lockbit3", + "discovered": "2023-08-11 10:36:32.519945" + }, + { + "post_title": "Rite Technology", + "group_name": "akira", + "discovered": "2023-08-11 12:38:39.682518" + }, + { + "post_title": "arganoInterRel", + "group_name": "alphv", + "discovered": "2023-08-12 04:39:21.264474" + }, + { + "post_title": "**a******", + "group_name": "bianlian", + "discovered": "2023-08-12 06:35:57.630808" + }, + { + "post_title": "Armortex", + "group_name": "bianlian", + "discovered": "2023-08-12 06:35:58.408083" + }, + { + "post_title": "difccourts.ae", + "group_name": "lockbit3", + "discovered": "2023-08-13 08:35:52.444016" + }, + { + "post_title": "meaf.com", + "group_name": "lockbit3", + "discovered": "2023-08-13 08:35:55.452591" + }, + { + "post_title": "roxcel.com.tr", + "group_name": "lockbit3", + "discovered": "2023-08-13 08:35:57.636652" + }, + { + "post_title": "zaun.co.uk", + "group_name": "lockbit3", + "discovered": "2023-08-13 08:36:00.169761" + }, + { + "post_title": "luterkort.se", + "group_name": "lockbit3", + "discovered": "2023-08-13 18:35:57.580799" + }, + { + "post_title": "majan.com", + "group_name": "lockbit3", + "discovered": "2023-08-13 18:36:01.659734" + }, + { + "post_title": "rappenglitz.de", + "group_name": "lockbit3", + "discovered": "2023-08-13 18:36:03.937072" + }, + { + "post_title": "siampremier.co.th", + "group_name": "lockbit3", + "discovered": "2023-08-13 18:36:05.238906" + }, + { + "post_title": "stmarysschool.co.za", + "group_name": "lockbit3", + "discovered": "2023-08-13 18:36:06.385780" + }, + { + "post_title": "Borets (Levare.com) ", + "group_name": "medusa", + "discovered": "2023-08-14 06:41:31.602576" + }, + { + "post_title": "CB Energy Australlia", + "group_name": "medusa", + "discovered": "2023-08-14 06:41:33.352540" + }, + { + "post_title": "Agriloja.pt", + "group_name": "everest", + "discovered": "2023-08-14 10:42:03.004369" + }, + { + "post_title": "Saint Xavier University", + "group_name": "alphv", + "discovered": "2023-08-14 12:35:10.716164" + }, + { + "post_title": "econsult.com", + "group_name": "lockbit3", + "discovered": "2023-08-14 14:33:30.345591" + }, + { + "post_title": "leecorpinc.com", + "group_name": "lockbit3", + "discovered": "2023-08-14 16:31:34.243782" + }, + { + "post_title": "www.brak.de", + "group_name": "noescape", + "discovered": "2023-08-14 16:31:45.062131" + }, + { + "post_title": "www.johnllowery.com", + "group_name": "noescape", + "discovered": "2023-08-14 16:31:45.739878" + }, + { + "post_title": "qbcqatar.com.qa", + "group_name": "lockbit3", + "discovered": "2023-08-14 18:39:16.748676" + }, + { + "post_title": "cadencebank.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:30.017212" + }, + { + "post_title": "encorecapital.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:31.076892" + }, + { + "post_title": "trellisware.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:32.309991" + }, + { + "post_title": "ucla.edu", + "group_name": "clop", + "discovered": "2023-08-14 22:36:33.048865" + }, + { + "post_title": "siemens-energy.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:34.115585" + }, + { + "post_title": "baesman.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:34.910892" + }, + { + "post_title": "stockmanbank.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:36.166720" + }, + { + "post_title": "nortonlifelock.com", + "group_name": "clop", + "discovered": "2023-08-14 22:36:37.013448" + }, + { + "post_title": "Freeport-McMoran - NYSE: FCX", + "group_name": "alphv", + "discovered": "2023-08-14 22:36:46.383789" + }, + { + "post_title": "jhillburn.com", + "group_name": "lockbit3", + "discovered": "2023-08-15 00:48:12.726026" + }, + { + "post_title": "www.verdeil.ch", + "group_name": "noescape", + "discovered": "2023-08-15 00:48:25.284590" + }, + { + "post_title": "Aspect Structural Engineers", + "group_name": "8base", + "discovered": "2023-08-15 04:40:32.767540" + }, + { + "post_title": "ANS", + "group_name": "8base", + "discovered": "2023-08-15 04:40:33.759889" + }, + { + "post_title": "Keystone Insurance Services", + "group_name": "8base", + "discovered": "2023-08-15 04:40:34.331874" + }, + { + "post_title": "ABA Research - Business Information 2", + "group_name": "alphv", + "discovered": "2023-08-15 08:45:37.964453" + }, + { + "post_title": "Postel SpA", + "group_name": "medusa", + "discovered": "2023-08-15 12:34:53.320210" + }, + { + "post_title": "DTD Express", + "group_name": "medusa", + "discovered": "2023-08-15 12:34:54.101029" + }, + { + "post_title": "Recaro", + "group_name": "alphv", + "discovered": "2023-08-15 18:31:37.907563" + }, + { + "post_title": "www.cognizant.com", + "group_name": "clop", + "discovered": "2023-08-15 20:37:02.293740" + }, + { + "post_title": "www.ftria.co.jp", + "group_name": "noescape", + "discovered": "2023-08-15 20:37:34.357210" + }, + { + "post_title": "visionware.ca", + "group_name": "clop", + "discovered": "2023-08-15 22:29:12.539661" + }, + { + "post_title": "westat.com", + "group_name": "clop", + "discovered": "2023-08-15 22:29:13.330026" + }, + { + "post_title": "crowe.com", + "group_name": "clop", + "discovered": "2023-08-15 22:29:14.181458" + }, + { + "post_title": "autozone.com", + "group_name": "clop", + "discovered": "2023-08-15 22:29:14.840058" + }, + { + "post_title": "l8solutions.co.uk", + "group_name": "clop", + "discovered": "2023-08-15 22:29:15.742158" + }, + { + "post_title": "energytransfer.com", + "group_name": "clop", + "discovered": "2023-08-15 22:29:16.571055" + }, + { + "post_title": "netscout.com", + "group_name": "clop", + "discovered": "2023-08-15 22:29:17.456524" + }, + { + "post_title": "ToyotaLift Northeast", + "group_name": "8base", + "discovered": "2023-08-16 06:31:49.294168" + }, + { + "post_title": "Ramtha", + "group_name": "rhysida", + "discovered": "2023-08-16 06:31:52.971736" + }, + { + "post_title": "Optimum Health Solutions", + "group_name": "rhysida", + "discovered": "2023-08-16 10:32:40.338878" + }, + { + "post_title": "Hemmink", + "group_name": "incransom", + "discovered": "2023-08-16 10:32:41.653481" + }, + { + "post_title": "CORDELLCORDELL", + "group_name": "alphv", + "discovered": "2023-08-16 12:44:04.707012" + }, + { + "post_title": "* *i***", + "group_name": "bianlian", + "discovered": "2023-08-16 14:35:54.884266" + }, + { + "post_title": "radissonhotelsamericas.com", + "group_name": "clop", + "discovered": "2023-08-16 16:29:50.202555" + }, + { + "post_title": "Tally Energy Service s", + "group_name": "akira", + "discovered": "2023-08-16 16:30:14.236508" + }, + { + "post_title": "Cequint", + "group_name": "akira", + "discovered": "2023-08-16 18:28:53.613797" + }, + { + "post_title": "https://www.schwaelbchen-molkerei.de", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:24:55.884106" + }, + { + "post_title": "https://www.heilmann-ag.de", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:24:58.101293" + }, + { + "post_title": "https://www.iconcreativestudio.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:24:58.666424" + }, + { + "post_title": "https://www.cvoantwerpen.be", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:24:59.381217" + }, + { + "post_title": "https://www.autohaus-ebert.de", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:24:59.980361" + }, + { + "post_title": "https://www.kraiburg-austria.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:00.747443" + }, + { + "post_title": "https://www.seoulsemicon.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:01.356531" + }, + { + "post_title": "https://bob-automotive.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:01.912623" + }, + { + "post_title": "http://www.coswell.biz", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:02.732172" + }, + { + "post_title": "https://www.epicure.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:03.427931" + }, + { + "post_title": "https://dillonsupply.com", + "group_name": "metaencryptor", + "discovered": "2023-08-17 02:25:04.089024" + }, + { + "post_title": "The Clifton Public S chools", + "group_name": "akira", + "discovered": "2023-08-17 10:25:04.618325" + }, + { + "post_title": "sfjazz.org", + "group_name": "lockbit3", + "discovered": "2023-08-17 11:28:15.966382" + }, + { + "post_title": "smart-swgcrc.org", + "group_name": "lockbit3", + "discovered": "2023-08-17 11:28:17.070774" + }, + { + "post_title": "Camino Nuevo Charter Academy", + "group_name": "akira", + "discovered": "2023-08-17 11:28:29.082268" + }, + { + "post_title": "www.twintowerstrading.com", + "group_name": "blackbasta", + "discovered": "2023-08-17 12:30:15.233553" + }, + { + "post_title": "https://www.synquestlabs.com", + "group_name": "blackbasta", + "discovered": "2023-08-17 12:30:16.143238" + }, + { + "post_title": "www.venauto.nl", + "group_name": "blackbasta", + "discovered": "2023-08-17 12:30:17.986598" + }, + { + "post_title": "www.deutsche-leasing.com", + "group_name": "blackbasta", + "discovered": "2023-08-17 12:30:18.992386" + }, + { + "post_title": "www.alliancesolutionsgrp.com", + "group_name": "blackbasta", + "discovered": "2023-08-17 12:30:19.832319" + }, + { + "post_title": "kriegerklatt.com", + "group_name": "lockbit3", + "discovered": "2023-08-17 12:30:25.644170" + }, + { + "post_title": "mybps.us", + "group_name": "lockbit3", + "discovered": "2023-08-17 12:30:27.556278" + }, + { + "post_title": "umassmed.edu", + "group_name": "clop", + "discovered": "2023-08-17 13:29:07.010280" + }, + { + "post_title": "vrm.de", + "group_name": "clop", + "discovered": "2023-08-17 13:29:08.492802" + }, + { + "post_title": "ricohacumen.com", + "group_name": "clop", + "discovered": "2023-08-17 13:29:09.261630" + }, + { + "post_title": "emerson.com", + "group_name": "clop", + "discovered": "2023-08-17 13:29:11.469033" + }, + { + "post_title": "RIMSS", + "group_name": "akira", + "discovered": "2023-08-17 13:29:32.652184" + }, + { + "post_title": "sgl.co.th", + "group_name": "lockbit3", + "discovered": "2023-08-17 15:26:24.740626" + }, + { + "post_title": "Agriloja.pt demo-leak", + "group_name": "everest", + "discovered": "2023-08-17 16:26:34.311432" + }, + { + "post_title": "umchealth.com", + "group_name": "lockbit3", + "discovered": "2023-08-17 19:26:20.692883" + }, + { + "post_title": "www.contact121.com.au", + "group_name": "noescape", + "discovered": "2023-08-17 23:32:52.799858" + }, + { + "post_title": "www.auda.org.au", + "group_name": "noescape", + "discovered": "2023-08-18 01:44:17.752719" + }, + { + "post_title": "mitchcointernational.com", + "group_name": "lockbit3", + "discovered": "2023-08-18 11:27:00.179482" + }, + { + "post_title": "tedpella.com", + "group_name": "lockbit3", + "discovered": "2023-08-18 11:27:02.767433" + }, + { + "post_title": "genericon.at", + "group_name": "clop", + "discovered": "2023-08-18 20:31:37.989402" + }, + { + "post_title": "brault.us", + "group_name": "clop", + "discovered": "2023-08-18 20:31:38.502331" + }, + { + "post_title": "cuanswers.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:39.159656" + }, + { + "post_title": "oekk.ch", + "group_name": "clop", + "discovered": "2023-08-18 20:31:39.803060" + }, + { + "post_title": "bankers-bank.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:40.355710" + }, + { + "post_title": "schnabel-eng.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:41.085103" + }, + { + "post_title": "shutterfly.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:41.851063" + }, + { + "post_title": "aspentech.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:42.472801" + }, + { + "post_title": "tgidirect", + "group_name": "clop", + "discovered": "2023-08-18 20:31:43.232574" + }, + { + "post_title": "honeywell.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:43.966262" + }, + { + "post_title": "agilysys.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:44.858647" + }, + { + "post_title": "tomtom.com", + "group_name": "clop", + "discovered": "2023-08-18 20:31:45.990272" + }, + { + "post_title": "Oneonline", + "group_name": "play", + "discovered": "2023-08-18 20:32:03.798294" + }, + { + "post_title": "Legends Limousine", + "group_name": "play", + "discovered": "2023-08-18 20:32:04.819497" + }, + { + "post_title": "Bolton Group", + "group_name": "play", + "discovered": "2023-08-18 20:32:05.819329" + }, + { + "post_title": "Stanford Transportation Inc", + "group_name": "play", + "discovered": "2023-08-18 20:32:07.106013" + }, + { + "post_title": "BTC Power", + "group_name": "play", + "discovered": "2023-08-18 20:32:07.795555" + }, + { + "post_title": "aplusfcu.org", + "group_name": "clop", + "discovered": "2023-08-18 21:38:30.019032" + }, + { + "post_title": "umsystem.edu", + "group_name": "clop", + "discovered": "2023-08-18 21:38:30.627914" + }, + { + "post_title": "umpquabank.com", + "group_name": "clop", + "discovered": "2023-08-18 21:38:31.368454" + }, + { + "post_title": "marti.com", + "group_name": "clop", + "discovered": "2023-08-18 21:38:32.031895" + }, + { + "post_title": "pragroup.no", + "group_name": "clop", + "discovered": "2023-08-18 21:38:32.874423" + }, + { + "post_title": "eastwestbank.com", + "group_name": "clop", + "discovered": "2023-08-18 21:38:33.621066" + }, + { + "post_title": "powerfi.org", + "group_name": "clop", + "discovered": "2023-08-18 21:38:34.176946" + }, + { + "post_title": "Miami Management", + "group_name": "play", + "discovered": "2023-08-18 21:38:57.109770" + }, + { + "post_title": "DSA Law Pty Ltd", + "group_name": "play", + "discovered": "2023-08-18 21:38:58.645349" + }, + { + "post_title": "ABS Auto Auctions", + "group_name": "play", + "discovered": "2023-08-18 21:38:59.417615" + }, + { + "post_title": "Sabalan Azmayesh", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:03.438552" + }, + { + "post_title": "Parsian Bitumen", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:04.654818" + }, + { + "post_title": "Draje food industrial group", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:05.349326" + }, + { + "post_title": "seaside-kish co", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:06.475796" + }, + { + "post_title": "Padena Factory", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:07.237604" + }, + { + "post_title": "150k sib360 Database", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:08.008050" + }, + { + "post_title": "Haraz dairy ", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:08.704308" + }, + { + "post_title": "hamyari Shahrdari golestan", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:09.467607" + }, + { + "post_title": "AFTA Isfahan", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:10.279876" + }, + { + "post_title": "Bitimen", + "group_name": "arvinclub", + "discovered": "2023-08-19 08:28:11.081614" + }, + { + "post_title": "Municipality of Ferrara", + "group_name": "rhysida", + "discovered": "2023-08-19 08:28:37.146993" + }, + { + "post_title": "National Institute of Social Services for Retirees and Pensioners", + "group_name": "rhysida", + "discovered": "2023-08-19 09:30:47.468554" + }, + { + "post_title": "macuspana.gob.mx", + "group_name": "lockbit3", + "discovered": "2023-08-19 10:29:31.347056" + }, + { + "post_title": "phitoformulas.com.br", + "group_name": "lockbit3", + "discovered": "2023-08-19 10:29:33.361543" + }, + { + "post_title": "s3groupltd.com", + "group_name": "lockbit3", + "discovered": "2023-08-19 13:30:02.664992" + }, + { + "post_title": "goldmedalbakery", + "group_name": "cuba", + "discovered": "2023-08-19 15:30:43.186449" + }, + { + "post_title": "Sartrouville France", + "group_name": "medusa", + "discovered": "2023-08-19 21:45:51.016445" + }, + { + "post_title": "The International Civil Defense Organization", + "group_name": "medusa", + "discovered": "2023-08-19 21:45:51.528794" + }, + { + "post_title": "Novi Pazar put ad", + "group_name": "medusa", + "discovered": "2023-08-19 21:45:52.186965" + }, + { + "post_title": "cloudtopoffice.com", + "group_name": "lockbit3", + "discovered": "2023-08-20 08:38:42.279315" + }, + { + "post_title": "cochraninc.com", + "group_name": "lockbit3", + "discovered": "2023-08-20 08:38:43.488286" + }, + { + "post_title": "equip-reuse.com", + "group_name": "lockbit3", + "discovered": "2023-08-20 08:38:44.780425" + }, + { + "post_title": "hallbergengineering.com", + "group_name": "lockbit3", + "discovered": "2023-08-20 12:35:00.121220" + }, + { + "post_title": "gesa.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:40.801407" + }, + { + "post_title": "palig.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:41.547395" + }, + { + "post_title": "nuance.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:42.448884" + }, + { + "post_title": "cncbinternational.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:43.263305" + }, + { + "post_title": "bostonglobe.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:44.180480" + }, + { + "post_title": "arburg.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:44.887911" + }, + { + "post_title": "icsystem.com", + "group_name": "clop", + "discovered": "2023-08-20 21:22:45.783424" + }, + { + "post_title": "Seiko Group Corporation", + "group_name": "alphv", + "discovered": "2023-08-21 06:24:39.453930" + }, + { + "post_title": "Davidoff Hutcher & Citron", + "group_name": "alphv", + "discovered": "2023-08-21 09:28:16.988089" + }, + { + "post_title": "datasite.com", + "group_name": "clop", + "discovered": "2023-08-21 11:29:36.938195" + }, + { + "post_title": "leggett.com", + "group_name": "clop", + "discovered": "2023-08-21 11:29:37.968767" + }, + { + "post_title": "uga.edu", + "group_name": "clop", + "discovered": "2023-08-21 11:29:38.891582" + }, + { + "post_title": "316fiduciaries.com", + "group_name": "clop", + "discovered": "2023-08-21 11:29:39.669917" + }, + { + "post_title": "careservicesllc.com", + "group_name": "clop", + "discovered": "2023-08-21 11:29:40.418233" + }, + { + "post_title": "Department of Defence South African", + "group_name": "snatch", + "discovered": "2023-08-21 13:30:03.913044" + }, + { + "post_title": "proskauer.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:52.136875" + }, + { + "post_title": "abbvie.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:53.117510" + }, + { + "post_title": "se.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:53.978997" + }, + { + "post_title": "msamlin.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:54.960039" + }, + { + "post_title": "werum.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:55.698589" + }, + { + "post_title": "cbeservices.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:57.349948" + }, + { + "post_title": "emsshi.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:58.215081" + }, + { + "post_title": "creelighting.com", + "group_name": "clop", + "discovered": "2023-08-21 18:26:59.247161" + }, + { + "post_title": "skillsoft.com", + "group_name": "clop", + "discovered": "2023-08-21 18:27:00.233115" + }, + { + "post_title": "scu.edu", + "group_name": "clop", + "discovered": "2023-08-21 18:27:03.028943" + }, + { + "post_title": "TRIUNE TECHNOFAB PRIVATE LIMITED WAS HACKED", + "group_name": "alphv", + "discovered": "2023-08-21 19:25:23.944067" + }, + { + "post_title": "apdparcel.com.au", + "group_name": "lockbit3", + "discovered": "2023-08-21 19:25:28.569710" + }, + { + "post_title": "Department of Defence South African (DARPA)", + "group_name": "snatch", + "discovered": "2023-08-21 20:29:56.190379" + }, + { + "post_title": "www.influencecommunication.com", + "group_name": "noescape", + "discovered": "2023-08-21 23:29:33.379533" + }, + { + "post_title": "www.softverk.co.kr", + "group_name": "noescape", + "discovered": "2023-08-21 23:29:34.322936" + }, + { + "post_title": "www.fytisa.com", + "group_name": "noescape", + "discovered": "2023-08-21 23:29:35.035377" + }, + { + "post_title": "https://www.heidelbergmaterials.com", + "group_name": "blackbasta", + "discovered": "2023-08-22 08:31:03.915982" + }, + { + "post_title": "NE-BIC", + "group_name": "alphv", + "discovered": "2023-08-22 12:30:31.518468" + }, + { + "post_title": "Atlantic Federal Credit Union", + "group_name": "alphv", + "discovered": "2023-08-22 13:28:22.683716" + }, + { + "post_title": "Sirius Computer Solutions", + "group_name": "alphv", + "discovered": "2023-08-22 13:28:23.671628" + }, + { + "post_title": "stockwellharris.com", + "group_name": "lockbit3", + "discovered": "2023-08-22 21:23:29.389256" + }, + { + "post_title": "A???? F??????????? Ltd", + "group_name": "play", + "discovered": "2023-08-22 21:23:34.100046" + }, + { + "post_title": "sti company", + "group_name": "arvinclub", + "discovered": "2023-08-23 07:29:33.067549" + }, + { + "post_title": "norgren.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:22.275456" + }, + { + "post_title": "ciena.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:22.783820" + }, + { + "post_title": "kyburzdruck.ch", + "group_name": "clop", + "discovered": "2023-08-23 12:28:23.262738" + }, + { + "post_title": "unitedregional.org", + "group_name": "clop", + "discovered": "2023-08-23 12:28:24.180922" + }, + { + "post_title": "tdecu.org", + "group_name": "clop", + "discovered": "2023-08-23 12:28:24.859538" + }, + { + "post_title": "jackson.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:26.889875" + }, + { + "post_title": "starmountlife.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:27.746163" + }, + { + "post_title": "kotaklife.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:28.460533" + }, + { + "post_title": "kirkland.com", + "group_name": "clop", + "discovered": "2023-08-23 12:28:29.194932" + }, + { + "post_title": "mcnamaradrass.com", + "group_name": "lockbit3", + "discovered": "2023-08-23 12:28:45.298575" + }, + { + "post_title": "decrolyamericano.edu.gt", + "group_name": "lockbit3", + "discovered": "2023-08-23 13:29:14.820945" + }, + { + "post_title": "sapiens.com", + "group_name": "clop", + "discovered": "2023-08-23 14:26:33.929173" + }, + { + "post_title": "enstargroup.com", + "group_name": "clop", + "discovered": "2023-08-23 14:26:34.846191" + }, + { + "post_title": "cpiai.com", + "group_name": "clop", + "discovered": "2023-08-23 14:26:35.660594" + }, + { + "post_title": "digitalinsight.no", + "group_name": "clop", + "discovered": "2023-08-23 14:26:36.479144" + }, + { + "post_title": "fisglobal.com", + "group_name": "clop", + "discovered": "2023-08-23 14:26:37.368145" + }, + { + "post_title": "hornbeckoffshore.com", + "group_name": "clop", + "discovered": "2023-08-23 14:26:38.253090" + }, + { + "post_title": "clicksgroup.co.za", + "group_name": "clop", + "discovered": "2023-08-23 14:26:39.470973" + }, + { + "post_title": "IMS Computer Solutions", + "group_name": "alphv", + "discovered": "2023-08-23 16:29:29.702130" + }, + { + "post_title": "iledefrance-nature.fr", + "group_name": "lockbit3", + "discovered": "2023-08-23 22:23:56.675346" + }, + { + "post_title": "newsupri.com.br", + "group_name": "lockbit3", + "discovered": "2023-08-23 22:23:59.231047" + }, + { + "post_title": "qintess.com", + "group_name": "lockbit3", + "discovered": "2023-08-23 22:24:00.906086" + }, + { + "post_title": "Bahamas Medical & Surgical Supplies", + "group_name": "8base", + "discovered": "2023-08-24 06:28:57.711545" + }, + { + "post_title": "The Law Offices of Steven H. Heisler", + "group_name": "8base", + "discovered": "2023-08-24 07:30:50.330852" + }, + { + "post_title": "Kevills Solicitors", + "group_name": "8base", + "discovered": "2023-08-24 07:30:51.191812" + }, + { + "post_title": "Mil-Ken Travel", + "group_name": "8base", + "discovered": "2023-08-24 07:30:52.266996" + }, + { + "post_title": "Royal Oak Pet Clinic", + "group_name": "8base", + "discovered": "2023-08-24 07:30:52.991241" + }, + { + "post_title": "Hoosick Falls Central School District", + "group_name": "8base", + "discovered": "2023-08-24 07:30:53.814559" + }, + { + "post_title": "Constellation Kidney Group", + "group_name": "bianlian", + "discovered": "2023-08-24 10:34:44.937290" + }, + { + "post_title": "C****** *******", + "group_name": "bianlian", + "discovered": "2023-08-24 10:34:45.581678" + }, + { + "post_title": "A**** ***** ***", + "group_name": "bianlian", + "discovered": "2023-08-24 10:34:46.194977" + }, + { + "post_title": "Ontellus", + "group_name": "blackbyte", + "discovered": "2023-08-24 12:28:59.544238" + }, + { + "post_title": "Bahamas Medical and Surgical Supplies", + "group_name": "8base", + "discovered": "2023-08-24 13:28:45.474803" + }, + { + "post_title": "Groupe Marchand Architecture & Design Inc", + "group_name": "alphv", + "discovered": "2023-08-24 15:29:57.431785" + }, + { + "post_title": "Storm Tight Windows", + "group_name": "alphv", + "discovered": "2023-08-24 17:48:16.980292" + }, + { + "post_title": "Edmonds School Distr ict", + "group_name": "akira", + "discovered": "2023-08-24 17:48:33.619224" + }, + { + "post_title": "fiscdp.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:03.322850" + }, + { + "post_title": "kernagency.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:04.051553" + }, + { + "post_title": "uoflhealth.org", + "group_name": "clop", + "discovered": "2023-08-24 20:23:04.685546" + }, + { + "post_title": "delarue.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:05.414487" + }, + { + "post_title": "wolterskluwer.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:06.094278" + }, + { + "post_title": "bankwithunited.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:06.825163" + }, + { + "post_title": "neweratech.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:07.889206" + }, + { + "post_title": "transperfect.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:08.479568" + }, + { + "post_title": "quorumfcu.org", + "group_name": "clop", + "discovered": "2023-08-24 20:23:09.139371" + }, + { + "post_title": "merative.com", + "group_name": "clop", + "discovered": "2023-08-24 20:23:09.996179" + }, + { + "post_title": "senacrs.com.br", + "group_name": "lockbit3", + "discovered": "2023-08-25 00:29:58.065902" + }, + { + "post_title": "www.fiocruz.br", + "group_name": "noescape", + "discovered": "2023-08-25 00:30:08.323988" + }, + { + "post_title": "Sydenham Laboratories", + "group_name": "8base", + "discovered": "2023-08-25 05:28:52.534717" + }, + { + "post_title": "FA Foundry", + "group_name": "8base", + "discovered": "2023-08-25 05:28:53.993191" + }, + { + "post_title": "INSTITUTO NACIONAL DE ELECTRIFICACION", + "group_name": "8base", + "discovered": "2023-08-25 05:28:54.800205" + }, + { + "post_title": "SMS-SME was hacked. A huge amount of confidential information was stolen, information of c", + "group_name": "alphv", + "discovered": "2023-08-25 06:25:31.452955" + }, + { + "post_title": "HFH Capital", + "group_name": "8base", + "discovered": "2023-08-25 08:27:43.806865" + }, + { + "post_title": "jackentertainment.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:01.879209" + }, + { + "post_title": "nasco.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:02.419409" + }, + { + "post_title": "clearesult.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:02.949063" + }, + { + "post_title": "radiusgs.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:03.938234" + }, + { + "post_title": "consolenergy.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:04.672747" + }, + { + "post_title": "kaleaero.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:05.349575" + }, + { + "post_title": "sccu.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:07.225752" + }, + { + "post_title": "arvato.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:07.899535" + }, + { + "post_title": "riteaid.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:08.777751" + }, + { + "post_title": "pioneerelectronics.com", + "group_name": "clop", + "discovered": "2023-08-25 16:40:09.626659" + }, + { + "post_title": "Axis Elevators ", + "group_name": "medusa", + "discovered": "2023-08-25 18:59:17.954832" + }, + { + "post_title": "Durham Fasteners", + "group_name": "medusa", + "discovered": "2023-08-25 18:59:18.726324" + }, + { + "post_title": "LEN Italia", + "group_name": "medusa", + "discovered": "2023-08-25 18:59:19.607225" + }, + { + "post_title": "EPF", + "group_name": "alphv", + "discovered": "2023-08-25 19:33:46.681202" + }, + { + "post_title": "Demcointer (Tunisia)", + "group_name": "alphv", + "discovered": "2023-08-25 19:33:48.197977" + }, + { + "post_title": "SMS-SME refused to protect customer and business data", + "group_name": "alphv", + "discovered": "2023-08-25 19:33:49.003594" + }, + { + "post_title": "jhu.edu", + "group_name": "clop", + "discovered": "2023-08-25 22:39:02.288601" + }, + { + "post_title": "sma.de", + "group_name": "clop", + "discovered": "2023-08-25 22:39:03.583279" + }, + { + "post_title": "bam.com.gt", + "group_name": "clop", + "discovered": "2023-08-25 22:39:04.670033" + }, + { + "post_title": "Trimaran Capital Partners", + "group_name": "alphv", + "discovered": "2023-08-25 22:39:15.856008" + }, + { + "post_title": "Alfagomma, Argus Fluidhandling Ltd", + "group_name": "play", + "discovered": "2023-08-25 23:32:28.791141" + }, + { + "post_title": "KLM Laboratories Pvt. Ltd", + "group_name": "8base", + "discovered": "2023-08-26 05:27:16.142807" + }, + { + "post_title": "Varna Packaging", + "group_name": "8base", + "discovered": "2023-08-26 05:27:17.049064" + }, + { + "post_title": "SKYROOT", + "group_name": "8base", + "discovered": "2023-08-26 05:27:17.839150" + }, + { + "post_title": "gipcl.com", + "group_name": "noescape", + "discovered": "2023-08-26 05:27:20.591450" + }, + { + "post_title": "marykay.com", + "group_name": "clop", + "discovered": "2023-08-26 06:40:15.132385" + }, + { + "post_title": "cytomx.com", + "group_name": "clop", + "discovered": "2023-08-26 06:40:15.939772" + }, + { + "post_title": "usg.edu", + "group_name": "clop", + "discovered": "2023-08-26 06:40:16.758911" + }, + { + "post_title": "americannational.com", + "group_name": "clop", + "discovered": "2023-08-26 06:40:19.156388" + }, + { + "post_title": "bcdtravel.com", + "group_name": "clop", + "discovered": "2023-08-26 06:40:19.779374" + }, + { + "post_title": "jprmp.com", + "group_name": "clop", + "discovered": "2023-08-26 06:40:20.539972" + }, + { + "post_title": "fmfcu.org", + "group_name": "clop", + "discovered": "2023-08-26 06:40:21.147823" + }, + { + "post_title": "Community Council of South Central Texas", + "group_name": "8base", + "discovered": "2023-08-26 06:40:49.721108" + }, + { + "post_title": "Fullerton India (SMFG India Credit)", + "group_name": "snatch", + "discovered": "2023-08-26 23:25:27.815336" + }, + { + "post_title": "gripa.org", + "group_name": "clop", + "discovered": "2023-08-27 08:31:17.086851" + }, + { + "post_title": "jti.com", + "group_name": "clop", + "discovered": "2023-08-27 08:31:18.134264" + }, + { + "post_title": "voss.net", + "group_name": "clop", + "discovered": "2023-08-27 08:31:18.939669" + }, + { + "post_title": "ufcu.org", + "group_name": "clop", + "discovered": "2023-08-27 08:31:19.599357" + }, + { + "post_title": "yakult.com.ph", + "group_name": "clop", + "discovered": "2023-08-27 08:31:20.369143" + }, + { + "post_title": "rochester.edu", + "group_name": "clop", + "discovered": "2023-08-27 08:31:21.007167" + }, + { + "post_title": "discovery.com", + "group_name": "clop", + "discovered": "2023-08-27 08:31:21.798011" + }, + { + "post_title": "motherson.com", + "group_name": "clop", + "discovered": "2023-08-27 08:31:22.492429" + }, + { + "post_title": "slb.com", + "group_name": "clop", + "discovered": "2023-08-27 08:31:23.260201" + }, + { + "post_title": "amctheatres.com", + "group_name": "clop", + "discovered": "2023-08-27 08:31:23.906663" + }, + { + "post_title": "Shanghai FRP Research Institute Co., Ltd.", + "group_name": "8base", + "discovered": "2023-08-27 08:31:39.208198" + }, + { + "post_title": "tgidirect.com", + "group_name": "clop", + "discovered": "2023-08-27 18:35:00.686826" + }, + { + "post_title": "cognizant.com", + "group_name": "clop", + "discovered": "2023-08-27 18:35:01.877004" + }, + { + "post_title": "pwc.com", + "group_name": "clop", + "discovered": "2023-08-27 18:35:02.952982" + }, + { + "post_title": "fmgl.com.au", + "group_name": "clop", + "discovered": "2023-08-27 20:37:16.073351" + }, + { + "post_title": "valmet.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:16.750719" + }, + { + "post_title": "notablefrontier.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:17.927728" + }, + { + "post_title": "grace.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:18.769656" + }, + { + "post_title": "prgx.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:19.562726" + }, + { + "post_title": "hess.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:20.168035" + }, + { + "post_title": "mycwt.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:21.024341" + }, + { + "post_title": "pinnacletpa.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:21.707264" + }, + { + "post_title": "repsolsinopecuk.com", + "group_name": "clop", + "discovered": "2023-08-27 20:37:22.292050" + }, + { + "post_title": "grupomartex.com", + "group_name": "lockbit3", + "discovered": "2023-08-28 00:29:19.495403" + }, + { + "post_title": "jhilburn.com", + "group_name": "lockbit3", + "discovered": "2023-08-28 00:29:20.773350" + }, + { + "post_title": "purever.com", + "group_name": "lockbit3", + "discovered": "2023-08-28 00:29:23.717776" + }, + { + "post_title": "Sonabhy.bf", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:18.718771" + }, + { + "post_title": "Notaires.fr", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:18.779620" + }, + { + "post_title": "ALEZZELPOWER.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:18.839684" + }, + { + "post_title": "flamewarestudios.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:18.897049" + }, + { + "post_title": "gsh-cargo.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:18.956054" + }, + { + "post_title": "still95.it", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.013925" + }, + { + "post_title": "INCOBEC", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.071447" + }, + { + "post_title": "imtmro.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.131173" + }, + { + "post_title": "Sbs-Berlin", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.189871" + }, + { + "post_title": "first-resources-ltd", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.250386" + }, + { + "post_title": "binhamoodah.ae", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.312016" + }, + { + "post_title": "Nicer technology", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.375684" + }, + { + "post_title": "ihopmexico.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.434490" + }, + { + "post_title": "stshcpa.com.tw", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.492456" + }, + { + "post_title": "gruppomoba.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.550825" + }, + { + "post_title": "mps-24.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.611163" + }, + { + "post_title": "surapon.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.674798" + }, + { + "post_title": "GRIDINSTALLERS.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.734855" + }, + { + "post_title": "werk33.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.796912" + }, + { + "post_title": "lusis-avocats.com", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.865692" + }, + { + "post_title": "BONI-PASSAU.DE", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:19.966578" + }, + { + "post_title": "Sportlab-srl", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:20.037438" + }, + { + "post_title": "Arus-gmbh", + "group_name": "cloak", + "discovered": "2023-08-28 16:04:20.097693" + }, + { + "post_title": "newtree.com.ar", + "group_name": "qilin", + "discovered": "2023-08-28 10:33:14.380183" + }, + { + "post_title": "Penny Publications", + "group_name": "akira", + "discovered": "2023-08-28 11:35:27.432036" + }, + { + "post_title": "Intertek", + "group_name": "akira", + "discovered": "2023-08-28 11:35:28.577680" + }, + { + "post_title": "Superior Communications", + "group_name": "alphv", + "discovered": "2023-08-28 12:26:46.309444" + }, + { + "post_title": "HealthIndia TPA Services Pvt Ltd", + "group_name": "bianlian", + "discovered": "2023-08-28 12:26:58.127964" + }, + { + "post_title": "Asian Network Pacific Home Care and Hospice", + "group_name": "bianlian", + "discovered": "2023-08-28 12:26:58.864013" + }, + { + "post_title": "Cutler-Smith", + "group_name": "akira", + "discovered": "2023-08-28 12:27:04.558731" + }, + { + "post_title": "Voss Enterprises, Di vvies", + "group_name": "akira", + "discovered": "2023-08-28 12:27:05.526957" + }, + { + "post_title": "Jasper High School", + "group_name": "akira", + "discovered": "2023-08-28 14:28:38.580297" + }, + { + "post_title": "www.iinaba.com", + "group_name": "noescape", + "discovered": "2023-08-28 19:30:18.150773" + }, + { + "post_title": "www.qigroup.com", + "group_name": "noescape", + "discovered": "2023-08-28 20:35:01.186163" + }, + { + "post_title": "dma.us", + "group_name": "clop", + "discovered": "2023-08-28 22:32:36.531733" + }, + { + "post_title": "ventivtech.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:37.300087" + }, + { + "post_title": "bluefin.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:38.042602" + }, + { + "post_title": "esteelauder.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:38.832083" + }, + { + "post_title": "allegiantair.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:39.579249" + }, + { + "post_title": "itt.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:40.327413" + }, + { + "post_title": "jonasfitness.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:41.099847" + }, + { + "post_title": "aa.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:41.717273" + }, + { + "post_title": "rci.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:42.343847" + }, + { + "post_title": "sierrawireless.com", + "group_name": "clop", + "discovered": "2023-08-28 22:32:43.127820" + }, + { + "post_title": "Pierce College", + "group_name": "rhysida", + "discovered": "2023-08-28 23:28:30.546548" + }, + { + "post_title": "kendrion.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 01:48:18.152746" + }, + { + "post_title": "kellyservices.com", + "group_name": "clop", + "discovered": "2023-08-29 08:27:58.200024" + }, + { + "post_title": "hubbell.com", + "group_name": "clop", + "discovered": "2023-08-29 08:27:58.895768" + }, + { + "post_title": "hoermann-gruppe.com", + "group_name": "clop", + "discovered": "2023-08-29 08:27:59.609049" + }, + { + "post_title": "alektum.com", + "group_name": "clop", + "discovered": "2023-08-29 08:28:00.326687" + }, + { + "post_title": "macom.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:24.587717" + }, + { + "post_title": "kalepw.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:25.329597" + }, + { + "post_title": "dataengine.eu", + "group_name": "clop", + "discovered": "2023-08-29 09:36:26.007577" + }, + { + "post_title": "saul.org.uk", + "group_name": "clop", + "discovered": "2023-08-29 09:36:27.351229" + }, + { + "post_title": "cced.com.om", + "group_name": "clop", + "discovered": "2023-08-29 09:36:28.423928" + }, + { + "post_title": "aclara.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:29.007334" + }, + { + "post_title": "quark.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:29.738764" + }, + { + "post_title": "infinigate.ch", + "group_name": "clop", + "discovered": "2023-08-29 09:36:30.447469" + }, + { + "post_title": "softtech.nl", + "group_name": "clop", + "discovered": "2023-08-29 09:36:31.114052" + }, + { + "post_title": "alogent.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:32.008713" + }, + { + "post_title": "convergeone.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:32.664674" + }, + { + "post_title": "amerisave.com", + "group_name": "clop", + "discovered": "2023-08-29 09:36:33.252882" + }, + { + "post_title": "vitesco-technologies.com", + "group_name": "clop", + "discovered": "2023-08-29 11:34:19.017186" + }, + { + "post_title": "barrick.com", + "group_name": "clop", + "discovered": "2023-08-29 11:34:20.025195" + }, + { + "post_title": "desmi.com", + "group_name": "clop", + "discovered": "2023-08-29 11:34:21.083957" + }, + { + "post_title": "cfins.com", + "group_name": "clop", + "discovered": "2023-08-29 11:34:23.075142" + }, + { + "post_title": "compucom.com", + "group_name": "clop", + "discovered": "2023-08-29 11:34:24.017768" + }, + { + "post_title": "PT. Cahaya Benteng Mas", + "group_name": "8base", + "discovered": "2023-08-29 11:34:38.178916" + }, + { + "post_title": "Agriloja pt.3", + "group_name": "everest", + "discovered": "2023-08-29 13:26:05.998130" + }, + { + "post_title": "esprigas.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 13:26:17.459906" + }, + { + "post_title": "Green Diamond Resour ce", + "group_name": "akira", + "discovered": "2023-08-29 14:29:55.966975" + }, + { + "post_title": "Forsyth County, GA", + "group_name": "alphv", + "discovered": "2023-08-29 15:27:16.199152" + }, + { + "post_title": "carolfoxassociates.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:15.495812" + }, + { + "post_title": "cloverbrook.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:17.144624" + }, + { + "post_title": "cm.gov.nc.tr", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:17.982401" + }, + { + "post_title": "distribuidoradavidsa.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:19.597579" + }, + { + "post_title": "fimadev.fr", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:21.422771" + }, + { + "post_title": "immoselekt.be", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:23.374780" + }, + { + "post_title": "younghomes.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 18:33:29.724814" + }, + { + "post_title": "casa-andina.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:00.266065" + }, + { + "post_title": "greenside-sch.org", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:02.331216" + }, + { + "post_title": "mergerecords.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:04.527929" + }, + { + "post_title": "renaultinantwerpen.be", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:06.126418" + }, + { + "post_title": "ukseung.co.kr", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:07.916928" + }, + { + "post_title": "wkclawfirm.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 19:27:08.878564" + }, + { + "post_title": "beniculturali.it", + "group_name": "lockbit3", + "discovered": "2023-08-29 21:35:57.243294" + }, + { + "post_title": "jamaicainn.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 21:36:00.509349" + }, + { + "post_title": "sherwin-electric.com", + "group_name": "lockbit3", + "discovered": "2023-08-29 21:36:03.570610" + }, + { + "post_title": "uprepschool.org", + "group_name": "lockbit3", + "discovered": "2023-08-29 21:36:05.126958" + }, + { + "post_title": "hallmarkchannel.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:15.527906" + }, + { + "post_title": "arrow.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:16.683345" + }, + { + "post_title": "ajoomal.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:17.427468" + }, + { + "post_title": "drydocks.gov.ae", + "group_name": "clop", + "discovered": "2023-08-29 22:29:18.125048" + }, + { + "post_title": "hillrom.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:18.998526" + }, + { + "post_title": "pro2col.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:20.006791" + }, + { + "post_title": "encoreanywhere.com", + "group_name": "clop", + "discovered": "2023-08-29 22:29:20.842681" + }, + { + "post_title": "amf.se", + "group_name": "clop", + "discovered": "2023-08-29 22:29:21.625391" + }, + { + "post_title": "orau.org", + "group_name": "clop", + "discovered": "2023-08-29 22:29:22.320611" + }, + { + "post_title": "www.yxzg.net", + "group_name": "noescape", + "discovered": "2023-08-30 00:31:54.026429" + }, + { + "post_title": "Petkus Brothers", + "group_name": "8base", + "discovered": "2023-08-30 04:28:18.753205" + }, + { + "post_title": "PRIDE GLOBAL CONSULTING SL", + "group_name": "8base", + "discovered": "2023-08-30 04:28:19.410358" + }, + { + "post_title": "www.pasqualebruni.com", + "group_name": "noescape", + "discovered": "2023-08-30 04:28:22.397714" + }, + { + "post_title": "Felling Trailers, Inc.", + "group_name": "lorenz", + "discovered": "2023-08-30 08:42:04.463003" + }, + { + "post_title": "Skynet", + "group_name": "medusa", + "discovered": "2023-08-30 09:28:32.845782" + }, + { + "post_title": "Aranui Cruises", + "group_name": "medusa", + "discovered": "2023-08-30 09:28:33.534890" + }, + { + "post_title": "Borets (Levare.com)", + "group_name": "medusa", + "discovered": "2023-08-30 09:28:34.506927" + }, + { + "post_title": "lhvisionclinic.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 10:34:26.600317" + }, + { + "post_title": "Brooklyn Premier Orthopedics", + "group_name": "alphv", + "discovered": "2023-08-30 13:32:10.538217" + }, + { + "post_title": "Renton School Distri ct", + "group_name": "akira", + "discovered": "2023-08-30 13:32:23.685385" + }, + { + "post_title": "texline-global.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 16:33:59.632581" + }, + { + "post_title": "O'Brien Steel Servic e", + "group_name": "akira", + "discovered": "2023-08-30 16:34:05.684142" + }, + { + "post_title": "lamaisonmercier.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 20:36:23.450335" + }, + { + "post_title": "acolea.org", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:47.277812" + }, + { + "post_title": "alpepipesystems.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:48.081892" + }, + { + "post_title": "annals.edu.sg", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:48.922327" + }, + { + "post_title": "auto-pieces.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:49.906585" + }, + { + "post_title": "dollinger-pierre.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:51.705107" + }, + { + "post_title": "emec.com.eg", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:52.594450" + }, + { + "post_title": "feuille-erable.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:53.639248" + }, + { + "post_title": "grebe-korbach.de", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:54.629966" + }, + { + "post_title": "greensboro.edu", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:55.453178" + }, + { + "post_title": "guillerm-habitat.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:56.590142" + }, + { + "post_title": "inouemfg.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:57.710129" + }, + { + "post_title": "locaparc.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:58.971985" + }, + { + "post_title": "losh.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:30:59.670323" + }, + { + "post_title": "mariocoelho.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:00.510029" + }, + { + "post_title": "nieul-sur-mer.fr", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:01.763101" + }, + { + "post_title": "optoflux.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:02.652911" + }, + { + "post_title": "otltd.co.uk", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:03.453498" + }, + { + "post_title": "potenciamaquinaria.com", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:04.408626" + }, + { + "post_title": "tavlit.co.il", + "group_name": "lockbit3", + "discovered": "2023-08-30 23:31:06.587920" + }, + { + "post_title": "I****n(Unpay)", + "group_name": "ragroup", + "discovered": "2023-08-30 23:31:13.349357" + }, + { + "post_title": "2****r(Unpay)", + "group_name": "ragroup", + "discovered": "2023-08-30 23:31:13.962906" + }, + { + "post_title": "Y****e(Unpay)", + "group_name": "ragroup", + "discovered": "2023-08-30 23:31:14.545949" + }, + { + "post_title": "P****X(Unpay)", + "group_name": "ragroup", + "discovered": "2023-08-30 23:31:15.526345" + }, + { + "post_title": "Zurvita(Unpay-Partially public)", + "group_name": "ragroup", + "discovered": "2023-08-30 23:31:16.188425" + }, + { + "post_title": "rydershealth.com", + "group_name": "lockbit3", + "discovered": "2023-08-31 00:29:13.625302" + }, + { + "post_title": "toua.net", + "group_name": "lockbit3", + "discovered": "2023-08-31 01:48:08.351372" + }, + { + "post_title": "zep.it", + "group_name": "lockbit3", + "discovered": "2023-08-31 01:48:10.011580" + }, + { + "post_title": "skystar.it", + "group_name": "lockbit3", + "discovered": "2023-08-31 02:35:44.987856" + }, + { + "post_title": "safilogroup.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:30.638374" + }, + { + "post_title": "sleepcountry.ca", + "group_name": "clop", + "discovered": "2023-08-31 05:33:31.223070" + }, + { + "post_title": "planethomelending.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:32.424879" + }, + { + "post_title": "toyota-boshoku.be", + "group_name": "clop", + "discovered": "2023-08-31 05:33:33.174603" + }, + { + "post_title": "informatica.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:34.147067" + }, + { + "post_title": "virginpulse.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:34.834966" + }, + { + "post_title": "vitalitygroup.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:35.552286" + }, + { + "post_title": "ddcos.com", + "group_name": "clop", + "discovered": "2023-08-31 05:33:36.395055" + }, + { + "post_title": "Fenn Termite and Pest Control", + "group_name": "8base", + "discovered": "2023-08-31 05:34:04.845378" + }, + { + "post_title": "deloitte.com", + "group_name": "clop", + "discovered": "2023-08-31 06:33:16.487271" + }, + { + "post_title": "siu.edu", + "group_name": "clop", + "discovered": "2023-08-31 06:33:17.196060" + }, + { + "post_title": "wsp.com", + "group_name": "clop", + "discovered": "2023-08-31 06:33:18.055724" + }, + { + "post_title": "ttigroup.com", + "group_name": "clop", + "discovered": "2023-08-31 07:28:50.169745" + }, + { + "post_title": "chuckecheese.com", + "group_name": "clop", + "discovered": "2023-08-31 07:28:50.725324" + }, + { + "post_title": "Eckell Sparks Attorneys at Law", + "group_name": "alphv", + "discovered": "2023-08-31 09:31:19.843388" + }, + { + "post_title": "Alpizar Law Firm", + "group_name": "alphv", + "discovered": "2023-08-31 09:31:20.597652" + }, + { + "post_title": "Wilder & Co", + "group_name": "alphv", + "discovered": "2023-08-31 09:31:21.452579" + }, + { + "post_title": "biso.at", + "group_name": "lockbit3", + "discovered": "2023-08-31 09:31:25.882304" + }, + { + "post_title": "millwgs.com", + "group_name": "lockbit3", + "discovered": "2023-08-31 09:31:30.567864" + }, + { + "post_title": "Tisher Liner FC Law Australia", + "group_name": "alphv", + "discovered": "2023-08-31 10:26:18.647424" + }, + { + "post_title": "Pifer's Auction & Realty", + "group_name": "incransom", + "discovered": "2023-08-31 10:26:40.469477" + }, + { + "post_title": "Rivers Casino", + "group_name": "akira", + "discovered": "2023-08-31 11:34:43.716996" + }, + { + "post_title": "aristocrat.com", + "group_name": "clop", + "discovered": "2023-08-31 13:31:57.332562" + }, + { + "post_title": "joneslanglasalle.com", + "group_name": "clop", + "discovered": "2023-08-31 13:31:58.108962" + }, + { + "post_title": "tricoproducts.com", + "group_name": "clop", + "discovered": "2023-08-31 13:31:59.618599" + }, + { + "post_title": "mechanicsbank.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:00.666777" + }, + { + "post_title": "enterprisebanking.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:01.865010" + }, + { + "post_title": "deltadental.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:03.006723" + }, + { + "post_title": "flutter.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:03.779560" + }, + { + "post_title": "salelytics.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:04.722075" + }, + { + "post_title": "adaresec.com", + "group_name": "clop", + "discovered": "2023-08-31 13:32:05.584065" + }, + { + "post_title": "www.lasaterandmartin.com", + "group_name": "abyss", + "discovered": "2023-08-31 14:31:07.823904" + }, + { + "post_title": "gnc.com", + "group_name": "clop", + "discovered": "2023-08-31 15:32:58.896324" + }, + { + "post_title": "gensler.com", + "group_name": "clop", + "discovered": "2023-08-31 15:32:59.933281" + }, + { + "post_title": "genesisenergy.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:00.781326" + }, + { + "post_title": "garrettmotion.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:01.665752" + }, + { + "post_title": "ferring.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:02.467363" + }, + { + "post_title": "fanucamerica.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:03.310796" + }, + { + "post_title": "emsbilling.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:04.049484" + }, + { + "post_title": "darlingconsulting.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:05.017256" + }, + { + "post_title": "chevronfcu.org", + "group_name": "clop", + "discovered": "2023-08-31 15:33:05.695571" + }, + { + "post_title": "cap.org", + "group_name": "clop", + "discovered": "2023-08-31 15:33:06.534600" + }, + { + "post_title": "awaze.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:07.537861" + }, + { + "post_title": "sbmoffshore.com", + "group_name": "clop", + "discovered": "2023-08-31 15:33:08.477971" + }, + { + "post_title": "Valley Mountain Regional Center", + "group_name": "karakurt", + "discovered": "2023-08-31 16:33:52.355229" + }, + { + "post_title": "Children's Home of W yoming Conference", + "group_name": "akira", + "discovered": "2023-08-31 16:33:54.763999" + }, + { + "post_title": "New York & Company", + "group_name": "akira", + "discovered": "2023-08-31 16:33:55.425896" + }, + { + "post_title": "tjx.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:29.172010" + }, + { + "post_title": "synlab.fr", + "group_name": "clop", + "discovered": "2023-08-31 19:26:30.410931" + }, + { + "post_title": "rhenus.group", + "group_name": "clop", + "discovered": "2023-08-31 19:26:31.506395" + }, + { + "post_title": "pbinfo.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:32.347810" + }, + { + "post_title": "payback.group", + "group_name": "clop", + "discovered": "2023-08-31 19:26:33.256244" + }, + { + "post_title": "mesvision.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:34.044745" + }, + { + "post_title": "informa.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:34.941405" + }, + { + "post_title": "goalsolutions.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:37.115662" + }, + { + "post_title": "smurfitkappa.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:37.958000" + }, + { + "post_title": "mcw.edu", + "group_name": "clop", + "discovered": "2023-08-31 19:26:39.020002" + }, + { + "post_title": "bradyid.com", + "group_name": "clop", + "discovered": "2023-08-31 19:26:40.177061" + }, + { + "post_title": "abzarsara.com", + "group_name": "lockbit3", + "discovered": "2023-08-31 20:36:05.346057" + }, + { + "post_title": "deschamps.fr", + "group_name": "lockbit3", + "discovered": "2023-08-31 22:28:02.249369" + }, + { + "post_title": "guyer.com.uy", + "group_name": "lockbit3", + "discovered": "2023-08-31 22:28:04.390614" + }, + { + "post_title": "mayair.com.my", + "group_name": "lockbit3", + "discovered": "2023-08-31 22:28:07.020094" + }, + { + "post_title": "chevalerias.com", + "group_name": "lockbit3", + "discovered": "2023-08-31 23:25:01.561833" + }, + { + "post_title": "Yuxin Automobile Co.Ltd(裕信汽車)(Unpay)", + "group_name": "ragroup", + "discovered": "2023-09-01 03:24:26.168771" + }, + { + "post_title": "Piex Group(Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-09-01 03:24:27.044048" + }, + { + "post_title": "Prince George's County Public Schools", + "group_name": "rhysida", + "discovered": "2023-09-01 06:27:46.593126" + }, + { + "post_title": "aquinas.qld.edu.au", + "group_name": "lockbit3", + "discovered": "2023-09-01 10:27:45.373258" + }, + { + "post_title": "hamilton-techservices.com", + "group_name": "lockbit3", + "discovered": "2023-09-01 10:27:49.098624" + }, + { + "post_title": "konkconsulting.com", + "group_name": "lockbit3", + "discovered": "2023-09-01 10:27:51.229958" + }, + { + "post_title": "F??????? ?????s", + "group_name": "play", + "discovered": "2023-09-01 16:29:22.066516" + }, + { + "post_title": "vodatech.com.tr", + "group_name": "lockbit3", + "discovered": "2023-09-01 18:29:05.415228" + }, + { + "post_title": "vyt", + "group_name": "lockbit3", + "discovered": "2023-09-01 19:25:42.232134" + }, + { + "post_title": "Templeman Consulting Group Inc", + "group_name": "bianlian", + "discovered": "2023-09-01 20:27:42.633099" + }, + { + "post_title": "N**** **** *** and *c********", + "group_name": "bianlian", + "discovered": "2023-09-01 20:27:43.435268" + }, + { + "post_title": "L******* C***** and P********", + "group_name": "bianlian", + "discovered": "2023-09-01 20:27:44.114929" + }, + { + "post_title": "*** ******", + "group_name": "bianlian", + "discovered": "2023-09-01 20:27:44.748188" + }, + { + "post_title": "cciamp.com", + "group_name": "lockbit3", + "discovered": "2023-09-01 22:24:12.824121" + }, + { + "post_title": "www.gmflaw.com", + "group_name": "noescape", + "discovered": "2023-09-02 04:27:17.706367" + }, + { + "post_title": "www.rslog.com", + "group_name": "noescape", + "discovered": "2023-09-02 05:28:29.049212" + }, + { + "post_title": "cc-gorgesardeche.fr", + "group_name": "lockbit3", + "discovered": "2023-09-02 08:29:31.069140" + }, + { + "post_title": "Taylor University", + "group_name": "moneymessage", + "discovered": "2023-09-02 10:26:07.238785" + }, + { + "post_title": "Aban Tether & OK exchange", + "group_name": "arvinclub", + "discovered": "2023-09-02 12:26:48.839027" + }, + { + "post_title": "Statefarm.com", + "group_name": "everest", + "discovered": "2023-09-02 12:26:53.999805" + }, + { + "post_title": "Powersportsmarketing.com", + "group_name": "everest", + "discovered": "2023-09-02 12:26:54.613979" + }, + { + "post_title": "SKF.com", + "group_name": "everest", + "discovered": "2023-09-02 12:26:55.287562" + }, + { + "post_title": "DOIT - Canadian IT company allowed leak of its own clients.", + "group_name": "ragnarlocker", + "discovered": "2023-09-02 13:30:40.139402" + }, + { + "post_title": "attorneydanwinder.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 15:26:29.396710" + }, + { + "post_title": "sterncoengineers.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 15:26:38.194027" + }, + { + "post_title": "designlink.us", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:16.109251" + }, + { + "post_title": "eljayoil.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:17.507277" + }, + { + "post_title": "gh2.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:18.796701" + }, + { + "post_title": "neolife.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:21.792767" + }, + { + "post_title": "nerolac.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:22.443046" + }, + { + "post_title": "seasonsdarlingharbour.com.au", + "group_name": "lockbit3", + "discovered": "2023-09-02 16:27:24.686040" + }, + { + "post_title": "ramlowstein.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 17:27:54.779282" + }, + { + "post_title": "Strata Plan Australia", + "group_name": "alphv", + "discovered": "2023-09-02 18:27:40.255179" + }, + { + "post_title": "Barry Plant Real Estate Australia", + "group_name": "alphv", + "discovered": "2023-09-02 18:27:40.911492" + }, + { + "post_title": "glprop.com", + "group_name": "lockbit3", + "discovered": "2023-09-02 18:27:47.779741" + }, + { + "post_title": "TissuPath Australia", + "group_name": "alphv", + "discovered": "2023-09-02 19:26:40.857301" + }, + { + "post_title": "Lawsonlundell", + "group_name": "alphv", + "discovered": "2023-09-03 07:26:20.518568" + }, + { + "post_title": "Prospect Medical Holdings", + "group_name": "rhysida", + "discovered": "2023-09-03 07:26:36.142788" + }, + { + "post_title": "Newton Media A.S.", + "group_name": "alphv", + "discovered": "2023-09-03 15:33:15.889425" + }, + { + "post_title": "Aiphone", + "group_name": "moneymessage", + "discovered": "2023-09-03 17:32:31.203304" + }, + { + "post_title": "Rick Ramos Law (rickramoslaw.com)", + "group_name": "rancoz", + "discovered": "2023-09-03 19:28:37.975148" + }, + { + "post_title": "DDB Unlimited (ddbunlimited.com)", + "group_name": "rancoz", + "discovered": "2023-09-03 19:28:38.748977" + }, + { + "post_title": "Arkopharma", + "group_name": "incransom", + "discovered": "2023-09-03 20:30:58.349591" + }, + { + "post_title": "vivtok", + "group_name": "stormous", + "discovered": "2023-09-04 08:38:28.037507" + }, + { + "post_title": "econocom", + "group_name": "stormous", + "discovered": "2023-09-04 08:38:28.096122" + }, + { + "post_title": "senior", + "group_name": "stormous", + "discovered": "2023-09-04 08:38:28.169526" + }, + { + "post_title": "gosslaw.com", + "group_name": "lockbit3", + "discovered": "2023-09-03 21:26:16.775111" + }, + { + "post_title": "marianoshoes.com", + "group_name": "lockbit3", + "discovered": "2023-09-03 21:26:19.360530" + }, + { + "post_title": "Knight Barry Title", + "group_name": "snatch", + "discovered": "2023-09-03 23:33:33.000360" + }, + { + "post_title": "Prodegest Assessors", + "group_name": "8base", + "discovered": "2023-09-04 05:30:15.513124" + }, + { + "post_title": "VV&A", + "group_name": "8base", + "discovered": "2023-09-04 05:30:16.899587" + }, + { + "post_title": "VVandA", + "group_name": "8base", + "discovered": "2023-09-04 06:28:48.592455" + }, + { + "post_title": "Jules B", + "group_name": "medusa", + "discovered": "2023-09-04 07:29:42.193046" + }, + { + "post_title": "Betton France", + "group_name": "medusa", + "discovered": "2023-09-04 07:29:43.296212" + }, + { + "post_title": "cdwg.com", + "group_name": "lockbit3", + "discovered": "2023-09-04 09:28:18.470682" + }, + { + "post_title": "Barco Uniforms", + "group_name": "cactus", + "discovered": "2023-09-04 16:30:46.343477" + }, + { + "post_title": "Balcan", + "group_name": "cactus", + "discovered": "2023-09-04 16:30:47.093933" + }, + { + "post_title": "northwave.it", + "group_name": "noescape", + "discovered": "2023-09-04 19:27:37.157023" + }, + { + "post_title": "hbme.com", + "group_name": "noescape", + "discovered": "2023-09-04 19:27:38.396381" + }, + { + "post_title": "www.mulkaycardiology.com", + "group_name": "noescape", + "discovered": "2023-09-04 19:27:39.557184" + }, + { + "post_title": "He****rk (Unpay)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:30:57.055869" + }, + { + "post_title": "24****r (Unpay)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:30:57.949597" + }, + { + "post_title": "I****n (Unpay)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:30:58.828182" + }, + { + "post_title": "Yuxin Automobile Co.Ltd (裕信汽車) (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:30:59.719274" + }, + { + "post_title": "Piex Group (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:31:00.405340" + }, + { + "post_title": "Zurvita (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-09-04 20:31:01.381518" + }, + { + "post_title": "Firmdale Hotels", + "group_name": "play", + "discovered": "2023-09-04 23:32:28.643393" + }, + { + "post_title": "godbeylaw.com", + "group_name": "lockbit3", + "discovered": "2023-09-05 05:29:09.672827" + }, + { + "post_title": "https://www.cyberport.hk/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:29.356899" + }, + { + "post_title": "https://unimed.coop.br/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:30.396538" + }, + { + "post_title": "https://cedarhd.com/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:31.276715" + }, + { + "post_title": "https://www.ariacarepartners.com/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:32.013893" + }, + { + "post_title": "https://www.flamingoholland.com", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:33.197864" + }, + { + "post_title": "https://leidos.com", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:34.034769" + }, + { + "post_title": "https://axiomprofessional.com", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:34.758751" + }, + { + "post_title": "https://uniqueimaging.com/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:35.673023" + }, + { + "post_title": "www.ttccpa.com", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:36.579149" + }, + { + "post_title": "https://www.wpc.com/", + "group_name": "trigona", + "discovered": "2023-09-05 06:35:37.415629" + }, + { + "post_title": "spmblaw.com", + "group_name": "lockbit3", + "discovered": "2023-09-05 09:36:11.907313" + }, + { + "post_title": "Hornsyld Købmandsgaard", + "group_name": "cactus", + "discovered": "2023-09-05 10:29:41.117901" + }, + { + "post_title": "Foroni SPA", + "group_name": "cactus", + "discovered": "2023-09-05 10:29:42.471048" + }, + { + "post_title": "Barsco", + "group_name": "cactus", + "discovered": "2023-09-05 10:29:43.323847" + }, + { + "post_title": "Lagarde Meregnani", + "group_name": "cactus", + "discovered": "2023-09-05 11:32:11.900852" + }, + { + "post_title": "Marfrig Global Foods", + "group_name": "cactus", + "discovered": "2023-09-05 14:31:20.539812" + }, + { + "post_title": "MINEMAN Systems", + "group_name": "cactus", + "discovered": "2023-09-05 15:38:27.421641" + }, + { + "post_title": "Maxxd Trailers", + "group_name": "cactus", + "discovered": "2023-09-05 15:38:28.278166" + }, + { + "post_title": "Barry Plant LEAK!", + "group_name": "alphv", + "discovered": "2023-09-05 16:35:11.109375" + }, + { + "post_title": "Brooklyn Premier Orthopedics FULL LEAK!", + "group_name": "alphv", + "discovered": "2023-09-05 16:35:11.708447" + }, + { + "post_title": "Seymours", + "group_name": "cactus", + "discovered": "2023-09-05 16:35:24.347983" + }, + { + "post_title": "Promotrans", + "group_name": "cactus", + "discovered": "2023-09-05 16:35:25.097711" + }, + { + "post_title": "www.infinityconstruction.com", + "group_name": "noescape", + "discovered": "2023-09-05 17:32:24.838310" + }, + { + "post_title": "Majestic Spice", + "group_name": "play", + "discovered": "2023-09-05 22:29:28.871119" + }, + { + "post_title": "Bordelon Marine", + "group_name": "play", + "discovered": "2023-09-05 22:29:29.733931" + }, + { + "post_title": "Master Interiors", + "group_name": "play", + "discovered": "2023-09-05 22:29:31.508433" + }, + { + "post_title": "Markentrainer Werbeagentur", + "group_name": "play", + "discovered": "2023-09-05 22:29:32.275889" + }, + { + "post_title": "Kikkerland Design", + "group_name": "play", + "discovered": "2023-09-05 22:29:33.444115" + }, + { + "post_title": "Precisely, Winshuttle", + "group_name": "play", + "discovered": "2023-09-05 22:29:34.247631" + }, + { + "post_title": "Chula Vista Electric (CVE)", + "group_name": "8base", + "discovered": "2023-09-06 06:33:53.029347" + }, + { + "post_title": "FRESH TASTE PRODUCE USA AND ASSOCIATES INC.", + "group_name": "8base", + "discovered": "2023-09-06 08:28:11.652890" + }, + { + "post_title": "Energy One", + "group_name": "akira", + "discovered": "2023-09-06 10:36:53.221570" + }, + { + "post_title": "Sabre Corporation", + "group_name": "dunghill_leak", + "discovered": "2023-09-06 11:32:11.666260" + }, + { + "post_title": "Solano-Napa Pet Emergency Clinic", + "group_name": "knight", + "discovered": "2023-09-06 16:27:18.219796" + }, + { + "post_title": "Ayass BioScience", + "group_name": "alphv", + "discovered": "2023-09-06 18:34:47.650198" + }, + { + "post_title": "Israel Medical Center - leaked", + "group_name": "ragnarlocker", + "discovered": "2023-09-06 19:28:17.540502" + }, + { + "post_title": "It4 Solutions Robras", + "group_name": "incransom", + "discovered": "2023-09-06 19:28:51.475674" + }, + { + "post_title": "I Keating Furniture World", + "group_name": "incransom", + "discovered": "2023-09-06 19:28:52.249661" + }, + { + "post_title": "Smead", + "group_name": "blackbyte", + "discovered": "2023-09-06 21:32:05.723874" + }, + { + "post_title": "concrejato.com.br", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:03.391368" + }, + { + "post_title": "gormanusa.com", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:06.086856" + }, + { + "post_title": "meroso.be", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:09.649377" + }, + { + "post_title": "nobleweb.com", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:10.850556" + }, + { + "post_title": "onyx-fire.com", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:12.052006" + }, + { + "post_title": "protosign.it", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:14.065226" + }, + { + "post_title": "qsoftnet.com", + "group_name": "lockbit3", + "discovered": "2023-09-06 22:31:14.908784" + }, + { + "post_title": "ragasa.com.mx", + "group_name": "lockbit3", + "discovered": "2023-09-06 23:29:48.406609" + }, + { + "post_title": "Specialised Management Services", + "group_name": "cactus", + "discovered": "2023-09-07 08:28:22.748293" + }, + { + "post_title": "West Craft Manufacturing", + "group_name": "cactus", + "discovered": "2023-09-07 09:30:12.210978" + }, + { + "post_title": "TORMAX USA", + "group_name": "cactus", + "discovered": "2023-09-07 09:30:13.243699" + }, + { + "post_title": "Trimaran Capital Partners", + "group_name": "cactus", + "discovered": "2023-09-07 10:30:18.208638" + }, + { + "post_title": "K***** **** ***********", + "group_name": "bianlian", + "discovered": "2023-09-07 11:36:07.852865" + }, + { + "post_title": "Conselho Superior da Justiça do Trabalho", + "group_name": "8base", + "discovered": "2023-09-07 13:26:23.642868" + }, + { + "post_title": "www.omniatel.it", + "group_name": "noescape", + "discovered": "2023-09-07 14:25:32.249223" + }, + { + "post_title": "FOCUS Business Solutions", + "group_name": "blackbyte", + "discovered": "2023-09-07 21:27:28.151914" + }, + { + "post_title": "pvc-ms", + "group_name": "stormous", + "discovered": "2023-09-07 21:27:45.652083" + }, + { + "post_title": "24/7 Express Logistics (Unpay)", + "group_name": "ragroup", + "discovered": "2023-09-07 21:28:04.061467" + }, + { + "post_title": "Chambersburg Area School District", + "group_name": "blackbyte", + "discovered": "2023-09-07 22:32:02.569417" + }, + { + "post_title": "wacoal-america.com", + "group_name": "qilin", + "discovered": "2023-09-08 07:36:23.854207" + }, + { + "post_title": "notairedoicesco.be", + "group_name": "qilin", + "discovered": "2023-09-08 07:36:25.116329" + }, + { + "post_title": "Linktera", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:09.731109" + }, + { + "post_title": "wantager.com", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:09.790951" + }, + { + "post_title": "nucleus.live", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:09.853798" + }, + { + "post_title": "makflix.eu", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:09.915195" + }, + { + "post_title": "medcenter-tambov.ru", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:09.976426" + }, + { + "post_title": "laasr.eu", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.036210" + }, + { + "post_title": "quantinuum.com", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.095523" + }, + { + "post_title": "easydentalcare.us", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.157721" + }, + { + "post_title": "Balmit Bulgaria", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.219067" + }, + { + "post_title": "Swipe.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.278906" + }, + { + "post_title": "SKF.com", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.340013" + }, + { + "post_title": "paynesvilleareainsurance.com", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.402415" + }, + { + "post_title": "phms.com.au", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.462223" + }, + { + "post_title": "Hawaii Health System", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.524473" + }, + { + "post_title": "Powersports Marketing", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.583812" + }, + { + "post_title": "MetroClub.org", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.645037" + }, + { + "post_title": "S&P", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.705416" + }, + { + "post_title": "StateFarm", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.765897" + }, + { + "post_title": "Optimity.co.uk", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.827346" + }, + { + "post_title": "I&G Brokers", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.888234" + }, + { + "post_title": "Jhooker", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:10.947338" + }, + { + "post_title": "TransUnion", + "group_name": "ransomedvc", + "discovered": "2023-09-08 22:08:11.007383" + }, + { + "post_title": "JSS Almonds", + "group_name": "cactus", + "discovered": "2023-09-08 11:34:14.853356" + }, + { + "post_title": "Custom Powder Systems", + "group_name": "cactus", + "discovered": "2023-09-08 11:34:15.816097" + }, + { + "post_title": "BRiC Partnership", + "group_name": "cactus", + "discovered": "2023-09-08 11:34:16.603792" + }, + { + "post_title": "atWork Office Furniture", + "group_name": "cactus", + "discovered": "2023-09-08 11:34:17.293486" + }, + { + "post_title": "hanwha.com", + "group_name": "lockbit3", + "discovered": "2023-09-08 12:34:20.386215" + }, + { + "post_title": "Geo Tek", + "group_name": "cactus", + "discovered": "2023-09-08 13:29:54.545955" + }, + { + "post_title": "UNIVERSAL REALTY GROUP", + "group_name": "8base", + "discovered": "2023-09-08 14:32:49.391576" + }, + { + "post_title": "monaco-technologies.com", + "group_name": "lockbit3", + "discovered": "2023-09-08 17:29:36.913046" + }, + { + "post_title": "sd69.org", + "group_name": "lockbit3", + "discovered": "2023-09-08 20:31:04.281904" + }, + { + "post_title": "Low Keng Huat", + "group_name": "ransomhouse", + "discovered": "2023-09-08 22:33:24.301537" + }, + { + "post_title": "www.northriverco.com", + "group_name": "abyss", + "discovered": "2023-09-08 22:33:36.068506" + }, + { + "post_title": "kasida.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-08 23:32:54.876370" + }, + { + "post_title": "pilini.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-08 23:32:55.831184" + }, + { + "post_title": "airelec.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-08 23:32:56.655648" + }, + { + "post_title": "proxy-sale.com", + "group_name": "ransomedvc", + "discovered": "2023-09-09 00:30:50.120711" + }, + { + "post_title": "Shkolo.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-09 01:47:38.721341" + }, + { + "post_title": "olx.com", + "group_name": "ransomedvc", + "discovered": "2023-09-09 01:47:39.663187" + }, + { + "post_title": "moreschi.it", + "group_name": "ransomedvc", + "discovered": "2023-09-09 01:47:40.762249" + }, + { + "post_title": "Kirby Risk", + "group_name": "blackbyte", + "discovered": "2023-09-09 18:29:11.077823" + }, + { + "post_title": "njsba.com", + "group_name": "abyss", + "discovered": "2023-09-10 08:24:30.120085" + }, + { + "post_title": "BOZOVICH TIMBER PRODUCTS INC", + "group_name": "mallox", + "discovered": "2023-09-10 11:27:51.271294" + }, + { + "post_title": "New Venture Escrow", + "group_name": "bianlian", + "discovered": "2023-09-10 20:25:58.472590" + }, + { + "post_title": "Core Desktop", + "group_name": "rhysida", + "discovered": "2023-09-11 09:15:17.578500" + }, + { + "post_title": "Singing River Health System", + "group_name": "rhysida", + "discovered": "2023-09-11 09:15:17.659657" + }, + { + "post_title": "IT-Center Syd", + "group_name": "rhysida", + "discovered": "2023-09-11 09:15:17.744412" + }, + { + "post_title": "Ford Covesa", + "group_name": "8base", + "discovered": "2023-09-11 05:26:11.933575" + }, + { + "post_title": "co.grant.mn.us", + "group_name": "lockbit3", + "discovered": "2023-09-11 08:26:38.629711" + }, + { + "post_title": "Steripharma ", + "group_name": "medusa", + "discovered": "2023-09-11 09:29:51.802754" + }, + { + "post_title": "Wave Hill", + "group_name": "medusa", + "discovered": "2023-09-11 09:29:52.512529" + }, + { + "post_title": "KUITS Solicitors", + "group_name": "alphv", + "discovered": "2023-09-11 10:25:28.673029" + }, + { + "post_title": "cfsigroup.ca", + "group_name": "lockbit3", + "discovered": "2023-09-11 11:29:05.179300" + }, + { + "post_title": "Levine Bagade Han", + "group_name": "cactus", + "discovered": "2023-09-11 12:33:47.259467" + }, + { + "post_title": "weew", + "group_name": "mallox", + "discovered": "2023-09-11 13:32:08.139558" + }, + { + "post_title": "My Insurance Broker", + "group_name": "cactus", + "discovered": "2023-09-11 13:32:16.014709" + }, + { + "post_title": "Leekes", + "group_name": "cactus", + "discovered": "2023-09-11 13:32:16.714246" + }, + { + "post_title": "I************ *********l Ltd.", + "group_name": "bianlian", + "discovered": "2023-09-11 14:28:54.699836" + }, + { + "post_title": "*e**** and Co. Ltd.", + "group_name": "bianlian", + "discovered": "2023-09-11 14:28:55.401011" + }, + { + "post_title": "**** **e ******e* ***e*********", + "group_name": "bianlian", + "discovered": "2023-09-11 14:28:56.377707" + }, + { + "post_title": "Hospice", + "group_name": "bianlian", + "discovered": "2023-09-11 14:28:57.263972" + }, + { + "post_title": "Wardlaw Claims Service", + "group_name": "cactus", + "discovered": "2023-09-11 14:29:06.876960" + }, + { + "post_title": "Unimarketing", + "group_name": "cactus", + "discovered": "2023-09-11 14:29:07.732281" + }, + { + "post_title": "Cmranallolaw.com", + "group_name": "everest", + "discovered": "2023-09-11 15:26:03.808223" + }, + { + "post_title": "I****** ****", + "group_name": "bianlian", + "discovered": "2023-09-11 16:25:18.584262" + }, + { + "post_title": "www.altmanndental.de", + "group_name": "noescape", + "discovered": "2023-09-11 18:30:34.766132" + }, + { + "post_title": "www.adsage.com", + "group_name": "noescape", + "discovered": "2023-09-11 19:27:48.962023" + }, + { + "post_title": "deeroaks.com", + "group_name": "lockbit3", + "discovered": "2023-09-11 20:26:46.765275" + }, + { + "post_title": "24/7 Express Logistics (Unpay-Start Leaking)", + "group_name": "ragroup", + "discovered": "2023-09-11 20:26:58.562655" + }, + { + "post_title": "ijc.org", + "group_name": "noescape", + "discovered": "2023-09-11 20:27:01.619910" + }, + { + "post_title": "cortel.com", + "group_name": "qilin", + "discovered": "2023-09-11 22:32:50.316586" + }, + { + "post_title": "Alps Alpine", + "group_name": "blackbyte", + "discovered": "2023-09-11 23:27:41.609090" + }, + { + "post_title": "Derrimon Trading was hacked. Critical data of the company and its customers was stolen", + "group_name": "alphv", + "discovered": "2023-09-12 09:28:43.811033" + }, + { + "post_title": "Credifiel was hacked and a lot of personal customer and financial information was stolen", + "group_name": "alphv", + "discovered": "2023-09-12 09:28:44.603045" + }, + { + "post_title": "Dee Sign", + "group_name": "lorenz", + "discovered": "2023-09-12 14:26:19.324700" + }, + { + "post_title": "BF&S Civil Engineers", + "group_name": "lorenz", + "discovered": "2023-09-12 14:26:20.459590" + }, + { + "post_title": "sinloc.com", + "group_name": "lockbit3", + "discovered": "2023-09-12 15:24:58.497359" + }, + { + "post_title": "M-Extend / MANIP", + "group_name": "alphv", + "discovered": "2023-09-12 16:25:01.800879" + }, + { + "post_title": "SEIKO GROUP CORPORATION", + "group_name": "alphv", + "discovered": "2023-09-12 17:27:35.619235" + }, + { + "post_title": "Decarie Motors Inc", + "group_name": "knight", + "discovered": "2023-09-12 18:25:50.085883" + }, + { + "post_title": "Morgan Smith Industries LLC", + "group_name": "knight", + "discovered": "2023-09-12 18:25:50.899867" + }, + { + "post_title": "Abbeyfield", + "group_name": "incransom", + "discovered": "2023-09-12 19:29:42.928801" + }, + { + "post_title": "SAC Finance", + "group_name": "ransomhouse", + "discovered": "2023-09-12 21:30:51.339236" + }, + { + "post_title": "Accuride", + "group_name": "akira", + "discovered": "2023-09-12 22:29:57.402325" + }, + { + "post_title": "Markentrainer Werbeagentur, Elwema Automotive", + "group_name": "play", + "discovered": "2023-09-13 03:28:34.367537" + }, + { + "post_title": "Carpet One", + "group_name": "play", + "discovered": "2023-09-13 03:28:35.496400" + }, + { + "post_title": "Dpc & S", + "group_name": "play", + "discovered": "2023-09-13 03:28:36.409811" + }, + { + "post_title": "Tanachira Group", + "group_name": "knight", + "discovered": "2023-09-13 03:28:43.090595" + }, + { + "post_title": "Benefit Management INC", + "group_name": "knight", + "discovered": "2023-09-13 07:27:57.801660" + }, + { + "post_title": "http://fscjamaica.org", + "group_name": "blacksuit", + "discovered": "2023-09-13 16:30:08.587334" + }, + { + "post_title": "enpos", + "group_name": "stormous", + "discovered": "2023-09-13 19:26:48.252066" + }, + { + "post_title": "clearcreek.org", + "group_name": "lockbit3", + "discovered": "2023-09-13 19:26:51.665727" + }, + { + "post_title": "educal.mx", + "group_name": "noescape", + "discovered": "2023-09-14 06:30:09.807015" + }, + { + "post_title": "www.fondation-vincent-de-paul.org", + "group_name": "noescape", + "discovered": "2023-09-14 06:30:10.949538" + }, + { + "post_title": "carthagehospital.com", + "group_name": "lockbit3", + "discovered": "2023-09-14 11:25:43.868321" + }, + { + "post_title": "East Baking Press Release", + "group_name": "monti", + "discovered": "2023-09-14 13:33:19.943352" + }, + { + "post_title": "Ja Quith Press Release", + "group_name": "monti", + "discovered": "2023-09-14 13:33:21.194980" + }, + { + "post_title": "American Steel & Alu minum", + "group_name": "akira", + "discovered": "2023-09-14 15:26:21.922438" + }, + { + "post_title": "etsi.uy", + "group_name": "knight", + "discovered": "2023-09-14 17:26:51.139741" + }, + { + "post_title": "Statement on MGM Resorts International: Setting the record straight", + "group_name": "alphv", + "discovered": "2023-09-14 20:24:33.401946" + }, + { + "post_title": "https://steelforce.eu/", + "group_name": "trigona", + "discovered": "2023-09-15 01:45:08.058914" + }, + { + "post_title": "http://soprovise.fr", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:44.473411" + }, + { + "post_title": "http://www.rsv-centrale.be", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:45.242814" + }, + { + "post_title": "http://www.shelleyengineering.co.uk", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:45.928331" + }, + { + "post_title": "http://www.waterfordretirement.com", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:46.836163" + }, + { + "post_title": "http://www.imperadorlogistics.com", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:47.530211" + }, + { + "post_title": "http://www.harmonicteam.com", + "group_name": "ciphbit", + "discovered": "2023-09-15 03:24:48.458794" + }, + { + "post_title": "clearwaterlandscape.com", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:49.285711" + }, + { + "post_title": "visitingphysiciansnetwork.com", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:50.026115" + }, + { + "post_title": "zero-pointorganics.com", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:50.681799" + }, + { + "post_title": "intechims.com", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:51.526762" + }, + { + "post_title": "pvbfabs.com", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:52.260638" + }, + { + "post_title": "wdgroup.com.my", + "group_name": "threeam", + "discovered": "2023-09-15 03:24:53.052225" + }, + { + "post_title": "ToyotaLift Northeast", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:53.782359" + }, + { + "post_title": "Aspect Structural Engineers", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:54.590189" + }, + { + "post_title": "Danbury Public Schools", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:55.258469" + }, + { + "post_title": "KIRWIN FRYDAY MEDCALF Lawyers LLP", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:55.875700" + }, + { + "post_title": "Jeff Wyler Automotive Family, Inc.", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:57.013747" + }, + { + "post_title": "Polanglo", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:57.655266" + }, + { + "post_title": "CON-STRUCT", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:58.587079" + }, + { + "post_title": "P1 Technical Services", + "group_name": "cryptbb", + "discovered": "2023-09-15 03:24:59.427659" + }, + { + "post_title": "hollandspecial", + "group_name": "alphv", + "discovered": "2023-09-15 07:29:05.487106" + }, + { + "post_title": "hillsboroughschools.org", + "group_name": "lockbit3", + "discovered": "2023-09-15 08:23:00.819885" + }, + { + "post_title": "pelicanwoodcliff.com", + "group_name": "lockbit3", + "discovered": "2023-09-15 10:27:47.615505" + }, + { + "post_title": "Updates: Israel \"MYMC\"", + "group_name": "ragnarlocker", + "discovered": "2023-09-15 17:25:37.239696" + }, + { + "post_title": "gov.la", + "group_name": "ransomedvc", + "discovered": "2023-09-15 18:32:54.805338" + }, + { + "post_title": "Financial Decisions", + "group_name": "alphv", + "discovered": "2023-09-16 09:26:37.391035" + }, + { + "post_title": "aeroportlleida.cat", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:08.240236" + }, + { + "post_title": "antioch.edu", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:09.531100" + }, + { + "post_title": "beamconstruction.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:10.647591" + }, + { + "post_title": "blackjewel l.l.c.", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:11.494717" + }, + { + "post_title": "commercialfluidpower.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:12.811540" + }, + { + "post_title": "dasholding.ae", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:14.024210" + }, + { + "post_title": "energyinsight.co.za", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:15.109716" + }, + { + "post_title": "faithfamilyacademy.org", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:16.208078" + }, + { + "post_title": "glat.zapweb.co.il", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:17.510403" + }, + { + "post_title": "gsaenz.com.mx", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:18.536531" + }, + { + "post_title": "ipsenlogistics.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:19.756623" + }, + { + "post_title": "mehmetceylanyapi.com.tr", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:21.668092" + }, + { + "post_title": "michalovich.co.il", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:22.392269" + }, + { + "post_title": "milbermakris.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:23.069577" + }, + { + "post_title": "motsaot.co.il", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:23.980353" + }, + { + "post_title": "neolaser.es", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:24.920993" + }, + { + "post_title": "perfectlaw.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:26.032582" + }, + { + "post_title": "piramidal.com.br", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:27.105173" + }, + { + "post_title": "scottpartners.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:28.752517" + }, + { + "post_title": "syntech.com.sg", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:30.058798" + }, + { + "post_title": "tlip2.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:31.045611" + }, + { + "post_title": "tuvsud.com", + "group_name": "lockbit3", + "discovered": "2023-09-16 12:31:31.782799" + }, + { + "post_title": "http://www.marston-domsel.com", + "group_name": "ciphbit", + "discovered": "2023-09-16 13:35:20.045325" + }, + { + "post_title": "http://www.soprovise.fr", + "group_name": "ciphbit", + "discovered": "2023-09-16 13:35:20.991668" + }, + { + "post_title": "http://www.transterra.nl", + "group_name": "ciphbit", + "discovered": "2023-09-16 16:25:57.365397" + }, + { + "post_title": "Delta Group", + "group_name": "8base", + "discovered": "2023-09-17 06:28:07.239329" + }, + { + "post_title": "Announcement: Retail House going to be LEAKED", + "group_name": "ragnarlocker", + "discovered": "2023-09-17 17:30:32.252326" + }, + { + "post_title": "Araújo e Policastro Advogados", + "group_name": "8base", + "discovered": "2023-09-18 05:30:25.170899" + }, + { + "post_title": "www.ikp.at", + "group_name": "noescape", + "discovered": "2023-09-18 07:29:10.254813" + }, + { + "post_title": "www.kool-air-inc.com", + "group_name": "noescape", + "discovered": "2023-09-18 07:29:10.730086" + }, + { + "post_title": "cucs.org", + "group_name": "noescape", + "discovered": "2023-09-18 07:29:11.410027" + }, + { + "post_title": "Auckland Transport", + "group_name": "medusa", + "discovered": "2023-09-18 08:30:21.066043" + }, + { + "post_title": "Lopez & Associates Inc", + "group_name": "knight", + "discovered": "2023-09-18 09:25:54.222565" + }, + { + "post_title": "Dustin J Will LCC / Dustin J Will Sole MBR", + "group_name": "knight", + "discovered": "2023-09-18 09:25:54.913251" + }, + { + "post_title": "https://www.grupoboreal.com.ar", + "group_name": "trigona", + "discovered": "2023-09-18 11:29:48.916036" + }, + { + "post_title": "Agriloja.pt Full Leak", + "group_name": "everest", + "discovered": "2023-09-18 12:29:43.569844" + }, + { + "post_title": "Hoteles Xcaret", + "group_name": "blackbyte", + "discovered": "2023-09-18 13:29:41.619906" + }, + { + "post_title": "Fuji Seal Internatio nal (US branch)", + "group_name": "akira", + "discovered": "2023-09-18 16:27:09.244711" + }, + { + "post_title": "************", + "group_name": "incransom", + "discovered": "2023-09-18 16:27:13.476833" + }, + { + "post_title": "Glovis America", + "group_name": "akira", + "discovered": "2023-09-18 18:32:52.920272" + }, + { + "post_title": "Vucke", + "group_name": "play", + "discovered": "2023-09-18 19:28:45.978051" + }, + { + "post_title": "PASCHAL - Werk G Maier", + "group_name": "play", + "discovered": "2023-09-18 19:28:47.349517" + }, + { + "post_title": "TSC", + "group_name": "play", + "discovered": "2023-09-18 19:28:48.794041" + }, + { + "post_title": "RTA", + "group_name": "play", + "discovered": "2023-09-18 19:28:50.491884" + }, + { + "post_title": "Rea Magnet Wire", + "group_name": "play", + "discovered": "2023-09-18 19:28:51.243202" + }, + { + "post_title": "First Line", + "group_name": "play", + "discovered": "2023-09-18 19:28:51.904084" + }, + { + "post_title": "Elemetal", + "group_name": "incransom", + "discovered": "2023-09-18 19:28:58.415873" + }, + { + "post_title": "CITIZEN company LEAKED", + "group_name": "ragnarlocker", + "discovered": "2023-09-18 23:34:23.475889" + }, + { + "post_title": "Florida Department of Veterans' Affairs", + "group_name": "snatch", + "discovered": "2023-09-18 23:34:34.915384" + }, + { + "post_title": "ZILLI", + "group_name": "snatch", + "discovered": "2023-09-18 23:34:35.905768" + }, + { + "post_title": "CEFCO", + "group_name": "snatch", + "discovered": "2023-09-18 23:34:37.009674" + }, + { + "post_title": "Hacketts printing services", + "group_name": "knight", + "discovered": "2023-09-19 02:35:17.191710" + }, + { + "post_title": "Peacock Bros", + "group_name": "cactus", + "discovered": "2023-09-19 10:31:43.449236" + }, + { + "post_title": "Agilitas IT Solutions Limited", + "group_name": "donutleaks", + "discovered": "2023-09-19 15:33:24.497799" + }, + { + "post_title": "Gossler, Gobert & Wolters Group.", + "group_name": "donutleaks", + "discovered": "2023-09-19 15:33:25.431244" + }, + { + "post_title": "American University of Antigua", + "group_name": "alphv", + "discovered": "2023-09-19 17:23:55.422017" + }, + { + "post_title": "Announcement: Groupe Fructa Partner will be leaked soon", + "group_name": "ragnarlocker", + "discovered": "2023-09-19 19:29:55.159756" + }, + { + "post_title": "fersan.com.tr", + "group_name": "lockbit3", + "discovered": "2023-09-19 23:27:14.001760" + }, + { + "post_title": "University Obrany - Press Release", + "group_name": "monti", + "discovered": "2023-09-19 23:27:23.359056" + }, + { + "post_title": "Al Ashram Contracting", + "group_name": "alphv", + "discovered": "2023-09-20 08:27:19.636613" + }, + { + "post_title": "https://www.portesa.es/en", + "group_name": "trigona", + "discovered": "2023-09-20 09:26:55.626139" + }, + { + "post_title": "payrollselectservices.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 10:27:06.274283" + }, + { + "post_title": "www.kuengbern.ch", + "group_name": "noescape", + "discovered": "2023-09-20 11:24:10.568406" + }, + { + "post_title": "Spuncast", + "group_name": "cactus", + "discovered": "2023-09-20 13:31:10.959160" + }, + { + "post_title": "Bacon Universal", + "group_name": "cactus", + "discovered": "2023-09-20 13:31:11.805471" + }, + { + "post_title": "ENTRUST Solutions Group", + "group_name": "incransom", + "discovered": "2023-09-20 13:31:12.647570" + }, + { + "post_title": "hwwealth.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 14:33:17.228690" + }, + { + "post_title": "Leoch Battery", + "group_name": "incransom", + "discovered": "2023-09-20 14:33:29.359171" + }, + { + "post_title": "Federal Labor Relations Authority", + "group_name": "incransom", + "discovered": "2023-09-20 14:33:29.958511" + }, + { + "post_title": "bauscherhepp.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 15:32:32.151245" + }, + { + "post_title": "compass-inc.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 15:32:34.322989" + }, + { + "post_title": "constantinecannon.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 15:32:35.276284" + }, + { + "post_title": "Gulf American Lines", + "group_name": "medusa", + "discovered": "2023-09-20 15:32:48.596779" + }, + { + "post_title": "Chait", + "group_name": "medusa", + "discovered": "2023-09-20 15:32:49.518709" + }, + { + "post_title": "Axis Elevators", + "group_name": "medusa", + "discovered": "2023-09-20 15:32:50.228688" + }, + { + "post_title": "messner.com", + "group_name": "lockbit3", + "discovered": "2023-09-20 19:29:21.731707" + }, + { + "post_title": "Radley and Co", + "group_name": "ransomhouse", + "discovered": "2023-09-21 04:22:14.662849" + }, + { + "post_title": "NOVEXCO", + "group_name": "alphv", + "discovered": "2023-09-21 06:34:41.150275" + }, + { + "post_title": "Hawkins Delafield Wood", + "group_name": "ransomhouse", + "discovered": "2023-09-21 06:34:44.496063" + }, + { + "post_title": "DM Civil", + "group_name": "cactus", + "discovered": "2023-09-21 09:31:20.904542" + }, + { + "post_title": "A** ******", + "group_name": "bianlian", + "discovered": "2023-09-21 13:30:26.653363" + }, + { + "post_title": "Smartfren Telecom", + "group_name": "bianlian", + "discovered": "2023-09-21 13:30:27.630039" + }, + { + "post_title": "Road Safety", + "group_name": "bianlian", + "discovered": "2023-09-21 13:30:28.530859" + }, + { + "post_title": "C****** ***** ***m**********", + "group_name": "bianlian", + "discovered": "2023-09-21 13:30:29.428096" + }, + { + "post_title": "Announcement: Stratesys solutions going to b", + "group_name": "ragnarlocker", + "discovered": "2023-09-21 14:25:30.222961" + }, + { + "post_title": "Announcement: Stratesys solutions going to be leaked", + "group_name": "ragnarlocker", + "discovered": "2023-09-21 15:26:23.059680" + }, + { + "post_title": "Arail", + "group_name": "alphv", + "discovered": "2023-09-21 16:37:24.320579" + }, + { + "post_title": "Unique Engineering is the most collaborative and dangerous construction company in Asia", + "group_name": "alphv", + "discovered": "2023-09-21 16:37:25.157752" + }, + { + "post_title": "ende.co.ao is a company you can test corporate network hack on and have 100% hacking succe", + "group_name": "alphv", + "discovered": "2023-09-21 17:23:54.302186" + }, + { + "post_title": "Cosal is a company that distributes personal and confidential data of its customers and re", + "group_name": "alphv", + "discovered": "2023-09-21 17:23:55.068675" + }, + { + "post_title": "ruko.de", + "group_name": "alphv", + "discovered": "2023-09-21 20:27:01.194878" + }, + { + "post_title": "Mole Valley Farmers", + "group_name": "alphv", + "discovered": "2023-09-21 20:27:01.933700" + }, + { + "post_title": "Auckland University of Technology", + "group_name": "monti", + "discovered": "2023-09-21 21:32:33.159042" + }, + { + "post_title": "TAOGLAS", + "group_name": "alphv", + "discovered": "2023-09-22 08:29:42.613874" + }, + { + "post_title": "PainCare", + "group_name": "alphv", + "discovered": "2023-09-22 10:35:19.678957" + }, + { + "post_title": "Holon Institute of Technology", + "group_name": "rhysida", + "discovered": "2023-09-22 10:35:40.803440" + }, + { + "post_title": "neuraxpharm.com", + "group_name": "threeam", + "discovered": "2023-09-22 10:35:42.917166" + }, + { + "post_title": "Yakima Valley Radiology", + "group_name": "karakurt", + "discovered": "2023-09-22 12:29:48.275350" + }, + { + "post_title": "fi-tech.com", + "group_name": "threeam", + "discovered": "2023-09-22 12:29:54.318568" + }, + { + "post_title": "haciendazorita.com", + "group_name": "threeam", + "discovered": "2023-09-22 12:29:55.045527" + }, + { + "post_title": "Hospice of Huntington", + "group_name": "karakurt", + "discovered": "2023-09-22 13:32:23.311753" + }, + { + "post_title": "Retail House - Full Leak", + "group_name": "ragnarlocker", + "discovered": "2023-09-22 14:27:54.794805" + }, + { + "post_title": "Yusen Logistics", + "group_name": "alphv", + "discovered": "2023-09-22 14:28:06.469422" + }, + { + "post_title": "Carlo Ditta", + "group_name": "alphv", + "discovered": "2023-09-22 15:25:41.846081" + }, + { + "post_title": "pelmorex.com", + "group_name": "lockbit3", + "discovered": "2023-09-22 15:25:52.094537" + }, + { + "post_title": "Announcement: Skatax Accounting company going to be leaked", + "group_name": "ragnarlocker", + "discovered": "2023-09-22 16:27:17.447585" + }, + { + "post_title": "Announcement: COMECA Group going to be Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-09-22 17:31:13.009072" + }, + { + "post_title": "SAGAM Groupe - a company with dozens of vulnerabilities in its network has been hacked and", + "group_name": "alphv", + "discovered": "2023-09-22 17:31:27.045573" + }, + { + "post_title": "Progressive Leasing ( 40 million Customers PII Data )", + "group_name": "alphv", + "discovered": "2023-09-22 18:30:52.982128" + }, + { + "post_title": "Pik Rite", + "group_name": "alphv", + "discovered": "2023-09-22 18:30:53.808528" + }, + { + "post_title": "CLX Logistics", + "group_name": "akira", + "discovered": "2023-09-22 18:31:10.028808" + }, + { + "post_title": "Agilitas IT Solutions Limited", + "group_name": "incransom", + "discovered": "2023-09-22 20:25:26.528675" + }, + { + "post_title": "marshallindtech.com", + "group_name": "lockbit3", + "discovered": "2023-09-22 22:27:20.813174" + }, + { + "post_title": "precisionpractice.com", + "group_name": "lockbit3", + "discovered": "2023-09-22 22:27:23.851259" + }, + { + "post_title": "Ort Harmelin College of Engineering", + "group_name": "rhysida", + "discovered": "2023-09-23 02:34:23.311830" + }, + { + "post_title": "The Envelope Works Ltd", + "group_name": "8base", + "discovered": "2023-09-23 04:24:09.124202" + }, + { + "post_title": "FabricATE Engineering", + "group_name": "8base", + "discovered": "2023-09-23 04:24:10.075300" + }, + { + "post_title": "F Hinds", + "group_name": "bianlian", + "discovered": "2023-09-23 08:33:52.862657" + }, + { + "post_title": "Philippine Health Insurance ", + "group_name": "medusa", + "discovered": "2023-09-23 08:33:57.771592" + }, + { + "post_title": "Franktronics, Inc", + "group_name": "medusa", + "discovered": "2023-09-23 08:33:58.742855" + }, + { + "post_title": "bpr-properties.com", + "group_name": "noescape", + "discovered": "2023-09-23 09:25:36.705794" + }, + { + "post_title": "interep", + "group_name": "stormous", + "discovered": "2023-09-23 14:36:12.403025" + }, + { + "post_title": "Clarion is the most dangerous electronics to use that can cause you to be hacked", + "group_name": "alphv", + "discovered": "2023-09-23 15:31:52.580774" + }, + { + "post_title": "arelion.com", + "group_name": "ransomedvc", + "discovered": "2023-09-23 23:25:18.228243" + }, + { + "post_title": "Punto.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:05.069254" + }, + { + "post_title": "footshop.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:05.892462" + }, + { + "post_title": "districtshoes.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:06.808845" + }, + { + "post_title": "ecco.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:07.687640" + }, + { + "post_title": "myshoes.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:08.583982" + }, + { + "post_title": "ardes.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:09.490107" + }, + { + "post_title": "andrews.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:10.382157" + }, + { + "post_title": "popolo.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:11.475756" + }, + { + "post_title": "ebag.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:12.434987" + }, + { + "post_title": "mango.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 11:27:13.625074" + }, + { + "post_title": "Phil-Data Business Systems was hacked. A lot of critical data was stolen. We've gained acc", + "group_name": "alphv", + "discovered": "2023-09-24 13:24:45.249516" + }, + { + "post_title": "epson", + "group_name": "stormous", + "discovered": "2023-09-24 13:24:47.959773" + }, + { + "post_title": "BNM.bg", + "group_name": "ransomedvc", + "discovered": "2023-09-24 13:25:07.665266" + }, + { + "post_title": "www.leekes.co.uk", + "group_name": "noescape", + "discovered": "2023-09-24 18:27:10.263847" + }, + { + "post_title": "altmanplants.com", + "group_name": "lockbit3", + "discovered": "2023-09-24 19:28:50.329274" + }, + { + "post_title": "SONY.com", + "group_name": "ransomedvc", + "discovered": "2023-09-24 19:29:10.486998" + }, + { + "post_title": "MNGI Digestive Health2", + "group_name": "alphv", + "discovered": "2023-09-24 22:24:32.773080" + }, + { + "post_title": "Springer Eubank", + "group_name": "8base", + "discovered": "2023-09-25 04:32:48.136569" + }, + { + "post_title": "J.T. Cullen Co., Inc.", + "group_name": "8base", + "discovered": "2023-09-25 04:32:49.016378" + }, + { + "post_title": "PRETZEL-STOUFFER", + "group_name": "alphv", + "discovered": "2023-09-25 09:31:25.964845" + }, + { + "post_title": "Praxis Arndt und Langer", + "group_name": "8base", + "discovered": "2023-09-25 13:26:13.703815" + }, + { + "post_title": "Ministry Of Finance (Kuwait)", + "group_name": "rhysida", + "discovered": "2023-09-25 13:26:16.535564" + }, + { + "post_title": "Stratesys Full data leak", + "group_name": "ragnarlocker", + "discovered": "2023-09-25 14:26:28.565271" + }, + { + "post_title": "Nusmiles Hospital", + "group_name": "knight", + "discovered": "2023-09-25 18:34:02.436867" + }, + { + "post_title": "NTT Docomo", + "group_name": "ransomedvc", + "discovered": "2023-09-25 21:28:07.167751" + }, + { + "post_title": "ZZColdstores", + "group_name": "alphv", + "discovered": "2023-09-25 22:27:33.302232" + }, + { + "post_title": "zzcoldstores.com", + "group_name": "alphv", + "discovered": "2023-09-25 22:27:34.163965" + }, + { + "post_title": "powerhousenow.com", + "group_name": "noescape", + "discovered": "2023-09-26 01:48:28.422115" + }, + { + "post_title": "www.waterloomedia.com", + "group_name": "noescape", + "discovered": "2023-09-26 01:48:29.590326" + }, + { + "post_title": "SUD TRADING COMPANY", + "group_name": "8base", + "discovered": "2023-09-26 04:29:21.206337" + }, + { + "post_title": "Pond Security", + "group_name": "alphv", + "discovered": "2023-09-26 07:28:48.733126" + }, + { + "post_title": "WEBBER RESTAURANT GROUP", + "group_name": "8base", + "discovered": "2023-09-26 07:29:06.780180" + }, + { + "post_title": "Saint Mark Catholic Church", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:20.039283" + }, + { + "post_title": "Lutheran Church and Preschool", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:21.301475" + }, + { + "post_title": "W***** C***** A******** D******* D*****", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:22.645185" + }, + { + "post_title": "T****** H********** G****", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:23.458412" + }, + { + "post_title": "P******* U**********", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:24.271214" + }, + { + "post_title": "N****** O***********", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:25.173273" + }, + { + "post_title": "Kramer Tree Specialists, Inc", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:25.974823" + }, + { + "post_title": "C***** - *", + "group_name": "bianlian", + "discovered": "2023-09-26 10:38:26.783731" + }, + { + "post_title": "Istituto Prosperius", + "group_name": "rhysida", + "discovered": "2023-09-26 11:30:07.445457" + }, + { + "post_title": "Prestige Care", + "group_name": "alphv", + "discovered": "2023-09-26 12:31:36.886564" + }, + { + "post_title": "Nordic Security Services", + "group_name": "alphv", + "discovered": "2023-09-26 12:31:38.216549" + }, + { + "post_title": "Woody Anderson Ford", + "group_name": "alphv", + "discovered": "2023-09-26 12:31:38.856047" + }, + { + "post_title": "BestPack Packaging", + "group_name": "alphv", + "discovered": "2023-09-26 12:31:39.669734" + }, + { + "post_title": "Ropertech.com & Vertafore.com", + "group_name": "dunghill_leak", + "discovered": "2023-09-26 16:29:43.748746" + }, + { + "post_title": "Astro Lighting", + "group_name": "cactus", + "discovered": "2023-09-26 16:29:47.849519" + }, + { + "post_title": "Orthum Bau", + "group_name": "cactus", + "discovered": "2023-09-26 16:29:48.880085" + }, + { + "post_title": "GCserv.com", + "group_name": "alphv", + "discovered": "2023-09-26 19:33:04.447125" + }, + { + "post_title": "Go-Ahead Group", + "group_name": "dunghill_leak", + "discovered": "2023-09-26 20:31:50.295725" + }, + { + "post_title": "Roper & Vertafore", + "group_name": "dunghill_leak", + "discovered": "2023-09-26 20:31:51.474574" + }, + { + "post_title": "Foundation Professionals of Florida", + "group_name": "losttrust", + "discovered": "2023-09-26 20:31:58.091959" + }, + { + "post_title": "Carnelutti Law Firm", + "group_name": "losttrust", + "discovered": "2023-09-26 20:31:58.945956" + }, + { + "post_title": "Asia Vegetable", + "group_name": "losttrust", + "discovered": "2023-09-26 20:31:59.809896" + }, + { + "post_title": "Gateseven Media Group", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:00.548610" + }, + { + "post_title": "Swann's Furniture & Design", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:01.295133" + }, + { + "post_title": "Double V Construction", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:02.313531" + }, + { + "post_title": "Garlick & Markison", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:03.061788" + }, + { + "post_title": "Center Township Trustee", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:03.946900" + }, + { + "post_title": "EWBizservice", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:04.925997" + }, + { + "post_title": "I&Y Senior Care", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:05.948412" + }, + { + "post_title": "Contraband Control Specialists", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:06.999736" + }, + { + "post_title": "Gordon Law Firm", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:07.820675" + }, + { + "post_title": "GI Medical Services", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:08.536651" + }, + { + "post_title": "THEATER LEAGUE INC", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:09.589765" + }, + { + "post_title": "Colors Dress", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:10.344517" + }, + { + "post_title": "Ambrosini Holding", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:11.218914" + }, + { + "post_title": "EnCom Polymers", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:13.075097" + }, + { + "post_title": "Johnson Boiler Works", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:13.946402" + }, + { + "post_title": "Carmocal", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:14.935160" + }, + { + "post_title": "Marlboro Township Public School", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:15.738497" + }, + { + "post_title": "Gold Coin Restaurant", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:16.556010" + }, + { + "post_title": "Cullum Services", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:17.404965" + }, + { + "post_title": "Immanuel Christian School", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:18.181069" + }, + { + "post_title": "Central Trenching", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:18.914859" + }, + { + "post_title": "Mexican Government", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:19.921835" + }, + { + "post_title": "Professional Moving Company - Mackie Group", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:20.766223" + }, + { + "post_title": "The WorkPlace", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:21.673299" + }, + { + "post_title": "Specialty Process Equipment", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:22.539374" + }, + { + "post_title": "Paradise Custom Kitchens", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:23.502926" + }, + { + "post_title": "Omniatel", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:24.275156" + }, + { + "post_title": "Ananda Temple", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:25.074425" + }, + { + "post_title": "Reload SPA", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:25.923725" + }, + { + "post_title": "LoopLoc", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:26.756859" + }, + { + "post_title": "Liberty Lines", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:27.642744" + }, + { + "post_title": "Leiblein & Kollegen Steuerberatungsgesellschaft", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:28.480879" + }, + { + "post_title": "Key Construction", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:29.251404" + }, + { + "post_title": "JSM Group", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:29.985811" + }, + { + "post_title": "Jersey College", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:30.930074" + }, + { + "post_title": "SPEC Engineering", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:31.680494" + }, + { + "post_title": "Alexander City, Alabama", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:32.462112" + }, + { + "post_title": "SydganCorp", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:33.263057" + }, + { + "post_title": "Glassline", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:34.005440" + }, + { + "post_title": "Bit", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:34.885128" + }, + { + "post_title": "Brown and Streza", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:35.681271" + }, + { + "post_title": "TORMAX", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:36.616694" + }, + { + "post_title": "Ferguson Wellman", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:37.469374" + }, + { + "post_title": "Morgan School District", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:38.201583" + }, + { + "post_title": "Merced City School District", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:38.929419" + }, + { + "post_title": "Oasys Technologies", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:39.722013" + }, + { + "post_title": "Hoosier Uplands Economic Development", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:40.500049" + }, + { + "post_title": "Procab", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:41.512445" + }, + { + "post_title": "Popovici Niu Stoica & Asociaii", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:42.412127" + }, + { + "post_title": "Arazoza Brothers", + "group_name": "losttrust", + "discovered": "2023-09-26 20:32:43.136648" + }, + { + "post_title": "siameseasset.co.th", + "group_name": "qilin", + "discovered": "2023-09-26 22:31:57.267805" + }, + { + "post_title": "Robins & Morton", + "group_name": "dunghill_leak", + "discovered": "2023-09-26 22:32:00.477567" + }, + { + "post_title": "CannonDesign", + "group_name": "dunghill_leak", + "discovered": "2023-09-26 23:27:24.308563" + }, + { + "post_title": "www.scara.fr", + "group_name": "noescape", + "discovered": "2023-09-26 23:27:29.044908" + }, + { + "post_title": "LANDSTAR POWER ONTARIO INC", + "group_name": "medusa", + "discovered": "2023-09-27 00:34:53.733123" + }, + { + "post_title": "Acoustic Center ", + "group_name": "medusa", + "discovered": "2023-09-27 00:34:54.730727" + }, + { + "post_title": "Muenz-Engineered Sales", + "group_name": "8base", + "discovered": "2023-09-27 05:33:22.290035" + }, + { + "post_title": "The Polish American Association", + "group_name": "akira", + "discovered": "2023-09-27 12:30:49.388114" + }, + { + "post_title": "Unitex Textile Rental Services", + "group_name": "cactus", + "discovered": "2023-09-27 15:31:05.295232" + }, + { + "post_title": "UTC Overseas", + "group_name": "cactus", + "discovered": "2023-09-27 15:31:07.610394" + }, + { + "post_title": "Civic San Diego", + "group_name": "akira", + "discovered": "2023-09-27 16:36:38.227522" + }, + { + "post_title": "Notel", + "group_name": "8base", + "discovered": "2023-09-28 04:29:17.174810" + }, + { + "post_title": "www.kentie.nl", + "group_name": "noescape", + "discovered": "2023-09-28 09:26:47.723560" + }, + { + "post_title": "Hochschule Furtwangen University", + "group_name": "alphv", + "discovered": "2023-09-28 10:28:33.444556" + }, + { + "post_title": "simmonsequip.com", + "group_name": "threeam", + "discovered": "2023-09-28 12:27:04.843029" + }, + { + "post_title": "Jacobsen Construction", + "group_name": "incransom", + "discovered": "2023-09-28 15:33:42.520108" + }, + { + "post_title": "ezpaybuildings.net", + "group_name": "lockbit3", + "discovered": "2023-09-28 20:31:37.661001" + }, + { + "post_title": "fdf.org.uk", + "group_name": "lockbit3", + "discovered": "2023-09-28 20:31:38.629391" + }, + { + "post_title": "rexgroup.co.uk", + "group_name": "lockbit3", + "discovered": "2023-09-28 20:31:43.660755" + }, + { + "post_title": "Wexas", + "group_name": "play", + "discovered": "2023-09-28 20:31:51.135118" + }, + { + "post_title": "Plumbase", + "group_name": "play", + "discovered": "2023-09-28 20:31:51.826298" + }, + { + "post_title": "Kessler Collins", + "group_name": "play", + "discovered": "2023-09-28 20:31:52.742315" + }, + { + "post_title": "Terralogic", + "group_name": "play", + "discovered": "2023-09-28 21:31:48.099717" + }, + { + "post_title": "Van Eck Transport", + "group_name": "play", + "discovered": "2023-09-28 21:31:50.161522" + }, + { + "post_title": "BAMO", + "group_name": "play", + "discovered": "2023-09-28 21:31:50.966249" + }, + { + "post_title": "Amanzi Marble & Granite", + "group_name": "play", + "discovered": "2023-09-28 21:31:51.635953" + }, + { + "post_title": "Webb Landscape", + "group_name": "play", + "discovered": "2023-09-28 21:31:52.841469" + }, + { + "post_title": "Robuck Homes", + "group_name": "play", + "discovered": "2023-09-28 21:31:53.546009" + }, + { + "post_title": "Jacobson", + "group_name": "play", + "discovered": "2023-09-28 21:31:54.232674" + }, + { + "post_title": "!!!WARNING!!!", + "group_name": "alphv", + "discovered": "2023-09-28 22:29:41.102955" + }, + { + "post_title": "Kona Equity", + "group_name": "8base", + "discovered": "2023-09-29 06:26:18.926920" + }, + { + "post_title": "C.F. Service and Supply", + "group_name": "8base", + "discovered": "2023-09-29 06:26:19.504392" + }, + { + "post_title": "MNGI Digestive Health", + "group_name": "alphv", + "discovered": "2023-09-29 09:31:43.978944" + }, + { + "post_title": "Vertical Development", + "group_name": "akira", + "discovered": "2023-09-29 12:35:39.633571" + }, + { + "post_title": "Andalusia Group", + "group_name": "alphv", + "discovered": "2023-09-29 13:34:26.396685" + }, + { + "post_title": "Garn Mason Orthodontics was hacked. All insurance and personal data of customers was stole", + "group_name": "knight", + "discovered": "2023-09-29 19:30:33.509218" + }, + { + "post_title": "solveindustrial.com", + "group_name": "lockbit3", + "discovered": "2023-09-29 20:32:40.797850" + }, + { + "post_title": "palaciodosleiloes.com.br", + "group_name": "lockbit3", + "discovered": "2023-09-29 22:31:29.689195" + }, + { + "post_title": "mclaren health care", + "group_name": "alphv", + "discovered": "2023-09-29 23:29:04.495330" + }, + { + "post_title": "MNGI Digestive Health (TIME IS UP)", + "group_name": "alphv", + "discovered": "2023-09-30 02:29:31.640284" + }, + { + "post_title": "INC RANSOMWARE...", + "group_name": "donutleaks", + "discovered": "2023-09-30 04:27:49.408003" + }, + { + "post_title": "Motel One", + "group_name": "alphv", + "discovered": "2023-09-30 08:25:13.944763" + }, + { + "post_title": "Astre - Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-09-30 16:28:50.944658" + }, + { + "post_title": "Network Pacific Real Estate - Leak", + "group_name": "ragnarlocker", + "discovered": "2023-09-30 16:28:51.996442" + }, + { + "post_title": "Arga Medicali", + "group_name": "alphv", + "discovered": "2023-10-01 05:25:54.160057" + }, + { + "post_title": "https://questinc.com/", + "group_name": "trigona", + "discovered": "2023-10-01 12:27:34.967233" + }, + { + "post_title": "Shirin Travel Agency", + "group_name": "arvinclub", + "discovered": "2023-10-01 18:26:45.677993" + }, + { + "post_title": "Cascade Family Dental - Press Release", + "group_name": "monti", + "discovered": "2023-10-01 18:27:08.964834" + }, + { + "post_title": "Rainbow Travel Service - Press Release", + "group_name": "monti", + "discovered": "2023-10-01 19:32:55.389949" + }, + { + "post_title": "ckgroup.com.tw", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:29:57.466923" + }, + { + "post_title": "erga.com", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:29:59.541139" + }, + { + "post_title": "fcps1.org", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:30:00.543826" + }, + { + "post_title": "laspesainfamiglia.coop", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:30:02.801762" + }, + { + "post_title": "raeburns.co.uk", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:30:05.637800" + }, + { + "post_title": "tayloredservices.com", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:30:07.552953" + }, + { + "post_title": "thermae.nl", + "group_name": "lockbit3", + "discovered": "2023-10-01 22:30:08.598913" + }, + { + "post_title": "Federal University of Mato Grosso do Sul", + "group_name": "rhysida", + "discovered": "2023-10-02 01:49:43.123073" + }, + { + "post_title": "Kirkholm Maskiningeniører", + "group_name": "mallox", + "discovered": "2023-10-02 03:30:37.266162" + }, + { + "post_title": "Karam Chand Thapar & Bros Coal Sales", + "group_name": "medusa", + "discovered": "2023-10-02 08:29:55.789002" + }, + { + "post_title": "Windak", + "group_name": "medusa", + "discovered": "2023-10-02 09:29:26.942001" + }, + { + "post_title": "Steripharma", + "group_name": "medusa", + "discovered": "2023-10-02 09:29:28.008137" + }, + { + "post_title": "Pasouk biological company ", + "group_name": "arvinclub", + "discovered": "2023-10-02 11:30:56.277895" + }, + { + "post_title": "******g", + "group_name": "bianlian", + "discovered": "2023-10-02 11:31:18.314723" + }, + { + "post_title": "Pain Care", + "group_name": "alphv", + "discovered": "2023-10-02 13:35:15.696962" + }, + { + "post_title": "Confidential files", + "group_name": "ransomblog_noname", + "discovered": "2023-10-02 13:35:36.803224" + }, + { + "post_title": "AllCare Pharmacy", + "group_name": "lorenz", + "discovered": "2023-10-02 16:32:21.414616" + }, + { + "post_title": "RAT.", + "group_name": "donutleaks", + "discovered": "2023-10-02 23:27:33.196859" + }, + { + "post_title": "bellsonica.co.jp", + "group_name": "noescape", + "discovered": "2023-10-03 01:50:15.773493" + }, + { + "post_title": "www.sefag.hu", + "group_name": "noescape", + "discovered": "2023-10-03 01:50:16.884681" + }, + { + "post_title": "colsan.edu.mx", + "group_name": "noescape", + "discovered": "2023-10-03 01:50:17.616183" + }, + { + "post_title": "Measuresoft", + "group_name": "mallox", + "discovered": "2023-10-03 04:28:50.793113" + }, + { + "post_title": "Ted Pella Inc.", + "group_name": "8base", + "discovered": "2023-10-03 05:24:27.515476" + }, + { + "post_title": "Sabian Inc", + "group_name": "8base", + "discovered": "2023-10-03 05:24:28.430343" + }, + { + "post_title": "GDL Logística Integrada S.A", + "group_name": "knight", + "discovered": "2023-10-03 07:23:01.072919" + }, + { + "post_title": "co.rock.wi.us", + "group_name": "cuba", + "discovered": "2023-10-03 09:28:57.300941" + }, + { + "post_title": "aicsacorp.com", + "group_name": "lockbit3", + "discovered": "2023-10-03 09:29:04.508576" + }, + { + "post_title": "Groupe Fructa Partner - Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-10-03 15:30:56.454096" + }, + { + "post_title": "The One Group", + "group_name": "alphv", + "discovered": "2023-10-03 15:31:07.116684" + }, + { + "post_title": "Somagic", + "group_name": "medusa", + "discovered": "2023-10-03 15:31:23.272970" + }, + { + "post_title": "Maxco Supply", + "group_name": "moneymessage", + "discovered": "2023-10-03 17:34:14.743515" + }, + { + "post_title": "University of Defence - Part 1", + "group_name": "monti", + "discovered": "2023-10-03 19:34:13.288874" + }, + { + "post_title": "General Directorate of Migration of the Dominican Republic", + "group_name": "rhysida", + "discovered": "2023-10-04 00:33:32.146344" + }, + { + "post_title": "US Liner Company & American Made LLC", + "group_name": "0mega", + "discovered": "2023-10-04 02:36:54.400495" + }, + { + "post_title": "LEAKED! Motel One", + "group_name": "alphv", + "discovered": "2023-10-04 15:33:43.786512" + }, + { + "post_title": "Gruskin Group", + "group_name": "akira", + "discovered": "2023-10-04 16:31:20.509789" + }, + { + "post_title": "McLaren Health Care Corporation", + "group_name": "alphv", + "discovered": "2023-10-04 17:36:49.042939" + }, + { + "post_title": "Stavanger Municipality", + "group_name": "play", + "discovered": "2023-10-04 18:31:39.703708" + }, + { + "post_title": "CHARMANT Group", + "group_name": "play", + "discovered": "2023-10-04 18:31:41.340200" + }, + { + "post_title": "Cinepolis USA", + "group_name": "play", + "discovered": "2023-10-04 18:31:42.175435" + }, + { + "post_title": "Filtration Control", + "group_name": "play", + "discovered": "2023-10-04 18:31:42.947972" + }, + { + "post_title": "Security Instrument", + "group_name": "play", + "discovered": "2023-10-04 18:31:43.706829" + }, + { + "post_title": "Roof Management", + "group_name": "play", + "discovered": "2023-10-04 18:31:44.758004" + }, + { + "post_title": "Meridian Cooperative", + "group_name": "blackbyte", + "discovered": "2023-10-04 21:30:01.450620" + }, + { + "post_title": "ditronics.com", + "group_name": "qilin", + "discovered": "2023-10-04 21:30:37.945546" + }, + { + "post_title": "suncoast-chc.org", + "group_name": "lockbit3", + "discovered": "2023-10-04 22:30:09.405130" + }, + { + "post_title": "www.breastpumps.com", + "group_name": "noescape", + "discovered": "2023-10-05 02:43:10.214604" + }, + { + "post_title": "UPDATED: INC RANSOMWARE...", + "group_name": "donutleaks", + "discovered": "2023-10-05 11:28:44.984436" + }, + { + "post_title": "G****** ******s", + "group_name": "bianlian", + "discovered": "2023-10-05 13:32:01.116798" + }, + { + "post_title": "W******** ***d*** and ******g", + "group_name": "bianlian", + "discovered": "2023-10-05 13:32:02.225711" + }, + { + "post_title": "Limited", + "group_name": "bianlian", + "discovered": "2023-10-05 13:32:03.010002" + }, + { + "post_title": "Terwilliger Land Sur vey Engineers", + "group_name": "akira", + "discovered": "2023-10-05 13:32:09.017422" + }, + { + "post_title": "Learning Partnership West - Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-10-05 14:29:34.583986" + }, + { + "post_title": "Cornerstone Projects Group", + "group_name": "cactus", + "discovered": "2023-10-05 14:30:10.587114" + }, + { + "post_title": "RICOR Global Limited", + "group_name": "cactus", + "discovered": "2023-10-05 15:25:12.642328" + }, + { + "post_title": "sirva.com", + "group_name": "lockbit3", + "discovered": "2023-10-05 23:28:02.469918" + }, + { + "post_title": "(SALE) District Of Columbia Elections 600k lines VOTERS DATA", + "group_name": "ransomedvc", + "discovered": "2023-10-06 11:33:36.960039" + }, + { + "post_title": "Camara Municipal de Gondomar", + "group_name": "rhysida", + "discovered": "2023-10-06 00:27:33.134677" + }, + { + "post_title": "www.grangermedical.com", + "group_name": "noescape", + "discovered": "2023-10-06 02:35:11.517244" + }, + { + "post_title": "bm.co.th", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:42.052658" + }, + { + "post_title": "cote-expert-equipements.com", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:44.163604" + }, + { + "post_title": "eemotors.com", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:45.459332" + }, + { + "post_title": "litung.com.tw", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:48.759430" + }, + { + "post_title": "picosoft.biz", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:51.127277" + }, + { + "post_title": "sinedieadvisor.com", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:52.973039" + }, + { + "post_title": "tatatelebusiness.com", + "group_name": "lockbit3", + "discovered": "2023-10-06 08:25:54.113717" + }, + { + "post_title": "Agència Catalana de Notícies (ACN)", + "group_name": "medusa", + "discovered": "2023-10-06 10:25:50.068259" + }, + { + "post_title": "For UNOB", + "group_name": "monti", + "discovered": "2023-10-06 12:37:02.522248" + }, + { + "post_title": "International Presence Ltd - Leaked", + "group_name": "ragnarlocker", + "discovered": "2023-10-06 16:29:56.780925" + }, + { + "post_title": "sogebank.com", + "group_name": "lockbit3", + "discovered": "2023-10-06 17:29:43.586656" + }, + { + "post_title": "DallBogg Breach", + "group_name": "ransomedvc", + "discovered": "2023-10-07 07:31:16.708687" + }, + { + "post_title": "Partnership With Breachforums", + "group_name": "ransomedvc", + "discovered": "2023-10-07 08:28:13.010720" + }, + { + "post_title": "Healix", + "group_name": "akira", + "discovered": "2023-10-07 11:35:41.314457" + }, + { + "post_title": "The Hurley Group", + "group_name": "cactus", + "discovered": "2023-10-07 12:29:38.155746" + }, + { + "post_title": "University Obrany - Part 2 (Tiny Leak)", + "group_name": "monti", + "discovered": "2023-10-07 13:33:56.881235" + }, + { + "post_title": "Petersen Johnson", + "group_name": "8base", + "discovered": "2023-10-08 05:28:47.698436" + }, + { + "post_title": "IKM", + "group_name": "alphv", + "discovered": "2023-10-08 08:34:47.744013" + }, + { + "post_title": "rodoviariaonline.com.br", + "group_name": "ransomedvc", + "discovered": "2023-10-08 14:30:43.278433" + }, + { + "post_title": "webpag.com.br", + "group_name": "ransomedvc", + "discovered": "2023-10-08 14:30:44.736596" + }, + { + "post_title": "novoingresso.com.br", + "group_name": "ransomedvc", + "discovered": "2023-10-08 14:30:45.567123" + }, + { + "post_title": "iLife.bg", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:20.284106" + }, + { + "post_title": "pilini.bg Database, Download Now!", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:21.189955" + }, + { + "post_title": "I&G Brokers Database, Download Now", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:21.830125" + }, + { + "post_title": "Kasida.bg Database Leaked, Download", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:22.801270" + }, + { + "post_title": "Baumit Bulgaria", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:23.677424" + }, + { + "post_title": "Optimity UK", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:24.471744" + }, + { + "post_title": "I&G Brokers", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:25.416142" + }, + { + "post_title": "Metroclub.org", + "group_name": "ransomedvc", + "discovered": "2023-10-08 17:28:26.296978" + }, + { + "post_title": "urc-automation.com", + "group_name": "lockbit3", + "discovered": "2023-10-08 18:24:44.817119" + }, + { + "post_title": "Islamic Azad University of Shiraz", + "group_name": "arvinclub", + "discovered": "2023-10-08 19:34:26.413661" + }, + { + "post_title": "Guhring was hacked. Thousands of confidential files stolen.", + "group_name": "knight", + "discovered": "2023-10-08 20:32:06.282032" + }, + { + "post_title": "securicon.co.za", + "group_name": "lockbit3", + "discovered": "2023-10-08 21:41:03.664951" + }, + { + "post_title": "Southern Arkansas University", + "group_name": "rhysida", + "discovered": "2023-10-09 02:36:05.640190" + }, + { + "post_title": "BrData Tecnologia", + "group_name": "alphv", + "discovered": "2023-10-09 06:27:38.544463" + }, + { + "post_title": "enerjet.com.pe", + "group_name": "lockbit3", + "discovered": "2023-10-09 07:35:14.607822" + }, + { + "post_title": "i-Can Advisory Group inc", + "group_name": "alphv", + "discovered": "2023-10-09 08:31:04.445244" + }, + { + "post_title": "Law Society of South Africa", + "group_name": "alphv", + "discovered": "2023-10-09 10:34:18.376389" + }, + { + "post_title": "dothanhauto.com", + "group_name": "lockbit3", + "discovered": "2023-10-09 12:38:01.413734" + }, + { + "post_title": "wtpartnership.asia", + "group_name": "qilin", + "discovered": "2023-10-09 13:43:39.049681" + }, + { + "post_title": "vsmpo-tirus.com", + "group_name": "lockbit3", + "discovered": "2023-10-09 14:30:16.326203" + }, + { + "post_title": "Superline - Press Release", + "group_name": "monti", + "discovered": "2023-10-09 14:30:21.790863" + }, + { + "post_title": "atlantatech.edu", + "group_name": "lockbit3", + "discovered": "2023-10-09 17:36:56.946238" + }, + { + "post_title": "starplast.ft", + "group_name": "lockbit3", + "discovered": "2023-10-09 17:37:05.209433" + }, + { + "post_title": "First Judicial Circuit - Florida Court", + "group_name": "alphv", + "discovered": "2023-10-09 18:44:39.529693" + }, + { + "post_title": "Wyndemere Senior Care, LLC", + "group_name": "alphv", + "discovered": "2023-10-09 20:31:27.974452" + }, + { + "post_title": "www.geacam.es", + "group_name": "noescape", + "discovered": "2023-10-09 20:31:49.141470" + }, + { + "post_title": "centredusablon.com", + "group_name": "noescape", + "discovered": "2023-10-09 21:32:17.298434" + }, + { + "post_title": "M??? T??????", + "group_name": "play", + "discovered": "2023-10-09 22:27:35.471633" + }, + { + "post_title": "www.penfieldfire.org", + "group_name": "noescape", + "discovered": "2023-10-09 22:27:41.068690" + }, + { + "post_title": "Hughes Gill Cochrane Tinetti", + "group_name": "play", + "discovered": "2023-10-09 23:29:10.587282" + }, + { + "post_title": "Centek industries", + "group_name": "play", + "discovered": "2023-10-09 23:29:11.419325" + }, + { + "post_title": "NachtExpress Austria GmbH", + "group_name": "play", + "discovered": "2023-10-09 23:29:12.231192" + }, + { + "post_title": "WCM Europe", + "group_name": "play", + "discovered": "2023-10-09 23:29:12.839856" + }, + { + "post_title": "Starr Finley", + "group_name": "play", + "discovered": "2023-10-09 23:29:13.611877" + }, + { + "post_title": "Saltire Energy", + "group_name": "play", + "discovered": "2023-10-09 23:29:14.406686" + }, + { + "post_title": "www.fruchtverarbeitung.de", + "group_name": "noescape", + "discovered": "2023-10-09 23:29:20.200561" + }, + { + "post_title": "www.opl.it", + "group_name": "noescape", + "discovered": "2023-10-10 00:34:44.953629" + }, + { + "post_title": "Van Oirschot", + "group_name": "ransomhouse", + "discovered": "2023-10-10 01:50:38.681469" + }, + { + "post_title": "National Health Mission. Department of Heath & Family Welfare, Govt. of U.P", + "group_name": "knight", + "discovered": "2023-10-10 05:33:30.642593" + }, + { + "post_title": "ExdionInsurance", + "group_name": "8base", + "discovered": "2023-10-10 06:29:25.022168" + }, + { + "post_title": "mountstmarys", + "group_name": "cuba", + "discovered": "2023-10-10 10:28:06.646740" + }, + { + "post_title": "foremostgroups.com", + "group_name": "lockbit3", + "discovered": "2023-10-10 19:35:34.596745" + }, + { + "post_title": "National Health Mission. Department of Health & Family Welfare, Govt. of U.P", + "group_name": "knight", + "discovered": "2023-10-10 19:35:50.818160" + }, + { + "post_title": "Alliance Virgil Roberts Leadership Academy", + "group_name": "snatch", + "discovered": "2023-10-10 22:28:56.244999" + }, + { + "post_title": "effigest.fr", + "group_name": "noescape", + "discovered": "2023-10-10 22:29:19.332947" + }, + { + "post_title": "Metro Transit", + "group_name": "play", + "discovered": "2023-10-10 23:33:15.400544" + }, + { + "post_title": "We monetize your corporate access", + "group_name": "everest", + "discovered": "2023-10-11 01:51:34.531604" + }, + { + "post_title": "Sobieski", + "group_name": "incransom", + "discovered": "2023-10-11 05:29:54.098697" + }, + { + "post_title": "Pelindo", + "group_name": "bianlian", + "discovered": "2023-10-11 09:34:04.542444" + }, + { + "post_title": "Air Canada", + "group_name": "bianlian", + "discovered": "2023-10-11 09:34:06.773098" + }, + { + "post_title": "Instron", + "group_name": "bianlian", + "discovered": "2023-10-11 09:34:09.759395" + }, + { + "post_title": "Catarineau & Givens P.A.", + "group_name": "alphv", + "discovered": "2023-10-11 10:29:59.662475" + }, + { + "post_title": "hugohaeffner.com", + "group_name": "blackbasta", + "discovered": "2023-10-11 11:30:00.336204" + }, + { + "post_title": "www.edwardian.com", + "group_name": "blackbasta", + "discovered": "2023-10-11 11:30:01.005506" + }, + { + "post_title": "www.stantonwilliams.com", + "group_name": "blackbasta", + "discovered": "2023-10-11 11:30:01.875294" + }, + { + "post_title": "Village Building Co.", + "group_name": "incransom", + "discovered": "2023-10-11 15:29:27.934509" + }, + { + "post_title": "Mid-America Real Estate Group", + "group_name": "alphv", + "discovered": "2023-10-11 17:55:46.774589" + }, + { + "post_title": "Eicon Controle Inteligentes", + "group_name": "ragnarlocker", + "discovered": "2023-10-11 19:27:40.317877" + }, + { + "post_title": "instantaccess-co.com", + "group_name": "noescape", + "discovered": "2023-10-11 19:28:12.892574" + }, + { + "post_title": "Scotbeef Ltd. - Leaks", + "group_name": "ragnarlocker", + "discovered": "2023-10-11 21:28:28.118536" + }, + { + "post_title": "ldlcasvel.com", + "group_name": "noescape", + "discovered": "2023-10-11 21:29:06.912798" + }, + { + "post_title": "Institut Technologique FCBA", + "group_name": "alphv", + "discovered": "2023-10-11 22:32:19.901977" + }, + { + "post_title": "KTUA Landscape Architecture and Planning", + "group_name": "8base", + "discovered": "2023-10-12 05:29:28.590820" + }, + { + "post_title": "Comtek Advanced Structures, a Latecoere Company", + "group_name": "8base", + "discovered": "2023-10-12 05:29:29.507585" + }, + { + "post_title": "Instron and ITW Inc", + "group_name": "bianlian", + "discovered": "2023-10-12 06:33:08.617641" + }, + { + "post_title": "ZOUARY & Associés ", + "group_name": "medusa", + "discovered": "2023-10-12 12:27:04.062897" + }, + { + "post_title": "SIMTA ", + "group_name": "medusa", + "discovered": "2023-10-12 12:27:04.859249" + }, + { + "post_title": "Evasión ", + "group_name": "medusa", + "discovered": "2023-10-12 12:27:05.662686" + }, + { + "post_title": "Neodata", + "group_name": "medusa", + "discovered": "2023-10-12 12:27:06.810083" + }, + { + "post_title": "Acoustic Center", + "group_name": "medusa", + "discovered": "2023-10-12 12:27:08.209235" + }, + { + "post_title": "Tri-Way Manufacturing Technologies", + "group_name": "moneymessage", + "discovered": "2023-10-12 13:36:55.727897" + }, + { + "post_title": "https://www.fpz.de/", + "group_name": "trigona", + "discovered": "2023-10-12 14:31:41.456386" + }, + { + "post_title": "www.seattlehousing.org", + "group_name": "noescape", + "discovered": "2023-10-12 16:33:32.583886" + }, + { + "post_title": "Vicon industries inc.", + "group_name": "incransom", + "discovered": "2023-10-12 17:31:59.254562" + }, + { + "post_title": "Fuck Palestine! We buy your access!!", + "group_name": "ransomedvc", + "discovered": "2023-10-12 17:32:00.289240" + }, + { + "post_title": "NEW TWITTER", + "group_name": "ransomedvc", + "discovered": "2023-10-12 19:30:01.051742" + }, + { + "post_title": "AKBASOGLU HOLDING Trans KA", + "group_name": "knight", + "discovered": "2023-10-13 09:32:24.882022" + }, + { + "post_title": "http://www.multidev.com", + "group_name": "blacksuit", + "discovered": "2023-10-13 11:39:19.834977" + }, + { + "post_title": "Hospital Italiano de Buenos Aires", + "group_name": "knight", + "discovered": "2023-10-13 11:39:22.644261" + }, + { + "post_title": "Morrison Community Hospital", + "group_name": "alphv", + "discovered": "2023-10-13 13:31:14.229280" + }, + { + "post_title": "ttps://www.alconex.com/", + "group_name": "trigona", + "discovered": "2023-10-13 13:31:37.753007" + }, + { + "post_title": "Cleveland City Schools", + "group_name": "incransom", + "discovered": "2023-10-13 16:32:50.784065" + }, + { + "post_title": "koreapetroleum.com", + "group_name": "noescape", + "discovered": "2023-10-13 17:35:12.696050" + }, + { + "post_title": "Catholic Charities", + "group_name": "incransom", + "discovered": "2023-10-13 20:29:15.640281" + }, + { + "post_title": "Colonial Pipeline Company", + "group_name": "ransomedvc", + "discovered": "2023-10-13 20:29:16.605047" + }, + { + "post_title": "Kimia Tadbir Kiyan", + "group_name": "arvinclub", + "discovered": "2023-10-13 21:33:27.412073" + }, + { + "post_title": "Intech", + "group_name": "snatch", + "discovered": "2023-10-13 23:30:29.741466" + }, + { + "post_title": "Northwest Eye Care Professionals", + "group_name": "rhysida", + "discovered": "2023-10-14 05:28:37.865428" + }, + { + "post_title": "Accenture Breach Evidence & Debunking Rob Lee’s Lies", + "group_name": "ransomedvc", + "discovered": "2023-10-14 05:28:40.084889" + }, + { + "post_title": "Jahesh Innovation", + "group_name": "arvinclub", + "discovered": "2023-10-14 11:30:35.234803" + }, + { + "post_title": "The Law Offices of Julian Lewis Sanders & Associates", + "group_name": "alphv", + "discovered": "2023-10-14 14:32:14.467598" + }, + { + "post_title": "DUHOCAAU", + "group_name": "mallox", + "discovered": "2023-10-14 22:29:51.002372" + }, + { + "post_title": "QSI INC - Credit Cards & Transaction Processing", + "group_name": "alphv", + "discovered": "2023-10-15 02:04:11.899924" + }, + { + "post_title": "webpag.com.br database leaked", + "group_name": "ransomedvc", + "discovered": "2023-10-15 13:27:24.373491" + }, + { + "post_title": "RE : Clarification", + "group_name": "ransomedvc", + "discovered": "2023-10-15 17:32:28.916546" + }, + { + "post_title": "Islamic Azad University Electronic Campus", + "group_name": "arvinclub", + "discovered": "2023-10-15 21:32:33.657514" + }, + { + "post_title": "Rob Lee Evidence : Sneak Peek", + "group_name": "ransomedvc", + "discovered": "2023-10-15 22:36:19.006310" + }, + { + "post_title": "Cogal Industry", + "group_name": "snatch", + "discovered": "2023-10-15 23:29:02.413756" + }, + { + "post_title": "www.ampersand.tv", + "group_name": "blackbasta", + "discovered": "2023-10-16 08:30:50.803328" + }, + { + "post_title": "Boise Rescue Mission Ministries", + "group_name": "alphv", + "discovered": "2023-10-16 14:30:46.275995" + }, + { + "post_title": "mthollynissan.com", + "group_name": "noescape", + "discovered": "2023-10-16 15:32:44.231879" + }, + { + "post_title": "Believe Productions", + "group_name": "medusa", + "discovered": "2023-10-16 17:36:49.420837" + }, + { + "post_title": "Ransomedvc Pentest Services!", + "group_name": "ransomedvc", + "discovered": "2023-10-16 17:36:56.910153" + }, + { + "post_title": "sdproducts.co.uk", + "group_name": "lockbit3", + "discovered": "2023-10-16 18:38:22.459590" + }, + { + "post_title": "Symposia Organizzazione Congressi S.R.L", + "group_name": "medusa", + "discovered": "2023-10-16 18:38:27.666020" + }, + { + "post_title": "Global Product Sales", + "group_name": "medusa", + "discovered": "2023-10-16 18:38:28.484637" + }, + { + "post_title": "EDB ", + "group_name": "medusa", + "discovered": "2023-10-16 18:38:29.106182" + }, + { + "post_title": "ATI Traduction", + "group_name": "medusa", + "discovered": "2023-10-16 18:38:29.722231" + }, + { + "post_title": "OmniVision Technologies", + "group_name": "cactus", + "discovered": "2023-10-16 19:43:30.476191" + }, + { + "post_title": "SCS SpA", + "group_name": "cactus", + "discovered": "2023-10-16 19:43:31.383862" + }, + { + "post_title": "cpstate.org", + "group_name": "lockbit3", + "discovered": "2023-10-16 22:27:14.810129" + }, + { + "post_title": "www.gasmart.mx", + "group_name": "noescape", + "discovered": "2023-10-17 02:35:19.228529" + }, + { + "post_title": "Greenpoint", + "group_name": "incransom", + "discovered": "2023-10-17 04:26:07.385260" + }, + { + "post_title": "www.piemmeonline.it", + "group_name": "blackbasta", + "discovered": "2023-10-17 13:33:34.377444" + }, + { + "post_title": "SIIX Corporation", + "group_name": "alphv", + "discovered": "2023-10-17 15:27:04.540704" + }, + { + "post_title": "kasperekusaoptical.com", + "group_name": "lockbit3", + "discovered": "2023-10-17 18:33:07.302860" + }, + { + "post_title": "Catarineau & Givens P.A. FULL LEAK!", + "group_name": "alphv", + "discovered": "2023-10-17 20:33:49.067090" + }, + { + "post_title": "Rotorcraft Leasing Company", + "group_name": "0mega", + "discovered": "2023-10-17 21:37:05.225640" + }, + { + "post_title": "kbs-accountants.nl", + "group_name": "noescape", + "discovered": "2023-10-18 07:38:36.078721" + }, + { + "post_title": "Jebsen and Co. Ltd.", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:02.910891" + }, + { + "post_title": "International Biomedical Ltd", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:03.475161" + }, + { + "post_title": "Company, P.C", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:04.298409" + }, + { + "post_title": "Gilbreath", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:05.169439" + }, + { + "post_title": "** P*************s, Inc", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:05.868628" + }, + { + "post_title": "U***** S*** S******* Inc", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:06.497685" + }, + { + "post_title": "ITW Inc", + "group_name": "bianlian", + "discovered": "2023-10-18 15:33:07.366128" + }, + { + "post_title": "fdf.org", + "group_name": "lockbit3", + "discovered": "2023-10-18 19:37:52.087760" + }, + { + "post_title": "CADRE", + "group_name": "alphv", + "discovered": "2023-10-19 02:43:18.185984" + }, + { + "post_title": "Innovattel LLC", + "group_name": "alphv", + "discovered": "2023-10-19 03:31:04.665164" + }, + { + "post_title": "smart-union.org", + "group_name": "lockbit3", + "discovered": "2023-10-19 08:33:40.963116" + }, + { + "post_title": "frs-fnrs.be", + "group_name": "lockbit3", + "discovered": "2023-10-19 15:36:19.393544" + }, + { + "post_title": "nirolaw.com", + "group_name": "lockbit3", + "discovered": "2023-10-19 15:36:23.230880" + }, + { + "post_title": "salaw.com", + "group_name": "lockbit3", + "discovered": "2023-10-19 15:36:25.780113" + }, + { + "post_title": "thecsi.com", + "group_name": "lockbit3", + "discovered": "2023-10-19 15:36:27.803846" + }, + { + "post_title": "Inventum Øst", + "group_name": "akira", + "discovered": "2023-10-19 15:36:36.095788" + }, + { + "post_title": "Visionary Integratio n Professionals", + "group_name": "akira", + "discovered": "2023-10-19 15:36:36.796610" + }, + { + "post_title": "QuadraNet Enterprise s", + "group_name": "akira", + "discovered": "2023-10-19 15:36:37.405869" + }, + { + "post_title": "Associated Wholesale Grocers", + "group_name": "play", + "discovered": "2023-10-19 17:33:14.592009" + }, + { + "post_title": "http://www.gov.br", + "group_name": "blacksuit", + "discovered": "2023-10-19 18:36:45.947218" + }, + { + "post_title": "Superline - Full Leak", + "group_name": "monti", + "discovered": "2023-10-19 19:38:54.328296" + }, + { + "post_title": "kvc constructors inc", + "group_name": "alphv", + "discovered": "2023-10-20 11:32:32.523374" + }, + { + "post_title": "Southland Integrated Services", + "group_name": "akira", + "discovered": "2023-10-20 11:32:55.505102" + }, + { + "post_title": "Royal College of Phy sicians and Surgeons of Glasgow", + "group_name": "akira", + "discovered": "2023-10-20 13:32:01.412313" + }, + { + "post_title": "Protector Fire Servi ces", + "group_name": "akira", + "discovered": "2023-10-20 13:32:02.377630" + }, + { + "post_title": "degrootgroep.nl", + "group_name": "lockbit3", + "discovered": "2023-10-20 15:46:05.369781" + }, + { + "post_title": "We Hire Pentesters(5BTC Payout)", + "group_name": "ransomedvc", + "discovered": "2023-10-20 17:35:11.358899" + }, + { + "post_title": "charleystaxi.com", + "group_name": "lockbit3", + "discovered": "2023-10-20 18:35:34.271466" + }, + { + "post_title": "uaes.com", + "group_name": "lockbit3", + "discovered": "2023-10-20 19:32:49.884895" + }, + { + "post_title": "Milk Source", + "group_name": "play", + "discovered": "2023-10-20 19:32:55.401217" + }, + { + "post_title": "Venture Plastics", + "group_name": "play", + "discovered": "2023-10-20 19:32:56.154608" + }, + { + "post_title": "The Fountain Group", + "group_name": "play", + "discovered": "2023-10-20 19:32:56.835171" + }, + { + "post_title": "Hygieneering", + "group_name": "play", + "discovered": "2023-10-20 19:32:57.398102" + }, + { + "post_title": "Ipswich Bay Glass", + "group_name": "play", + "discovered": "2023-10-20 19:32:58.074438" + }, + { + "post_title": "arietishealth.com", + "group_name": "clop", + "discovered": "2023-10-20 20:36:18.122675" + }, + { + "post_title": "Polar Tech Industries", + "group_name": "play", + "discovered": "2023-10-20 21:39:30.838726" + }, + { + "post_title": "RADISE", + "group_name": "play", + "discovered": "2023-10-20 21:39:31.575790" + }, + { + "post_title": "Kobi Karp Architecture and Interior Design", + "group_name": "play", + "discovered": "2023-10-20 21:39:32.478715" + }, + { + "post_title": "Bridgeport Fittings", + "group_name": "play", + "discovered": "2023-10-20 21:39:33.457322" + }, + { + "post_title": "Tru-val Electric", + "group_name": "play", + "discovered": "2023-10-20 21:39:34.268856" + }, + { + "post_title": "Epaccsys", + "group_name": "play", + "discovered": "2023-10-20 21:39:35.092471" + }, + { + "post_title": "Williamson Foodservice", + "group_name": "play", + "discovered": "2023-10-20 21:39:35.876383" + }, + { + "post_title": "The Law Offices of Julian Lewis Sanders & Associates FULL LEAK!", + "group_name": "alphv", + "discovered": "2023-10-21 08:33:40.564236" + }, + { + "post_title": "Sidockgroup.", + "group_name": "donutleaks", + "discovered": "2023-10-21 17:29:57.396586" + }, + { + "post_title": "www.strongtie.com", + "group_name": "blackbasta", + "discovered": "2023-10-21 18:33:21.631747" + }, + { + "post_title": "Foursquare Healthcare", + "group_name": "ransomhouse", + "discovered": "2023-10-21 21:34:11.540696" + }, + { + "post_title": "chs.ca", + "group_name": "lockbit3", + "discovered": "2023-10-21 21:34:15.061944" + }, + { + "post_title": "APS - Automotive Parts Solutions", + "group_name": "8base", + "discovered": "2023-10-22 07:43:16.344727" + }, + { + "post_title": "JC Roman Construction", + "group_name": "8base", + "discovered": "2023-10-22 07:43:17.525934" + }, + { + "post_title": "Brunton Shaw", + "group_name": "8base", + "discovered": "2023-10-22 07:43:18.513006" + }, + { + "post_title": "Edwards Business Systems", + "group_name": "8base", + "discovered": "2023-10-22 07:43:19.307278" + }, + { + "post_title": "Ransomedvc Launches A forum", + "group_name": "ransomedvc", + "discovered": "2023-10-22 18:40:07.081275" + }, + { + "post_title": "harlingentx.gov", + "group_name": "lockbit3", + "discovered": "2023-10-23 07:37:30.425293" + }, + { + "post_title": "mamu.be", + "group_name": "lockbit3", + "discovered": "2023-10-23 07:37:32.856810" + }, + { + "post_title": "Ada-Borup-West School", + "group_name": "ransomblog_noname", + "discovered": "2023-10-23 12:39:57.476949" + }, + { + "post_title": "Native Counselling Services of Alberta", + "group_name": "medusa", + "discovered": "2023-10-23 14:38:47.072434" + }, + { + "post_title": "Beaver Lake Cree Nation", + "group_name": "medusa", + "discovered": "2023-10-23 14:38:48.004234" + }, + { + "post_title": "EHPAD", + "group_name": "medusa", + "discovered": "2023-10-23 14:38:49.031089" + }, + { + "post_title": "Safpro", + "group_name": "medusa", + "discovered": "2023-10-23 14:38:49.726568" + }, + { + "post_title": "ZOUARY & Associés", + "group_name": "medusa", + "discovered": "2023-10-23 14:38:50.566807" + }, + { + "post_title": "www.icschool-uae.com", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:24.478894" + }, + { + "post_title": "www.bmw-ducati.com", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:25.243235" + }, + { + "post_title": "www.ucb.edu.pr", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:26.025256" + }, + { + "post_title": "www.misterminit.eu", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:26.886401" + }, + { + "post_title": "www.kbs-accountants.nl", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:27.698016" + }, + { + "post_title": "www.koreapetroleum.com", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:29.516966" + }, + { + "post_title": "www.centredusablon.ca", + "group_name": "noescape", + "discovered": "2023-10-23 15:38:30.268050" + }, + { + "post_title": "3-D Engineering", + "group_name": "alphv", + "discovered": "2023-10-23 16:39:30.663844" + }, + { + "post_title": "University of Defence - Full Leak", + "group_name": "monti", + "discovered": "2023-10-23 16:39:52.043510" + }, + { + "post_title": "Newconcepttech", + "group_name": "cuba", + "discovered": "2023-10-23 18:50:36.909397" + }, + { + "post_title": "www.portage.k12.in.us", + "group_name": "alphv", + "discovered": "2023-10-23 20:40:43.640442" + }, + { + "post_title": "3-D Engineering/ 3-D Precision Machine", + "group_name": "alphv", + "discovered": "2023-10-24 06:34:17.495511" + }, + { + "post_title": "SURTECO North America", + "group_name": "8base", + "discovered": "2023-10-24 06:34:36.744891" + }, + { + "post_title": "grupocobra.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 08:31:53.843637" + }, + { + "post_title": "hgmonline.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 11:43:05.272389" + }, + { + "post_title": "EDUARDO G. BARROSO", + "group_name": "8base", + "discovered": "2023-10-24 12:38:43.857446" + }, + { + "post_title": "City of Pittsburg", + "group_name": "alphv", + "discovered": "2023-10-24 13:56:13.420236" + }, + { + "post_title": "CMC Group", + "group_name": "akira", + "discovered": "2023-10-24 15:57:54.121503" + }, + { + "post_title": "victorvilleca.gov", + "group_name": "noescape", + "discovered": "2023-10-24 19:51:23.596545" + }, + { + "post_title": "www.floristssupply.com", + "group_name": "noescape", + "discovered": "2023-10-24 19:51:24.465082" + }, + { + "post_title": "ambic.co.uk", + "group_name": "lockbit3", + "discovered": "2023-10-24 20:44:02.063207" + }, + { + "post_title": "camico.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 20:44:04.303154" + }, + { + "post_title": "excon.cl", + "group_name": "lockbit3", + "discovered": "2023-10-24 20:44:06.802342" + }, + { + "post_title": "linkmicrotek.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 20:44:10.192258" + }, + { + "post_title": "mgbwlaw.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 20:44:11.687309" + }, + { + "post_title": "fern-plastics.co.uk", + "group_name": "lockbit3", + "discovered": "2023-10-24 21:46:10.177703" + }, + { + "post_title": "martinsonservices.com", + "group_name": "lockbit3", + "discovered": "2023-10-24 21:46:13.182833" + }, + { + "post_title": "LBA", + "group_name": "alphv", + "discovered": "2023-10-25 09:51:14.053913" + }, + { + "post_title": "Harmann Studios Inc", + "group_name": "8base", + "discovered": "2023-10-25 09:51:33.757824" + }, + { + "post_title": "Pine River Pre-Pack, Inc", + "group_name": "8base", + "discovered": "2023-10-25 09:51:34.475428" + }, + { + "post_title": "AVA Limited", + "group_name": "8base", + "discovered": "2023-10-25 09:51:35.506293" + }, + { + "post_title": "Carter Transport Claims", + "group_name": "8base", + "discovered": "2023-10-25 09:51:36.373971" + }, + { + "post_title": "cvcheart.com", + "group_name": "qilin", + "discovered": "2023-10-25 10:46:27.561261" + }, + { + "post_title": "Broad River Retail/Ashley Store", + "group_name": "lorenz", + "discovered": "2023-10-25 11:57:38.141649" + }, + { + "post_title": "Direct Mail Corporation", + "group_name": "incransom", + "discovered": "2023-10-25 12:52:20.281658" + }, + { + "post_title": "Ancillae-Assumpta Academy", + "group_name": "snatch", + "discovered": "2023-10-25 21:53:41.626585" + }, + { + "post_title": "M&n Management", + "group_name": "snatch", + "discovered": "2023-10-25 21:53:42.355497" + }, + { + "post_title": "www.fortive.com", + "group_name": "blackbasta", + "discovered": "2023-10-25 23:56:33.302362" + }, + { + "post_title": "Versatile Card Technology Private Limited", + "group_name": "mallox", + "discovered": "2023-10-26 05:36:21.962001" + }, + { + "post_title": "sgworld.com", + "group_name": "qilin", + "discovered": "2023-10-26 13:23:19.379632" + }, + { + "post_title": "apexga.bank", + "group_name": "abyss", + "discovered": "2023-10-26 13:23:24.496165" + }, + { + "post_title": "claimtek.com", + "group_name": "threeam", + "discovered": "2023-10-26 15:12:40.643711" + }, + { + "post_title": "doverchem.com", + "group_name": "lockbit3", + "discovered": "2023-10-26 17:06:57.912586" + }, + { + "post_title": "caminorealcs.org", + "group_name": "lockbit3", + "discovered": "2023-10-26 19:30:58.626434" + }, + { + "post_title": "Laiho Group", + "group_name": "play", + "discovered": "2023-10-26 20:48:32.990155" + }, + { + "post_title": "maniland.co.uk", + "group_name": "threeam", + "discovered": "2023-10-26 20:48:40.185732" + }, + { + "post_title": "CBS", + "group_name": "alphv", + "discovered": "2023-10-27 05:54:54.873100" + }, + { + "post_title": "ZINSER GmbH", + "group_name": "8base", + "discovered": "2023-10-27 05:55:17.587377" + }, + { + "post_title": "Wilson Lewis", + "group_name": "8base", + "discovered": "2023-10-27 05:55:18.827519" + }, + { + "post_title": "www.volex.com", + "group_name": "blackbasta", + "discovered": "2023-10-27 09:31:41.389389" + }, + { + "post_title": "WWW.VOLEX.COM", + "group_name": "blackbasta", + "discovered": "2023-10-27 10:31:18.071846" + }, + { + "post_title": "Stanford University", + "group_name": "akira", + "discovered": "2023-10-27 12:40:57.458735" + }, + { + "post_title": "tilden-coil.com", + "group_name": "lockbit3", + "discovered": "2023-10-27 13:55:43.811778" + }, + { + "post_title": "Mutual Underwriters", + "group_name": "alphv", + "discovered": "2023-10-27 14:58:38.872503" + }, + { + "post_title": "Telecommunications Services of Trinidad and Tobago (tstt.co.tt)", + "group_name": "ransomexx", + "discovered": "2023-10-27 16:55:40.570513" + }, + { + "post_title": "boeing.com", + "group_name": "lockbit3", + "discovered": "2023-10-27 17:56:00.631408" + }, + { + "post_title": "Alam Flora Sdn Bhd", + "group_name": "incransom", + "discovered": "2023-10-27 18:42:12.542013" + }, + { + "post_title": "Morrison Community Hospital FULL HUGE LEAK + BONUS", + "group_name": "alphv", + "discovered": "2023-10-28 15:07:14.947538" + }, + { + "post_title": "IBACOS", + "group_name": "8base", + "discovered": "2023-10-28 15:07:38.530724" + }, + { + "post_title": "TNT Plastic Molding", + "group_name": "bianlian", + "discovered": "2023-10-28 17:33:08.430267" + }, + { + "post_title": "Het Veer", + "group_name": "play", + "discovered": "2023-10-28 23:01:05.791029" + }, + { + "post_title": "KDI Office Technology", + "group_name": "play", + "discovered": "2023-10-28 23:01:06.938620" + }, + { + "post_title": "Online Development", + "group_name": "play", + "discovered": "2023-10-28 23:01:07.733225" + }, + { + "post_title": "Drug Emporium", + "group_name": "play", + "discovered": "2023-10-28 23:01:08.614905" + }, + { + "post_title": "Bush Refrigeration", + "group_name": "play", + "discovered": "2023-10-28 23:01:09.494705" + }, + { + "post_title": "Waterstone Faucets", + "group_name": "play", + "discovered": "2023-10-28 23:01:10.436982" + }, + { + "post_title": "Sam Tell Companies", + "group_name": "play", + "discovered": "2023-10-28 23:01:11.242237" + }, + { + "post_title": "Yingling Aviation", + "group_name": "play", + "discovered": "2023-10-28 23:01:12.034102" + }, + { + "post_title": "CK Associates", + "group_name": "play", + "discovered": "2023-10-28 23:01:12.775489" + }, + { + "post_title": "Encompass Elements", + "group_name": "play", + "discovered": "2023-10-28 23:01:13.945518" + }, + { + "post_title": "Alpha Mortgage", + "group_name": "play", + "discovered": "2023-10-28 23:01:15.129723" + }, + { + "post_title": "Dallas County", + "group_name": "play", + "discovered": "2023-10-28 23:01:16.405599" + }, + { + "post_title": "WACOSA", + "group_name": "alphv", + "discovered": "2023-10-29 19:16:22.531973" + }, + { + "post_title": "Global Export Marketing Co. Ltd.", + "group_name": "incransom", + "discovered": "2023-10-29 23:03:21.943309" + }, + { + "post_title": "Jockey Club", + "group_name": "medusa", + "discovered": "2023-10-30 10:31:09.308198" + }, + { + "post_title": "RANSOMEDVC is for sale", + "group_name": "ransomedvc", + "discovered": "2023-10-30 10:31:18.937643" + }, + { + "post_title": "mottamaholdings.com", + "group_name": "lockbit3", + "discovered": "2023-10-30 12:51:53.131032" + }, + { + "post_title": "topcharoen.co.th", + "group_name": "lockbit3", + "discovered": "2023-10-30 12:51:56.925869" + }, + { + "post_title": "ecabusinessenergy.com", + "group_name": "lockbit3", + "discovered": "2023-10-30 17:20:12.195384" + }, + { + "post_title": "frontlineequipment.com.au", + "group_name": "lockbit3", + "discovered": "2023-10-30 17:20:13.812124" + }, + { + "post_title": "groupemontclair.com", + "group_name": "lockbit3", + "discovered": "2023-10-30 17:20:14.951798" + }, + { + "post_title": "Freeman Johnson", + "group_name": "akira", + "discovered": "2023-10-30 17:20:26.800850" + }, + { + "post_title": "aces-int.com", + "group_name": "lockbit3", + "discovered": "2023-10-30 21:14:34.188386" + }, + { + "post_title": "aiq.com.mx", + "group_name": "lockbit3", + "discovered": "2023-10-30 21:14:35.074230" + }, + { + "post_title": "Brodart", + "group_name": "play", + "discovered": "2023-10-30 21:14:47.944875" + }, + { + "post_title": "Kingsport Times-News", + "group_name": "8base", + "discovered": "2023-10-31 06:38:31.914828" + }, + { + "post_title": "straphaels.org.uk", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:36.117717" + }, + { + "post_title": "www.strumet.pl", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:37.280732" + }, + { + "post_title": "www.mckeagandco.com", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:38.218792" + }, + { + "post_title": "www.prclinical.com", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:38.915757" + }, + { + "post_title": "www.spolzino.com", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:39.754273" + }, + { + "post_title": "www.dynametal.com", + "group_name": "noescape", + "discovered": "2023-10-31 06:38:41.679070" + }, + { + "post_title": "Romulo Law Offices", + "group_name": "8base", + "discovered": "2023-10-31 09:19:40.889895" + }, + { + "post_title": "twosaints.org.uk", + "group_name": "noescape", + "discovered": "2023-10-31 09:19:44.671330" + }, + { + "post_title": "Mount Carmel Care Center", + "group_name": "medusa", + "discovered": "2023-10-31 11:23:26.687384" + }, + { + "post_title": "smartuigroup.com.au", + "group_name": "lockbit3", + "discovered": "2023-10-31 13:08:18.423625" + }, + { + "post_title": "ageroute.sn", + "group_name": "lockbit3", + "discovered": "2023-10-31 15:27:27.480717" + }, + { + "post_title": "bildco.ae", + "group_name": "lockbit3", + "discovered": "2023-10-31 15:27:29.223426" + }, + { + "post_title": "riohondo.edu", + "group_name": "lockbit3", + "discovered": "2023-10-31 15:27:39.067940" + }, + { + "post_title": "utec.com.sa", + "group_name": "lockbit3", + "discovered": "2023-10-31 15:27:42.211923" + }, + { + "post_title": "Prasan Enterprises", + "group_name": "bianlian", + "discovered": "2023-10-31 15:27:43.968196" + }, + { + "post_title": "B*****", + "group_name": "bianlian", + "discovered": "2023-10-31 15:27:44.694602" + }, + { + "post_title": "Auswide Services", + "group_name": "bianlian", + "discovered": "2023-10-31 15:27:45.413999" + }, + { + "post_title": "Patriotisk Selskab", + "group_name": "akira", + "discovered": "2023-10-31 17:38:36.414878" + }, + { + "post_title": "G??P???? S????y???", + "group_name": "play", + "discovered": "2023-10-31 19:11:05.779793" + }, + { + "post_title": "Universal Sewing Supply", + "group_name": "incransom", + "discovered": "2023-10-31 19:11:14.030716" + }, + { + "post_title": "Advarra Inc.", + "group_name": "alphv", + "discovered": "2023-11-01 00:36:59.917779" + }, + { + "post_title": "Advarra Inc.(PFIZER,GILEAD ETC AFFECTED)", + "group_name": "alphv", + "discovered": "2023-11-01 02:47:55.932035" + }, + { + "post_title": "Schöler Fördertechnik AG", + "group_name": "8base", + "discovered": "2023-11-01 06:42:35.653770" + }, + { + "post_title": "JAI A/S", + "group_name": "8base", + "discovered": "2023-11-01 06:42:36.596248" + }, + { + "post_title": "Armstrong Consultants", + "group_name": "8base", + "discovered": "2023-11-01 06:42:37.133188" + }, + { + "post_title": "Traxall France", + "group_name": "8base", + "discovered": "2023-11-01 06:42:38.081957" + }, + { + "post_title": "www.vinovalie.com", + "group_name": "noescape", + "discovered": "2023-11-01 06:42:41.458091" + }, + { + "post_title": "Town of Lowa", + "group_name": "alphv", + "discovered": "2023-11-01 14:46:53.591558" + }, + { + "post_title": "www.gsp.com.br", + "group_name": "blackbasta", + "discovered": "2023-11-01 14:46:57.564509" + }, + { + "post_title": "www.gannons.co.uk", + "group_name": "blackbasta", + "discovered": "2023-11-01 14:46:58.398455" + }, + { + "post_title": "Veneto Transportes", + "group_name": "knight", + "discovered": "2023-11-01 14:47:25.782181" + }, + { + "post_title": "Pontifica Universidad Católica de Chile", + "group_name": "knight", + "discovered": "2023-11-01 14:47:26.555270" + }, + { + "post_title": "Michels Markisen GmbH", + "group_name": "knight", + "discovered": "2023-11-01 14:47:27.431791" + }, + { + "post_title": "Emmea Srl", + "group_name": "knight", + "discovered": "2023-11-01 14:47:28.735463" + }, + { + "post_title": "il Centro", + "group_name": "knight", + "discovered": "2023-11-01 14:47:29.699602" + }, + { + "post_title": "Intellipop Fiber Internet", + "group_name": "knight", + "discovered": "2023-11-01 14:47:30.392442" + }, + { + "post_title": "BMW Munique Motors", + "group_name": "knight", + "discovered": "2023-11-01 14:47:31.418951" + }, + { + "post_title": "Kinesis Film Srl", + "group_name": "knight", + "discovered": "2023-11-01 14:47:32.203295" + }, + { + "post_title": "Mario de Cecco - Workwear & Corporate Wear IT", + "group_name": "knight", + "discovered": "2023-11-01 14:47:32.846999" + }, + { + "post_title": "Faieta Motorcompany IT", + "group_name": "knight", + "discovered": "2023-11-01 14:47:33.917163" + }, + { + "post_title": "https://tanatexchemicals.com", + "group_name": "metaencryptor", + "discovered": "2023-11-01 16:37:24.321786" + }, + { + "post_title": "summithealth.com", + "group_name": "lockbit3", + "discovered": "2023-11-01 18:38:32.902254" + }, + { + "post_title": "Benefit Management", + "group_name": "knight", + "discovered": "2023-11-01 18:38:47.503384" + }, + { + "post_title": "US Claims Solutions", + "group_name": "knight", + "discovered": "2023-11-01 18:38:48.435727" + }, + { + "post_title": "Software Systems ", + "group_name": "medusa", + "discovered": "2023-11-01 20:39:21.922147" + }, + { + "post_title": "EDB", + "group_name": "medusa", + "discovered": "2023-11-01 20:39:22.728772" + }, + { + "post_title": "Detroit Symphony Orchestra", + "group_name": "snatch", + "discovered": "2023-11-01 22:34:30.654246" + }, + { + "post_title": "sanmiguel.iph", + "group_name": "lockbit3", + "discovered": "2023-11-01 22:34:46.320801" + }, + { + "post_title": "steelofcarolina.com", + "group_name": "lockbit3", + "discovered": "2023-11-01 22:34:48.420033" + }, + { + "post_title": "vitaresearch.com", + "group_name": "lockbit3", + "discovered": "2023-11-01 22:34:50.781622" + }, + { + "post_title": "http://hacap.org", + "group_name": "blacksuit", + "discovered": "2023-11-01 22:35:03.828261" + }, + { + "post_title": "Bluewater Health (CA) and others", + "group_name": "daixin", + "discovered": "2023-11-02 00:47:52.797551" + }, + { + "post_title": "degregoris.com", + "group_name": "lockbit3", + "discovered": "2023-11-02 02:37:07.424970" + }, + { + "post_title": "imprex.es", + "group_name": "lockbit3", + "discovered": "2023-11-02 02:37:10.227491" + }, + { + "post_title": "kitprofs.com", + "group_name": "lockbit3", + "discovered": "2023-11-02 02:37:11.678163" + }, + { + "post_title": "raumberg-gumpenstein.at", + "group_name": "lockbit3", + "discovered": "2023-11-02 02:37:14.988177" + }, + { + "post_title": "schwob.swiss", + "group_name": "noescape", + "discovered": "2023-11-02 04:32:15.900902" + }, + { + "post_title": "HAL Allergy", + "group_name": "alphv", + "discovered": "2023-11-02 06:36:07.776302" + }, + { + "post_title": "www.rnwooler.co.uk", + "group_name": "noescape", + "discovered": "2023-11-02 06:36:22.801109" + }, + { + "post_title": "Groupe Faubourg", + "group_name": "8base", + "discovered": "2023-11-02 08:35:40.430485" + }, + { + "post_title": "GO! Handelsschool Aalst", + "group_name": "rhysida", + "discovered": "2023-11-02 10:35:43.642226" + }, + { + "post_title": "AF Supply", + "group_name": "alphv", + "discovered": "2023-11-02 12:40:18.566149" + }, + { + "post_title": "www.imancorp.es", + "group_name": "blackbasta", + "discovered": "2023-11-02 12:40:21.452529" + }, + { + "post_title": "psmicorp.com", + "group_name": "lockbit3", + "discovered": "2023-11-02 12:40:30.036864" + }, + { + "post_title": "Contact Cottrell and McCullough", + "group_name": "alphv", + "discovered": "2023-11-02 14:38:30.351167" + }, + { + "post_title": "lafase.cl", + "group_name": "lockbit3", + "discovered": "2023-11-02 18:42:53.247493" + }, + { + "post_title": "bindagroup.com", + "group_name": "lockbit3", + "discovered": "2023-11-02 20:40:57.726362" + }, + { + "post_title": "shimano.com", + "group_name": "lockbit3", + "discovered": "2023-11-02 20:41:05.908886" + }, + { + "post_title": "Ricardo", + "group_name": "play", + "discovered": "2023-11-02 22:40:42.405307" + }, + { + "post_title": "Gsp Components", + "group_name": "play", + "discovered": "2023-11-02 22:40:44.563851" + }, + { + "post_title": "North Dakota Grain Inspection Services", + "group_name": "play", + "discovered": "2023-11-02 22:40:45.308901" + }, + { + "post_title": "Hilyards", + "group_name": "play", + "discovered": "2023-11-02 22:40:46.133137" + }, + { + "post_title": "Craft-Maid", + "group_name": "play", + "discovered": "2023-11-02 22:40:49.578873" + }, + { + "post_title": "JDRM Engineering", + "group_name": "play", + "discovered": "2023-11-02 22:40:50.446739" + }, + { + "post_title": "Bry-Air", + "group_name": "play", + "discovered": "2023-11-02 22:40:51.618864" + }, + { + "post_title": "Warning to Advarra & Gadi!", + "group_name": "alphv", + "discovered": "2023-11-03 00:50:27.030620" + }, + { + "post_title": "www.agiledisplaysolutions.com", + "group_name": "noescape", + "discovered": "2023-11-03 04:36:37.120391" + }, + { + "post_title": "www.laborforce.com", + "group_name": "noescape", + "discovered": "2023-11-03 06:34:47.568943" + }, + { + "post_title": "microtrain.net", + "group_name": "lockbit3", + "discovered": "2023-11-03 08:34:52.103034" + }, + { + "post_title": "jewell.edu", + "group_name": "lockbit3", + "discovered": "2023-11-03 16:38:09.631546" + }, + { + "post_title": "abhmfg.com", + "group_name": "lockbit3", + "discovered": "2023-11-03 18:35:11.294993" + }, + { + "post_title": "tasl.co.th", + "group_name": "lockbit3", + "discovered": "2023-11-03 18:35:17.047350" + }, + { + "post_title": "translink.se", + "group_name": "lockbit3", + "discovered": "2023-11-03 18:35:18.464611" + }, + { + "post_title": "unimed.coop.br", + "group_name": "lockbit3", + "discovered": "2023-11-03 18:35:19.464227" + }, + { + "post_title": "Livability", + "group_name": "incransom", + "discovered": "2023-11-03 18:35:26.514662" + }, + { + "post_title": "GeoPoint Surveying", + "group_name": "play", + "discovered": "2023-11-03 22:39:36.513095" + }, + { + "post_title": "http://www.apers13.com", + "group_name": "ciphbit", + "discovered": "2023-11-03 22:39:43.493476" + }, + { + "post_title": "infosysbpm.com", + "group_name": "lockbit3", + "discovered": "2023-11-04 18:52:29.584154" + }, + { + "post_title": "tks.co.th", + "group_name": "lockbit3", + "discovered": "2023-11-04 18:52:35.792697" + }, + { + "post_title": "aseankorea.org", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:29.328281" + }, + { + "post_title": "benya.capital", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:30.596209" + }, + { + "post_title": "bresselouhannaiseintercom.fr", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:31.445735" + }, + { + "post_title": "brlogistics.net", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:32.014197" + }, + { + "post_title": "egco.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:33.442814" + }, + { + "post_title": "emiliacentrale.it", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:34.159250" + }, + { + "post_title": "global-value-web.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:35.246525" + }, + { + "post_title": "letillet.btprms.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:36.784291" + }, + { + "post_title": "mat-antriebstechnik.de", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:37.557620" + }, + { + "post_title": "nckb.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:38.519975" + }, + { + "post_title": "nfcc.gov.my", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:39.195474" + }, + { + "post_title": "ospedalecoq.it", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:40.083234" + }, + { + "post_title": "sansasecurity.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:41.428703" + }, + { + "post_title": "springeroil.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:42.441310" + }, + { + "post_title": "studio483.com", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:43.018979" + }, + { + "post_title": "szutest.cz", + "group_name": "lockbit3", + "discovered": "2023-11-05 08:30:44.942104" + }, + { + "post_title": "unique-relations.at", + "group_name": "qilin", + "discovered": "2023-11-05 10:34:08.340154" + }, + { + "post_title": "Assurius.be", + "group_name": "qilin", + "discovered": "2023-11-05 10:34:08.963548" + }, + { + "post_title": "SMH Group", + "group_name": "rhysida", + "discovered": "2023-11-05 12:38:16.920796" + }, + { + "post_title": "lathamcenters.org", + "group_name": "abyss", + "discovered": "2023-11-05 18:35:51.536160" + }, + { + "post_title": "Corsica-Ferries", + "group_name": "alphv", + "discovered": "2023-11-05 20:35:16.456747" + }, + { + "post_title": "penanshin", + "group_name": "alphv", + "discovered": "2023-11-05 20:35:16.806452" + }, + { + "post_title": "Canadian Psychological Association", + "group_name": "medusa", + "discovered": "2023-11-05 20:35:27.594377" + }, + { + "post_title": "Zon Beachside", + "group_name": "medusa", + "discovered": "2023-11-05 20:35:28.157022" + }, + { + "post_title": "Leaguers", + "group_name": "medusa", + "discovered": "2023-11-05 20:35:28.829615" + }, + { + "post_title": "Unimed Blumenau", + "group_name": "medusa", + "discovered": "2023-11-05 20:35:29.570734" + }, + { + "post_title": "Weidmann & Associates", + "group_name": "medusa", + "discovered": "2023-11-05 20:35:30.086226" + }, + { + "post_title": "Advarra leak", + "group_name": "alphv", + "discovered": "2023-11-05 22:33:20.108897" + }, + { + "post_title": "Currax Pharmaceuticals", + "group_name": "alphv", + "discovered": "2023-11-06 00:50:37.334383" + }, + { + "post_title": "Comfloresta", + "group_name": "alphv", + "discovered": "2023-11-06 04:34:04.149322" + }, + { + "post_title": "concretevalue.com", + "group_name": "lockbit3", + "discovered": "2023-11-06 10:35:19.500128" + }, + { + "post_title": "howlandlaw.net", + "group_name": "lockbit3", + "discovered": "2023-11-06 10:35:22.160167" + }, + { + "post_title": "UTI Group", + "group_name": "cactus", + "discovered": "2023-11-06 10:35:32.893788" + }, + { + "post_title": "MultiMasters", + "group_name": "cactus", + "discovered": "2023-11-06 10:35:33.606189" + }, + { + "post_title": "GEOCOM", + "group_name": "cactus", + "discovered": "2023-11-06 10:35:34.154335" + }, + { + "post_title": "Mount St. Mary's Seminary", + "group_name": "rhysida", + "discovered": "2023-11-06 12:35:08.823517" + }, + { + "post_title": "eyephy.com", + "group_name": "lockbit3", + "discovered": "2023-11-06 16:34:38.409354" + }, + { + "post_title": "kbrlaw.com", + "group_name": "lockbit3", + "discovered": "2023-11-06 16:34:40.301328" + }, + { + "post_title": "good-lawyer.com", + "group_name": "lockbit3", + "discovered": "2023-11-06 18:33:36.442135" + }, + { + "post_title": "EFU Life Assurance", + "group_name": "incransom", + "discovered": "2023-11-06 18:33:47.350358" + }, + { + "post_title": "Japan Aviation Electronics Industry, Ltd.", + "group_name": "alphv", + "discovered": "2023-11-07 02:38:11.121414" + }, + { + "post_title": "Aceromex (Unpay-Start Leaking)", + "group_name": "ragroup", + "discovered": "2023-11-07 06:38:04.245985" + }, + { + "post_title": "Yuxin Automobile Co.Ltd (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-11-07 06:38:04.758310" + }, + { + "post_title": "panaya", + "group_name": "cuba", + "discovered": "2023-11-07 08:34:31.842525" + }, + { + "post_title": "prime-art", + "group_name": "cuba", + "discovered": "2023-11-07 08:34:33.094273" + }, + { + "post_title": "ccdrc.pt", + "group_name": "lockbit3", + "discovered": "2023-11-07 08:34:38.711870" + }, + { + "post_title": "Hopewell Area School District", + "group_name": "medusa", + "discovered": "2023-11-07 10:31:05.614422" + }, + { + "post_title": "www.triflex.nl", + "group_name": "blackbasta", + "discovered": "2023-11-07 14:42:20.280941" + }, + { + "post_title": "www.tt-engineering.nl", + "group_name": "blackbasta", + "discovered": "2023-11-07 14:42:21.413801" + }, + { + "post_title": "BioPower Sustainable Energy Corporation", + "group_name": "akira", + "discovered": "2023-11-07 14:42:38.247317" + }, + { + "post_title": "BITZER", + "group_name": "akira", + "discovered": "2023-11-07 14:42:39.113309" + }, + { + "post_title": "Access to the large database of a US Medical organization", + "group_name": "everest", + "discovered": "2023-11-07 16:34:07.854997" + }, + { + "post_title": "Certified Mortgage Planners", + "group_name": "alphv", + "discovered": "2023-11-07 16:34:13.611747" + }, + { + "post_title": "www.cozwolle.nl", + "group_name": "blackbasta", + "discovered": "2023-11-07 16:34:15.979886" + }, + { + "post_title": "www.nicecloud.nl", + "group_name": "blackbasta", + "discovered": "2023-11-07 16:34:16.684372" + }, + { + "post_title": "Truck Bodies & Equipment International", + "group_name": "lorenz", + "discovered": "2023-11-07 18:38:25.993666" + }, + { + "post_title": "Indah Water Konsortium", + "group_name": "rhysida", + "discovered": "2023-11-07 22:32:02.120043" + }, + { + "post_title": "Bakrie Group & Bakrie Sumatera Plantations", + "group_name": "alphv", + "discovered": "2023-11-08 00:47:26.833580" + }, + { + "post_title": "allenovery.com", + "group_name": "lockbit3", + "discovered": "2023-11-08 00:47:29.657736" + }, + { + "post_title": "http://www.neodomos.fr", + "group_name": "ciphbit", + "discovered": "2023-11-08 00:47:44.002490" + }, + { + "post_title": "gitiusa.com", + "group_name": "lockbit3", + "discovered": "2023-11-08 02:38:25.847895" + }, + { + "post_title": "oefederal.org", + "group_name": "noescape", + "discovered": "2023-11-08 04:38:29.157238" + }, + { + "post_title": "www.avianor.com", + "group_name": "noescape", + "discovered": "2023-11-08 06:33:38.198349" + }, + { + "post_title": "foley.k12.mn.us", + "group_name": "lockbit3", + "discovered": "2023-11-08 10:33:46.220778" + }, + { + "post_title": "sheehyware.com", + "group_name": "alphv", + "discovered": "2023-11-08 16:35:07.685714" + }, + { + "post_title": "Michael Garron Hospi tal", + "group_name": "akira", + "discovered": "2023-11-08 16:35:19.694206" + }, + { + "post_title": "www.orionlibrary.org", + "group_name": "noescape", + "discovered": "2023-11-08 16:35:22.857852" + }, + { + "post_title": "www.califanocarrelli.it", + "group_name": "blackbasta", + "discovered": "2023-11-08 18:36:10.237913" + }, + { + "post_title": "amberhillgroup.com", + "group_name": "lockbit3", + "discovered": "2023-11-08 20:33:46.861681" + }, + { + "post_title": "fawry.com", + "group_name": "lockbit3", + "discovered": "2023-11-08 20:33:49.019238" + }, + { + "post_title": "Crown Supply Co", + "group_name": "play", + "discovered": "2023-11-09 00:47:19.474627" + }, + { + "post_title": "Inclinator", + "group_name": "play", + "discovered": "2023-11-09 00:47:20.093872" + }, + { + "post_title": "Conditioned Air", + "group_name": "play", + "discovered": "2023-11-09 00:47:20.896126" + }, + { + "post_title": "Meindl", + "group_name": "play", + "discovered": "2023-11-09 00:47:21.557994" + }, + { + "post_title": "Ackerman-Estvold", + "group_name": "play", + "discovered": "2023-11-09 00:47:22.230582" + }, + { + "post_title": "The Supply Room Companies & Citron WorkSpaces", + "group_name": "play", + "discovered": "2023-11-09 00:47:23.626201" + }, + { + "post_title": "DESIGNA Verkehrsleittechnik", + "group_name": "play", + "discovered": "2023-11-09 00:47:24.393254" + }, + { + "post_title": "M.R. Williams", + "group_name": "play", + "discovered": "2023-11-09 00:47:25.320235" + }, + { + "post_title": "Identification Products", + "group_name": "play", + "discovered": "2023-11-09 00:47:25.944004" + }, + { + "post_title": "JS Hovnanian & Sons", + "group_name": "play", + "discovered": "2023-11-09 00:47:27.209215" + }, + { + "post_title": "www.jeffcoat.us", + "group_name": "noescape", + "discovered": "2023-11-09 10:31:44.054414" + }, + { + "post_title": "Cogdell Memorial Hospital", + "group_name": "lorenz", + "discovered": "2023-11-09 12:37:06.240999" + }, + { + "post_title": "Koh Brothers", + "group_name": "lorenz", + "discovered": "2023-11-09 12:37:07.891210" + }, + { + "post_title": "ggarabia.com", + "group_name": "lockbit3", + "discovered": "2023-11-09 12:37:30.425921" + }, + { + "post_title": "Simons Petroleum/Max um Petroleum/Pilot T homas Logistics", + "group_name": "akira", + "discovered": "2023-11-09 12:37:43.457215" + }, + { + "post_title": "gotocfr.com", + "group_name": "lockbit3", + "discovered": "2023-11-09 14:34:10.486479" + }, + { + "post_title": "SALUS Controls", + "group_name": "akira", + "discovered": "2023-11-09 14:34:24.584979" + }, + { + "post_title": "Autocommerce", + "group_name": "akira", + "discovered": "2023-11-09 14:34:25.668439" + }, + { + "post_title": "City Furniture Hire", + "group_name": "akira", + "discovered": "2023-11-09 14:34:26.535525" + }, + { + "post_title": "Magsaysay Maritime - Press Release", + "group_name": "monti", + "discovered": "2023-11-09 16:36:17.057609" + }, + { + "post_title": "Rudolf Venture Chemical Inc - Press Release", + "group_name": "monti", + "discovered": "2023-11-09 16:36:18.239791" + }, + { + "post_title": "Battle Motors (Crane Carrier, CCC)", + "group_name": "akira", + "discovered": "2023-11-09 16:36:20.045827" + }, + { + "post_title": "www.ezifloor.com.au", + "group_name": "noescape", + "discovered": "2023-11-09 18:33:31.923387" + }, + { + "post_title": "Sinotech Group Taiwan", + "group_name": "alphv", + "discovered": "2023-11-09 22:34:09.555743" + }, + { + "post_title": "www.actionsantetravail.fr", + "group_name": "noescape", + "discovered": "2023-11-09 22:34:29.511153" + }, + { + "post_title": "aei.cc", + "group_name": "lockbit3", + "discovered": "2023-11-10 06:34:31.178265" + }, + { + "post_title": "Azienda Ospedaliera Universitaria Integrata di Verona", + "group_name": "rhysida", + "discovered": "2023-11-10 06:34:43.598597" + }, + { + "post_title": "morningstarco.com", + "group_name": "lockbit3", + "discovered": "2023-11-10 14:34:33.993690" + }, + { + "post_title": "Mariposa Landscapes, Inc", + "group_name": "alphv", + "discovered": "2023-11-10 16:34:25.573078" + }, + { + "post_title": "floortex.com", + "group_name": "lockbit3", + "discovered": "2023-11-10 22:31:10.143259" + }, + { + "post_title": "Dragos Inc.", + "group_name": "alphv", + "discovered": "2023-11-11 02:57:09.054354" + }, + { + "post_title": "motordepot.co.uk", + "group_name": "abyss", + "discovered": "2023-11-11 10:30:13.948096" + }, + { + "post_title": "estes-express.com", + "group_name": "lockbit3", + "discovered": "2023-11-11 12:35:50.006425" + }, + { + "post_title": "shawneemilling.com", + "group_name": "abyss", + "discovered": "2023-11-11 12:35:59.320427" + }, + { + "post_title": "MHM Health", + "group_name": "rhysida", + "discovered": "2023-11-11 14:33:19.212442" + }, + { + "post_title": "www.pargroup.com", + "group_name": "noescape", + "discovered": "2023-11-11 16:34:03.586563" + }, + { + "post_title": "aten.com", + "group_name": "lockbit3", + "discovered": "2023-11-11 18:30:44.302118" + }, + { + "post_title": "creatz3d.sg", + "group_name": "lockbit3", + "discovered": "2023-11-11 18:30:46.040135" + }, + { + "post_title": "loiret.fr", + "group_name": "lockbit3", + "discovered": "2023-11-11 18:30:48.648098" + }, + { + "post_title": "quifatex.com", + "group_name": "lockbit3", + "discovered": "2023-11-11 18:30:50.457767" + }, + { + "post_title": "vital.co.za", + "group_name": "lockbit3", + "discovered": "2023-11-11 18:30:52.579632" + }, + { + "post_title": "heinrichseegers.de", + "group_name": "lockbit3", + "discovered": "2023-11-11 20:35:46.485913" + }, + { + "post_title": "roth-werkzeugbau.de", + "group_name": "lockbit3", + "discovered": "2023-11-11 20:35:51.042215" + }, + { + "post_title": "Pricesmart", + "group_name": "alphv", + "discovered": "2023-11-12 08:35:57.705323" + }, + { + "post_title": "hotel-ampere-paris.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 10:32:11.329254" + }, + { + "post_title": "plati.it", + "group_name": "lockbit3", + "discovered": "2023-11-12 10:32:14.775491" + }, + { + "post_title": "carsonteam.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 12:35:41.856875" + }, + { + "post_title": "cityofclarksville.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 16:34:34.901513" + }, + { + "post_title": "digitaldruck-esser.de", + "group_name": "lockbit3", + "discovered": "2023-11-12 18:37:07.115705" + }, + { + "post_title": "hotelemc2.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 18:37:09.442426" + }, + { + "post_title": "modafabrics.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 18:37:11.493980" + }, + { + "post_title": "thewalkerschool.org", + "group_name": "lockbit3", + "discovered": "2023-11-12 18:37:14.305754" + }, + { + "post_title": "wombleco.com", + "group_name": "lockbit3", + "discovered": "2023-11-12 18:37:15.995099" + }, + { + "post_title": "aegean.gr", + "group_name": "lockbit3", + "discovered": "2023-11-12 20:36:48.283677" + }, + { + "post_title": "www.mprlift.se", + "group_name": "noescape", + "discovered": "2023-11-13 02:41:35.796039" + }, + { + "post_title": "www.putzelelectric.com", + "group_name": "noescape", + "discovered": "2023-11-13 04:33:34.831842" + }, + { + "post_title": "msim.de", + "group_name": "lockbit3", + "discovered": "2023-11-13 08:35:49.137782" + }, + { + "post_title": "muellersystems.com", + "group_name": "lockbit3", + "discovered": "2023-11-13 08:35:49.857681" + }, + { + "post_title": "NSEIT LIMITED", + "group_name": "bianlian", + "discovered": "2023-11-13 14:41:31.916249" + }, + { + "post_title": "United Site Services", + "group_name": "bianlian", + "discovered": "2023-11-13 14:41:32.990864" + }, + { + "post_title": "Moneris Solutions", + "group_name": "medusa", + "discovered": "2023-11-13 14:41:37.672405" + }, + { + "post_title": "portadelaidefc", + "group_name": "cuba", + "discovered": "2023-11-13 18:36:18.348323" + }, + { + "post_title": "St. Lucie County Tax Collector’s", + "group_name": "alphv", + "discovered": "2023-11-13 18:36:21.354692" + }, + { + "post_title": "ASM GLOBAL", + "group_name": "alphv", + "discovered": "2023-11-13 20:32:41.756758" + }, + { + "post_title": "tarltonandson.com", + "group_name": "lockbit3", + "discovered": "2023-11-13 20:32:51.521359" + }, + { + "post_title": "Warren General Hospital", + "group_name": "ransomhouse", + "discovered": "2023-11-14 00:47:03.414662" + }, + { + "post_title": "www.carespring.com", + "group_name": "noescape", + "discovered": "2023-11-14 02:42:58.305581" + }, + { + "post_title": "www.sosbonedocs.com", + "group_name": "noescape", + "discovered": "2023-11-14 06:38:11.350864" + }, + { + "post_title": "www.landercountynv.org", + "group_name": "noescape", + "discovered": "2023-11-14 06:38:12.012301" + }, + { + "post_title": "Execuzen", + "group_name": "alphv", + "discovered": "2023-11-14 10:38:44.976588" + }, + { + "post_title": "diagnostechs", + "group_name": "cuba", + "discovered": "2023-11-14 12:36:18.353605" + }, + { + "post_title": "4set.es", + "group_name": "alphv", + "discovered": "2023-11-14 14:36:37.632927" + }, + { + "post_title": "Naftor and Grupa Pern (Naftoport/ SIARKOPOL/ SARMATIA/ NAFTOSERWIS) is the most dangerous ", + "group_name": "alphv", + "discovered": "2023-11-14 14:36:38.508133" + }, + { + "post_title": "SheelaFoam", + "group_name": "alphv", + "discovered": "2023-11-14 16:34:22.894031" + }, + { + "post_title": "www.boulangerieauger.com", + "group_name": "blackbasta", + "discovered": "2023-11-14 16:34:25.527066" + }, + { + "post_title": "www.rekord.de", + "group_name": "blackbasta", + "discovered": "2023-11-14 16:34:26.303444" + }, + { + "post_title": "www.cmcsheetmetal.com", + "group_name": "blackbasta", + "discovered": "2023-11-14 16:34:26.975288" + }, + { + "post_title": "www.agromatic.de", + "group_name": "blackbasta", + "discovered": "2023-11-14 16:34:27.490033" + }, + { + "post_title": "Gnome Landscapes", + "group_name": "alphv", + "discovered": "2023-11-14 18:31:56.893408" + }, + { + "post_title": "www.maytec.de", + "group_name": "blackbasta", + "discovered": "2023-11-14 18:31:59.540312" + }, + { + "post_title": "Premise Health", + "group_name": "alphv", + "discovered": "2023-11-15 00:46:13.745094" + }, + { + "post_title": "ConSpare", + "group_name": "play", + "discovered": "2023-11-15 00:46:25.051707" + }, + { + "post_title": "Guntert & Zimmerman", + "group_name": "play", + "discovered": "2023-11-15 00:46:25.612347" + }, + { + "post_title": "Wyatt Detention Center", + "group_name": "play", + "discovered": "2023-11-15 00:46:26.119697" + }, + { + "post_title": "KaDeWe", + "group_name": "play", + "discovered": "2023-11-15 00:46:26.773161" + }, + { + "post_title": "Road Scholar Transport", + "group_name": "play", + "discovered": "2023-11-15 00:46:27.560935" + }, + { + "post_title": "Thompson Candy", + "group_name": "play", + "discovered": "2023-11-15 00:46:28.345800" + }, + { + "post_title": "Global Technologies Racing Ltd", + "group_name": "play", + "discovered": "2023-11-15 00:46:29.143192" + }, + { + "post_title": "Nomot", + "group_name": "play", + "discovered": "2023-11-15 00:46:29.705258" + }, + { + "post_title": "Trademark Property", + "group_name": "play", + "discovered": "2023-11-15 00:46:30.277751" + }, + { + "post_title": "Fgs", + "group_name": "play", + "discovered": "2023-11-15 00:46:30.751647" + }, + { + "post_title": "Proforma Albrecht", + "group_name": "play", + "discovered": "2023-11-15 00:46:31.393244" + }, + { + "post_title": "PIKE Technologies", + "group_name": "play", + "discovered": "2023-11-15 00:46:32.028809" + }, + { + "post_title": "MeridianLink", + "group_name": "alphv", + "discovered": "2023-11-15 02:40:58.140272" + }, + { + "post_title": "kwhfreeze.fi", + "group_name": "lockbit3", + "discovered": "2023-11-15 08:35:13.047799" + }, + { + "post_title": "EOS", + "group_name": "lorenz", + "discovered": "2023-11-15 14:30:23.580642" + }, + { + "post_title": "ADH Health Products Inc", + "group_name": "alphv", + "discovered": "2023-11-15 14:30:32.795350" + }, + { + "post_title": "Cardinal MetalWorks", + "group_name": "alphv", + "discovered": "2023-11-15 14:30:33.507044" + }, + { + "post_title": "SCOLARI Srl", + "group_name": "incransom", + "discovered": "2023-11-15 18:40:32.162969" + }, + { + "post_title": "Guardian Alarm", + "group_name": "incransom", + "discovered": "2023-11-15 18:40:32.885120" + }, + { + "post_title": "Decatur Independent School District", + "group_name": "incransom", + "discovered": "2023-11-15 18:40:33.615224" + }, + { + "post_title": "Yamaha Motor Philippines,Inc.", + "group_name": "incransom", + "discovered": "2023-11-15 18:40:34.615669" + }, + { + "post_title": "adyne.com", + "group_name": "lockbit3", + "discovered": "2023-11-15 20:34:31.327366" + }, + { + "post_title": "chicagotrading.com", + "group_name": "lockbit3", + "discovered": "2023-11-15 20:34:33.009786" + }, + { + "post_title": "MeridianLink fails to file with the SEC..so we do it for them + 24 hours to pay", + "group_name": "alphv", + "discovered": "2023-11-15 22:35:08.838385" + }, + { + "post_title": "owensgroup.uk", + "group_name": "lockbit3", + "discovered": "2023-11-15 22:35:16.584450" + }, + { + "post_title": "Toyota Financial", + "group_name": "medusa", + "discovered": "2023-11-16 06:32:42.645570" + }, + { + "post_title": "Admilla ELAP", + "group_name": "ransomexx", + "discovered": "2023-11-16 08:33:43.738057" + }, + { + "post_title": "goodhopeholdings.com", + "group_name": "lockbit3", + "discovered": "2023-11-16 08:33:52.324564" + }, + { + "post_title": "epsteinlawcorp.com", + "group_name": "qilin", + "discovered": "2023-11-16 10:31:21.074588" + }, + { + "post_title": "FEAM Maintenance", + "group_name": "alphv", + "discovered": "2023-11-16 12:38:11.386115" + }, + { + "post_title": "thewalkerschool", + "group_name": "alphv", + "discovered": "2023-11-16 12:38:12.722960" + }, + { + "post_title": "communitydentalme.org", + "group_name": "lockbit3", + "discovered": "2023-11-16 14:32:50.132954" + }, + { + "post_title": "planethomelending.com", + "group_name": "lockbit3", + "discovered": "2023-11-16 16:31:58.870821" + }, + { + "post_title": "Informist Media (Unpay)", + "group_name": "ragroup", + "discovered": "2023-11-16 20:34:48.861649" + }, + { + "post_title": "SUMMIT VETERINARY PHARMACEUTICALS LIMITED (Unpay)", + "group_name": "ragroup", + "discovered": "2023-11-16 20:34:49.523543" + }, + { + "post_title": "Chung Hwa Chemical Industrial Works (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-11-16 20:34:50.118890" + }, + { + "post_title": "Aceromex (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-11-16 20:34:50.771939" + }, + { + "post_title": "24/7 Express Logistics (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-11-16 20:34:51.308903" + }, + { + "post_title": "hsksgreenhalgh.co.uk", + "group_name": "lockbit3", + "discovered": "2023-11-16 22:35:11.168922" + }, + { + "post_title": "krblaw.com", + "group_name": "lockbit3", + "discovered": "2023-11-16 22:35:13.046442" + }, + { + "post_title": "Consilium staffing llc", + "group_name": "incransom", + "discovered": "2023-11-17 00:51:21.633302" + }, + { + "post_title": "villanuevadelaserena.es", + "group_name": "lockbit3", + "discovered": "2023-11-17 10:33:45.973352" + }, + { + "post_title": "http://www.selecteducationgroup.com", + "group_name": "blacksuit", + "discovered": "2023-11-17 12:41:32.060400" + }, + { + "post_title": "ATC SA", + "group_name": "akira", + "discovered": "2023-11-17 14:36:12.021190" + }, + { + "post_title": "WellLife Network Inc.", + "group_name": "incransom", + "discovered": "2023-11-17 14:36:16.242293" + }, + { + "post_title": "haesungds.com", + "group_name": "qilin", + "discovered": "2023-11-17 18:35:12.829105" + }, + { + "post_title": "Metro MPLS", + "group_name": "akira", + "discovered": "2023-11-17 18:35:15.266540" + }, + { + "post_title": "www.kwikind.com", + "group_name": "noescape", + "discovered": "2023-11-17 18:35:18.469983" + }, + { + "post_title": "ajcfood.com", + "group_name": "lockbit3", + "discovered": "2023-11-17 22:34:44.132458" + }, + { + "post_title": "McCray & Withrow ", + "group_name": "medusa", + "discovered": "2023-11-17 22:34:52.814802" + }, + { + "post_title": "CENTRE D'AUTO P.R.N. SALABERRY IN", + "group_name": "medusa", + "discovered": "2023-11-17 22:34:53.383609" + }, + { + "post_title": "pruitthealth.com", + "group_name": "noescape", + "discovered": "2023-11-18 04:36:55.607199" + }, + { + "post_title": "generalrefrig.com", + "group_name": "lockbit3", + "discovered": "2023-11-18 08:33:55.856301" + }, + { + "post_title": "nealbrothers.co.uk", + "group_name": "threeam", + "discovered": "2023-11-18 10:36:10.807609" + }, + { + "post_title": "The DMC", + "group_name": "play", + "discovered": "2023-11-19 00:55:53.619045" + }, + { + "post_title": "Al****ia (Unpay)", + "group_name": "ragroup", + "discovered": "2023-11-19 04:37:18.904507" + }, + { + "post_title": "Autonomous Flight - @autonomousfly", + "group_name": "alphv", + "discovered": "2023-11-19 08:31:09.109948" + }, + { + "post_title": "U.L. COLEMAN COMPANIES", + "group_name": "alphv", + "discovered": "2023-11-19 22:30:55.893216" + }, + { + "post_title": "Tackle West", + "group_name": "alphv", + "discovered": "2023-11-19 22:30:56.379727" + }, + { + "post_title": "British Library", + "group_name": "rhysida", + "discovered": "2023-11-20 08:36:19.802240" + }, + { + "post_title": "UPDATE! FEAM Maintenance", + "group_name": "alphv", + "discovered": "2023-11-20 14:35:25.902836" + }, + { + "post_title": "www.etude-villa.fr", + "group_name": "blackbasta", + "discovered": "2023-11-20 14:35:28.236784" + }, + { + "post_title": "brownintegratedlogistics.com", + "group_name": "lockbit3", + "discovered": "2023-11-20 14:35:30.472291" + }, + { + "post_title": "onyourmark.org", + "group_name": "lockbit3", + "discovered": "2023-11-20 16:35:09.318944" + }, + { + "post_title": "Hampton Newport News CSB", + "group_name": "alphv", + "discovered": "2023-11-20 22:36:03.560372" + }, + { + "post_title": "nybravestfcu.org", + "group_name": "lockbit3", + "discovered": "2023-11-20 22:36:11.347815" + }, + { + "post_title": "sabre.co.uk", + "group_name": "lockbit3", + "discovered": "2023-11-20 22:36:13.000685" + }, + { + "post_title": "rcmoore.com", + "group_name": "noescape", + "discovered": "2023-11-21 00:51:41.026390" + }, + { + "post_title": "www.enware.com.au", + "group_name": "noescape", + "discovered": "2023-11-21 02:53:07.660598" + }, + { + "post_title": "helifrusa.com", + "group_name": "lockbit3", + "discovered": "2023-11-21 08:38:19.134247" + }, + { + "post_title": "P******** T******", + "group_name": "bianlian", + "discovered": "2023-11-21 10:41:58.708522" + }, + { + "post_title": "P*******", + "group_name": "bianlian", + "discovered": "2023-11-21 10:41:59.348788" + }, + { + "post_title": "Growers Express", + "group_name": "bianlian", + "discovered": "2023-11-21 10:41:59.948323" + }, + { + "post_title": "Bolidt", + "group_name": "bianlian", + "discovered": "2023-11-21 10:42:00.617448" + }, + { + "post_title": "*** ****e**", + "group_name": "bianlian", + "discovered": "2023-11-21 10:42:01.133388" + }, + { + "post_title": "St Edmund's College & Prep School", + "group_name": "rhysida", + "discovered": "2023-11-21 10:42:08.297778" + }, + { + "post_title": "martinique.no", + "group_name": "lockbit3", + "discovered": "2023-11-21 14:36:49.809832" + }, + { + "post_title": "phihydraulics.com", + "group_name": "lockbit3", + "discovered": "2023-11-21 14:36:51.351810" + }, + { + "post_title": "qautomotive.com.au", + "group_name": "lockbit3", + "discovered": "2023-11-21 14:36:52.132804" + }, + { + "post_title": "Paul Stuart", + "group_name": "cactus", + "discovered": "2023-11-21 16:41:28.930307" + }, + { + "post_title": "Petersen Health Care", + "group_name": "cactus", + "discovered": "2023-11-21 16:41:29.871983" + }, + { + "post_title": "Verhelst", + "group_name": "cactus", + "discovered": "2023-11-21 16:41:30.542952" + }, + { + "post_title": "bnpmedia.com", + "group_name": "lockbit3", + "discovered": "2023-11-21 20:35:10.346665" + }, + { + "post_title": "floydskerenlaw.com", + "group_name": "lockbit3", + "discovered": "2023-11-21 20:35:12.510421" + }, + { + "post_title": "[DATA] Bakrie Group & Bakrie Sumatera Plantations", + "group_name": "alphv", + "discovered": "2023-11-22 00:51:40.651904" + }, + { + "post_title": "ds-granit.fr", + "group_name": "threeam", + "discovered": "2023-11-22 06:36:34.347269" + }, + { + "post_title": "art-eco.it", + "group_name": "lockbit3", + "discovered": "2023-11-22 10:34:09.702327" + }, + { + "post_title": "merz-elektro.de", + "group_name": "lockbit3", + "discovered": "2023-11-22 10:34:13.424645" + }, + { + "post_title": "therobisongroup.com", + "group_name": "lockbit3", + "discovered": "2023-11-22 10:34:15.910993" + }, + { + "post_title": "Community Hospital", + "group_name": "medusa", + "discovered": "2023-11-22 10:34:19.153945" + }, + { + "post_title": "NESPOLI GROUP", + "group_name": "alphv", + "discovered": "2023-11-22 14:36:13.809257" + }, + { + "post_title": "Custom Engineering & Fabrication, Inc.", + "group_name": "akira", + "discovered": "2023-11-22 16:40:23.925230" + }, + { + "post_title": "Alspec", + "group_name": "akira", + "discovered": "2023-11-22 16:40:24.979306" + }, + { + "post_title": "IQ Supply Solutions", + "group_name": "akira", + "discovered": "2023-11-22 16:40:25.931614" + }, + { + "post_title": "McHale Landscape Design", + "group_name": "play", + "discovered": "2023-11-22 22:30:04.415688" + }, + { + "post_title": "Fidelity National Financial", + "group_name": "alphv", + "discovered": "2023-11-23 00:49:37.589121" + }, + { + "post_title": "Trylon TSF Inc.", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:18.090454" + }, + { + "post_title": "Springfield Area Chamber of Commerce", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:18.543157" + }, + { + "post_title": "Pro Metals LLC", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:19.319594" + }, + { + "post_title": "Nicole Miller", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:19.973810" + }, + { + "post_title": "Ingo Money Inc", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:20.877853" + }, + { + "post_title": "DM Civil Co.", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:21.911371" + }, + { + "post_title": "B+P Gerüstbau GmbH", + "group_name": "incransom", + "discovered": "2023-11-23 08:37:22.493917" + }, + { + "post_title": "officinaverdedesign.it", + "group_name": "lockbit3", + "discovered": "2023-11-23 10:33:25.504695" + }, + { + "post_title": "Eckell Sparks Law Firm", + "group_name": "alphv", + "discovered": "2023-11-23 12:38:37.521632" + }, + { + "post_title": "unidesign-jewel.com", + "group_name": "lockbit3", + "discovered": "2023-11-23 14:33:12.394376" + }, + { + "post_title": "des-ae.com", + "group_name": "lockbit3", + "discovered": "2023-11-23 20:34:29.460340" + }, + { + "post_title": "Spectrum Solutions LLC", + "group_name": "alphv", + "discovered": "2023-11-24 10:37:03.052157" + }, + { + "post_title": "TJM PRODUCTS PTY. LTD", + "group_name": "alphv", + "discovered": "2023-11-24 10:37:03.482657" + }, + { + "post_title": "LCA Consultores", + "group_name": "alphv", + "discovered": "2023-11-24 14:43:43.201977" + }, + { + "post_title": "nrtw.org", + "group_name": "lockbit3", + "discovered": "2023-11-24 14:43:51.196701" + }, + { + "post_title": "preidlhof.it", + "group_name": "lockbit3", + "discovered": "2023-11-24 14:43:52.305219" + }, + { + "post_title": "ribolia.com", + "group_name": "lockbit3", + "discovered": "2023-11-24 14:43:53.944229" + }, + { + "post_title": "Energy China", + "group_name": "rhysida", + "discovered": "2023-11-24 20:45:41.589293" + }, + { + "post_title": "talentum.com.co", + "group_name": "noescape", + "discovered": "2023-11-24 20:45:42.755036" + }, + { + "post_title": "Hampton Newport News CSB (Last chance)", + "group_name": "alphv", + "discovered": "2023-11-25 00:49:18.651845" + }, + { + "post_title": "kenso.com.my", + "group_name": "lockbit3", + "discovered": "2023-11-25 14:40:36.131504" + }, + { + "post_title": "ALAB laboratoria (Unpay)", + "group_name": "ragroup", + "discovered": "2023-11-26 04:37:33.730570" + }, + { + "post_title": "AlJaber Engineering", + "group_name": "ransomexx", + "discovered": "2023-11-26 10:35:06.129042" + }, + { + "post_title": "sillslegal", + "group_name": "alphv", + "discovered": "2023-11-27 08:37:21.634238" + }, + { + "post_title": "http://newriver.edu", + "group_name": "blacksuit", + "discovered": "2023-11-27 12:46:18.773707" + }, + { + "post_title": "http://www.hhoh.org", + "group_name": "blacksuit", + "discovered": "2023-11-27 14:44:59.933097" + }, + { + "post_title": "Plastic Molding Technology Inc.", + "group_name": "bianlian", + "discovered": "2023-11-27 16:37:38.584343" + }, + { + "post_title": "Co. Ltd.", + "group_name": "bianlian", + "discovered": "2023-11-27 16:37:40.018554" + }, + { + "post_title": "Legacy Mail Manageme nt", + "group_name": "akira", + "discovered": "2023-11-27 16:37:43.854714" + }, + { + "post_title": "carrellblanton.com", + "group_name": "threeam", + "discovered": "2023-11-27 16:37:47.735062" + }, + { + "post_title": "Fischione Instruments Inc.", + "group_name": "alphv", + "discovered": "2023-11-27 18:42:13.552006" + }, + { + "post_title": "Vertex Resource Group", + "group_name": "alphv", + "discovered": "2023-11-27 18:42:14.200214" + }, + { + "post_title": "stsaviationgroup.com", + "group_name": "lockbit3", + "discovered": "2023-11-27 18:42:23.269758" + }, + { + "post_title": "Law Offices of John E Hill - Press Release", + "group_name": "monti", + "discovered": "2023-11-27 22:33:38.131295" + }, + { + "post_title": "Imt - Press Release", + "group_name": "monti", + "discovered": "2023-11-27 22:33:38.712997" + }, + { + "post_title": "Bangkok University", + "group_name": "rhysida", + "discovered": "2023-11-27 22:33:43.116598" + }, + { + "post_title": "NC Central University", + "group_name": "rhysida", + "discovered": "2023-11-27 22:33:43.720069" + }, + { + "post_title": "First Financial Security", + "group_name": "ransomhouse", + "discovered": "2023-11-28 00:49:35.438045" + }, + { + "post_title": "North Texas Municipal Water District (US)", + "group_name": "daixin", + "discovered": "2023-11-28 00:49:44.015759" + }, + { + "post_title": "yanfeng.com", + "group_name": "qilin", + "discovered": "2023-11-28 04:34:52.321239" + }, + { + "post_title": "Odalys Vacances", + "group_name": "cactus", + "discovered": "2023-11-28 10:35:14.563154" + }, + { + "post_title": "Medi-Market", + "group_name": "cactus", + "discovered": "2023-11-28 10:35:15.060180" + }, + { + "post_title": "Axiom Construction & Consulting", + "group_name": "cactus", + "discovered": "2023-11-28 10:35:16.015153" + }, + { + "post_title": "FYIdoctors", + "group_name": "cactus", + "discovered": "2023-11-28 10:35:16.483940" + }, + { + "post_title": "https://www.sprintersports.com", + "group_name": "metaencryptor", + "discovered": "2023-11-28 14:35:26.672166" + }, + { + "post_title": "SinglePoint Outsourcing", + "group_name": "play", + "discovered": "2023-11-28 18:42:26.981593" + }, + { + "post_title": "Thillens", + "group_name": "play", + "discovered": "2023-11-28 18:42:27.607937" + }, + { + "post_title": "Elston-nationwide", + "group_name": "play", + "discovered": "2023-11-28 18:42:28.429759" + }, + { + "post_title": "AMERICAN INSULATED GLASS", + "group_name": "play", + "discovered": "2023-11-28 18:42:29.302690" + }, + { + "post_title": "MooreCo", + "group_name": "play", + "discovered": "2023-11-28 18:42:30.043482" + }, + { + "post_title": "Continental Shipping Line", + "group_name": "play", + "discovered": "2023-11-28 18:42:30.623653" + }, + { + "post_title": "Sparex", + "group_name": "play", + "discovered": "2023-11-28 18:42:31.320036" + }, + { + "post_title": "Retailer Web Services", + "group_name": "play", + "discovered": "2023-11-28 18:42:32.125080" + }, + { + "post_title": "Byfod", + "group_name": "play", + "discovered": "2023-11-28 18:42:33.396752" + }, + { + "post_title": "China Petrochemical Development", + "group_name": "alphv", + "discovered": "2023-11-28 20:45:34.185045" + }, + { + "post_title": "dawsongroup.uk", + "group_name": "lockbit3", + "discovered": "2023-11-28 20:45:38.376778" + }, + { + "post_title": "hi-schoolpharmacy.com", + "group_name": "lockbit3", + "discovered": "2023-11-28 20:45:40.405421" + }, + { + "post_title": "nal.res.in", + "group_name": "lockbit3", + "discovered": "2023-11-28 20:45:42.420211" + }, + { + "post_title": "SurvTech Solutions", + "group_name": "play", + "discovered": "2023-11-28 20:45:48.156963" + }, + { + "post_title": "EDGE Realty Partners", + "group_name": "play", + "discovered": "2023-11-28 20:45:48.923336" + }, + { + "post_title": "Noble Mountain Tree Farm", + "group_name": "play", + "discovered": "2023-11-28 20:45:49.957944" + }, + { + "post_title": "ALPS Ltd", + "group_name": "ransomhouse", + "discovered": "2023-11-29 02:44:49.814818" + }, + { + "post_title": "tcw.com", + "group_name": "lockbit3", + "discovered": "2023-11-29 08:34:18.301922" + }, + { + "post_title": "King Edward VII's Hospital", + "group_name": "rhysida", + "discovered": "2023-11-29 10:38:20.613481" + }, + { + "post_title": "masterk.com", + "group_name": "lockbit3", + "discovered": "2023-11-29 12:34:51.344924" + }, + { + "post_title": "Great Valley School District ", + "group_name": "medusa", + "discovered": "2023-11-29 12:34:56.899684" + }, + { + "post_title": "Teleflora", + "group_name": "akira", + "discovered": "2023-11-29 12:34:58.801786" + }, + { + "post_title": "Servicio Móvil", + "group_name": "akira", + "discovered": "2023-11-29 12:35:00.163209" + }, + { + "post_title": "Protected: skalar.com", + "group_name": "ransomblog_noname", + "discovered": "2023-11-29 14:36:24.206051" + }, + { + "post_title": "Lydall, Inc.", + "group_name": "akira", + "discovered": "2023-11-29 14:36:25.345485" + }, + { + "post_title": "Alpura", + "group_name": "akira", + "discovered": "2023-11-29 14:36:26.723839" + }, + { + "post_title": "AQIPA", + "group_name": "alphv", + "discovered": "2023-11-29 18:38:23.367494" + }, + { + "post_title": "**o** ******l*****", + "group_name": "bianlian", + "discovered": "2023-11-29 18:38:33.685432" + }, + { + "post_title": "***s****** ***t*** *e****** ***", + "group_name": "bianlian", + "discovered": "2023-11-29 18:38:34.567256" + }, + { + "post_title": "Protected: Name is hidden", + "group_name": "ransomblog_noname", + "discovered": "2023-11-29 20:34:13.736779" + }, + { + "post_title": "Chetu ", + "group_name": "medusa", + "discovered": "2023-11-29 22:38:29.307793" + }, + { + "post_title": "ontariopork.on.ca", + "group_name": "lockbit3", + "discovered": "2023-11-30 00:46:49.669728" + }, + { + "post_title": "pcli.com", + "group_name": "lockbit3", + "discovered": "2023-11-30 00:46:50.945451" + }, + { + "post_title": "www.verdecora.es", + "group_name": "noescape", + "discovered": "2023-11-30 02:42:38.523241" + }, + { + "post_title": "www.sciencehistory.org", + "group_name": "noescape", + "discovered": "2023-11-30 04:36:41.786369" + }, + { + "post_title": "Es Saadi", + "group_name": "hunters", + "discovered": "2023-11-30 22:00:06.625970" + }, + { + "post_title": "WemaBank", + "group_name": "hunters", + "discovered": "2023-11-30 22:00:06.677427" + }, + { + "post_title": "Giti", + "group_name": "hunters", + "discovered": "2023-11-30 22:00:06.726817" + }, + { + "post_title": "ALVImedica", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:45.360548" + }, + { + "post_title": "Florida Department of Veterans' Affairs", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:45.994330" + }, + { + "post_title": "Hunt Guillot & Associates", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:46.816773" + }, + { + "post_title": "Jerry Pate Energy", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:47.390059" + }, + { + "post_title": "Kologik", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:48.027294" + }, + { + "post_title": "Maldives Ports Limited", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:48.800295" + }, + { + "post_title": "Montachusett Regional Vocational Technical School District", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:49.603873" + }, + { + "post_title": "Museum für Naturkunde", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:50.357378" + }, + { + "post_title": "Tyson Foods", + "group_name": "snatch", + "discovered": "2023-11-30 11:49:50.998497" + }, + { + "post_title": "Albert, Righter & Tittmann architechts, inc.", + "group_name": "donutleaks", + "discovered": "2023-11-30 11:50:01.820972" + }, + { + "post_title": "carriereindustrial.com", + "group_name": "donutleaks", + "discovered": "2023-11-30 11:50:02.989838" + }, + { + "post_title": "Sidockgroup. Published", + "group_name": "donutleaks", + "discovered": "2023-11-30 11:50:03.848498" + }, + { + "post_title": "Who Is MONTY? ;)", + "group_name": "donutleaks", + "discovered": "2023-11-30 11:50:04.610201" + }, + { + "post_title": "aurobindousa.com", + "group_name": "abyss", + "discovered": "2023-11-30 11:50:06.960587" + }, + { + "post_title": "APREVYA", + "group_name": "8base", + "discovered": "2023-11-30 11:50:08.905532" + }, + { + "post_title": "Cimbali National Accounts", + "group_name": "8base", + "discovered": "2023-11-30 11:50:09.900384" + }, + { + "post_title": "Cold Car Spa", + "group_name": "8base", + "discovered": "2023-11-30 11:50:10.806787" + }, + { + "post_title": "DMC Luxembourg", + "group_name": "8base", + "discovered": "2023-11-30 11:50:11.652297" + }, + { + "post_title": "Fortiss LLC", + "group_name": "8base", + "discovered": "2023-11-30 11:50:12.696034" + }, + { + "post_title": "GOLDMUND", + "group_name": "8base", + "discovered": "2023-11-30 11:50:13.438815" + }, + { + "post_title": "Gallagher Tire, Inc.", + "group_name": "8base", + "discovered": "2023-11-30 11:50:14.174921" + }, + { + "post_title": "Groupe Apex-Isast", + "group_name": "8base", + "discovered": "2023-11-30 11:50:14.852420" + }, + { + "post_title": "Hills Legal Group Ltd", + "group_name": "8base", + "discovered": "2023-11-30 11:50:15.715778" + }, + { + "post_title": "Honey Birdette", + "group_name": "8base", + "discovered": "2023-11-30 11:50:16.357295" + }, + { + "post_title": "Imperiali AG", + "group_name": "8base", + "discovered": "2023-11-30 11:50:18.125325" + }, + { + "post_title": "Incisive Media", + "group_name": "8base", + "discovered": "2023-11-30 11:50:18.792632" + }, + { + "post_title": "Ingeniería FULCRUM", + "group_name": "8base", + "discovered": "2023-11-30 11:50:19.478403" + }, + { + "post_title": "La Contabile Spa", + "group_name": "8base", + "discovered": "2023-11-30 11:50:20.283459" + }, + { + "post_title": "Lanificio Luigi Colombo S.p.A.", + "group_name": "8base", + "discovered": "2023-11-30 11:50:21.110375" + }, + { + "post_title": "Leezer Agency", + "group_name": "8base", + "discovered": "2023-11-30 11:50:21.962535" + }, + { + "post_title": "MODERNGRAB, S.A.", + "group_name": "8base", + "discovered": "2023-11-30 11:50:22.709008" + }, + { + "post_title": "Parsons Investments", + "group_name": "8base", + "discovered": "2023-11-30 11:50:23.608815" + }, + { + "post_title": "Scheidt GmbH", + "group_name": "8base", + "discovered": "2023-11-30 11:50:24.464655" + }, + { + "post_title": "Storey Trucking Company, Inc.", + "group_name": "8base", + "discovered": "2023-11-30 11:50:25.399143" + }, + { + "post_title": "Wild Republic", + "group_name": "8base", + "discovered": "2023-11-30 11:50:26.283959" + }, + { + "post_title": "Yale Appliance", + "group_name": "8base", + "discovered": "2023-11-30 11:50:26.936880" + }, + { + "post_title": "http://www.depauw.edu", + "group_name": "blacksuit", + "discovered": "2023-11-30 11:50:27.783984" + }, + { + "post_title": "Katsky Korins", + "group_name": "meow", + "discovered": "2023-11-30 11:50:30.216070" + }, + { + "post_title": "Standard Filter", + "group_name": "meow", + "discovered": "2023-11-30 11:50:31.047163" + }, + { + "post_title": "Vanderbilt University Medical Center", + "group_name": "meow", + "discovered": "2023-11-30 11:50:31.876271" + }, + { + "post_title": "Equaldex", + "group_name": "meow", + "discovered": "2023-11-30 11:50:33.286159" + }, + { + "post_title": "Back Roads", + "group_name": "meow", + "discovered": "2023-11-30 11:50:33.958534" + }, + { + "post_title": "Zenithpharma", + "group_name": "meow", + "discovered": "2023-11-30 11:50:34.568604" + }, + { + "post_title": "www.andersonandjones.com", + "group_name": "blackbasta", + "discovered": "2023-11-30 14:33:37.822869" + }, + { + "post_title": "A**** *********** Inc", + "group_name": "bianlian", + "discovered": "2023-11-30 14:33:47.235023" + }, + { + "post_title": "Rudolf GmbH & Rudolf Venture Chemicals Inc - Press Release", + "group_name": "monti", + "discovered": "2023-11-30 20:35:21.834930" + }, + { + "post_title": "Bauwerk Boen Group", + "group_name": "akira", + "discovered": "2023-11-30 20:35:23.623113" + }, + { + "post_title": "hnncsb.org", + "group_name": "lockbit3", + "discovered": "2023-11-30 22:36:19.185146" + }, + { + "post_title": "HTC Global Services", + "group_name": "alphv", + "discovered": "2023-12-01 00:45:49.260180" + }, + { + "post_title": "www.grupoprides.com", + "group_name": "noescape", + "discovered": "2023-12-01 06:33:24.274449" + }, + { + "post_title": "Dörr Group", + "group_name": "alphv", + "discovered": "2023-12-01 10:33:56.337700" + }, + { + "post_title": "Agamatrix", + "group_name": "meow", + "discovered": "2023-12-01 10:34:15.072449" + }, + { + "post_title": "http://centroedilemilano.com", + "group_name": "blacksuit", + "discovered": "2023-12-01 14:36:28.318750" + }, + { + "post_title": "Kellett & Bartholow PLLC", + "group_name": "incransom", + "discovered": "2023-12-01 14:36:29.683011" + }, + { + "post_title": "elsewedyelectric.com", + "group_name": "lockbit3", + "discovered": "2023-12-01 16:35:09.936699" + }, + { + "post_title": "Iptor", + "group_name": "akira", + "discovered": "2023-12-01 16:35:18.851317" + }, + { + "post_title": "Hello Cristina from Law Offices of John E Hill", + "group_name": "monti", + "discovered": "2023-12-01 18:35:55.179389" + }, + { + "post_title": "Hello Jacobs from RVC", + "group_name": "monti", + "discovered": "2023-12-01 18:35:56.047825" + }, + { + "post_title": "Jerry Pate Energy (hack from Saltmarsh Financial Advisors)", + "group_name": "snatch", + "discovered": "2023-12-01 20:39:36.462633" + }, + { + "post_title": "IRC Engineering", + "group_name": "alphv", + "discovered": "2023-12-02 08:36:01.510812" + }, + { + "post_title": "www.inseinc.com", + "group_name": "blackbasta", + "discovered": "2023-12-02 10:35:32.667790" + }, + { + "post_title": "royaleinternational.com", + "group_name": "alphv", + "discovered": "2023-12-02 12:34:53.752845" + }, + { + "post_title": "Lisa Mayer CA, Professional Corporation", + "group_name": "alphv", + "discovered": "2023-12-02 22:38:32.563212" + }, + { + "post_title": "bboed.org", + "group_name": "lockbit3", + "discovered": "2023-12-02 22:38:36.036760" + }, + { + "post_title": "Tipalti claimed as a victim - but we'll extort Roblox, one of their affected clients, indi", + "group_name": "alphv", + "discovered": "2023-12-03 02:44:12.111454" + }, + { + "post_title": "Tipalti claimed as a victim - but we'll extort Roblox and Twitch, two of their affected cl", + "group_name": "alphv", + "discovered": "2023-12-03 04:34:06.232162" + }, + { + "post_title": "mirle.com.tw", + "group_name": "lockbit3", + "discovered": "2023-12-03 14:33:08.501107" + }, + { + "post_title": "Bern Hotels & Resort s", + "group_name": "akira", + "discovered": "2023-12-03 14:33:15.547503" + }, + { + "post_title": "nida.com", + "group_name": "noescape", + "discovered": "2023-12-04 08:33:43.162868" + }, + { + "post_title": "www.ufresources.com", + "group_name": "noescape", + "discovered": "2023-12-04 08:33:43.599663" + }, + { + "post_title": "Evnhcmc", + "group_name": "alphv", + "discovered": "2023-12-04 10:36:24.148993" + }, + { + "post_title": "Midea Carrier", + "group_name": "akira", + "discovered": "2023-12-04 12:33:43.965872" + }, + { + "post_title": "Getrix", + "group_name": "akira", + "discovered": "2023-12-04 12:33:44.843614" + }, + { + "post_title": "ychlccsc.edu.hk", + "group_name": "lockbit3", + "discovered": "2023-12-04 14:34:19.451564" + }, + { + "post_title": "Full access to the school network USA", + "group_name": "everest", + "discovered": "2023-12-04 20:33:43.793844" + }, + { + "post_title": "Tipalti", + "group_name": "alphv", + "discovered": "2023-12-04 20:33:49.743846" + }, + { + "post_title": "www.cmsc.com", + "group_name": "qilin", + "discovered": "2023-12-04 20:34:01.279081" + }, + { + "post_title": "www.greatlakestech.net", + "group_name": "qilin", + "discovered": "2023-12-04 20:34:01.930600" + }, + { + "post_title": "Medjet", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:28.947085" + }, + { + "post_title": "THK Co., Ltd.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:28.996884" + }, + { + "post_title": "UK Stratton Primary School", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.045813" + }, + { + "post_title": "Lincoln Office", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.094821" + }, + { + "post_title": "Owens Group", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.145194" + }, + { + "post_title": "United Africa Group Ltd.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.194395" + }, + { + "post_title": "DrilMaco", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.244227" + }, + { + "post_title": "Garr Silpe, P.C.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.293021" + }, + { + "post_title": "Crystal Lake Health Center", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.341942" + }, + { + "post_title": "TCI Co., Ltd.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.390430" + }, + { + "post_title": "Homeland Inc.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.440064" + }, + { + "post_title": "Bartec Top Holding GmbH", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.496103" + }, + { + "post_title": "Dr. Jaime Schwartz MD, FACS", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.558296" + }, + { + "post_title": "InstantWhip", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.615761" + }, + { + "post_title": "Deegenbergklinik", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.681424" + }, + { + "post_title": "Builders Hardware and Hollow Metal, Inc.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.738577" + }, + { + "post_title": "Austal USA", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.795015" + }, + { + "post_title": "IDESA group, S.A. De C.V.", + "group_name": "hunters", + "discovered": "2023-12-05 12:54:29.851545" + }, + { + "post_title": "http://www.henry.k12.ga.us", + "group_name": "blacksuit", + "discovered": "2023-12-05 00:42:26.894706" + }, + { + "post_title": "http://fps.com", + "group_name": "blacksuit", + "discovered": "2023-12-05 00:42:27.911011" + }, + { + "post_title": "Rosens Diversified Inc ", + "group_name": "medusa", + "discovered": "2023-12-05 04:32:02.158156" + }, + { + "post_title": "Bowden Barlow Law PA", + "group_name": "medusa", + "discovered": "2023-12-05 04:32:02.609124" + }, + { + "post_title": "concertus.co.uk", + "group_name": "abyss", + "discovered": "2023-12-05 06:32:07.990755" + }, + { + "post_title": "restargp.com", + "group_name": "lockbit3", + "discovered": "2023-12-05 08:36:40.833085" + }, + { + "post_title": "Akumin", + "group_name": "bianlian", + "discovered": "2023-12-05 08:36:43.146857" + }, + { + "post_title": "CLATSKANIEPUD", + "group_name": "alphv", + "discovered": "2023-12-05 10:32:49.742860" + }, + { + "post_title": "Rudolf-Venture Chemical Inc - Part 1", + "group_name": "monti", + "discovered": "2023-12-05 14:36:44.727215" + }, + { + "post_title": "skalar.com", + "group_name": "ransomblog_noname", + "discovered": "2023-12-05 15:36:35.722089" + }, + { + "post_title": "ussignandmill.com", + "group_name": "threeam", + "discovered": "2023-12-05 15:36:41.389214" + }, + { + "post_title": "mapc.org", + "group_name": "lockbit3", + "discovered": "2023-12-05 16:34:38.672281" + }, + { + "post_title": "aldoshoes.com", + "group_name": "lockbit3", + "discovered": "2023-12-05 18:36:29.645046" + }, + { + "post_title": "laprensani.com", + "group_name": "lockbit3", + "discovered": "2023-12-05 19:34:54.415895" + }, + { + "post_title": "TraCS Florida FSU", + "group_name": "alphv", + "discovered": "2023-12-05 20:36:26.687400" + }, + { + "post_title": "Henry Schein Inc - Henry's \" LOST SHINE \"", + "group_name": "alphv", + "discovered": "2023-12-05 20:36:27.280236" + }, + { + "post_title": "Calgary TELUS Convention Centre", + "group_name": "8base", + "discovered": "2023-12-06 06:37:05.070525" + }, + { + "post_title": "Lischkoff and Pitts, P.C.", + "group_name": "8base", + "discovered": "2023-12-06 06:37:06.425858" + }, + { + "post_title": "SMG Confrere", + "group_name": "8base", + "discovered": "2023-12-06 06:37:07.439178" + }, + { + "post_title": "astley.", + "group_name": "8base", + "discovered": "2023-12-06 06:37:08.563849" + }, + { + "post_title": "fpz.com", + "group_name": "lockbit3", + "discovered": "2023-12-06 07:35:28.837959" + }, + { + "post_title": "labelians.fr", + "group_name": "lockbit3", + "discovered": "2023-12-06 07:35:30.523668" + }, + { + "post_title": "polyclinique-cotentin.com", + "group_name": "lockbit3", + "discovered": "2023-12-06 07:35:32.567619" + }, + { + "post_title": "Sagent", + "group_name": "medusa", + "discovered": "2023-12-06 07:35:37.379506" + }, + { + "post_title": "ACCU Reference Medical Lab", + "group_name": "medusa", + "discovered": "2023-12-06 07:35:37.936754" + }, + { + "post_title": "syrtech.com", + "group_name": "threeam", + "discovered": "2023-12-06 08:37:25.345310" + }, + { + "post_title": "Acero Engineering", + "group_name": "bianlian", + "discovered": "2023-12-06 11:37:49.805377" + }, + { + "post_title": "Compass Group Italia", + "group_name": "akira", + "discovered": "2023-12-06 12:39:00.037807" + }, + { + "post_title": "Aqualectra Holdings", + "group_name": "akira", + "discovered": "2023-12-06 12:39:00.766883" + }, + { + "post_title": "Deutsche Energie-Agentur", + "group_name": "alphv", + "discovered": "2023-12-06 14:37:22.108840" + }, + { + "post_title": "Campbell County Schools ", + "group_name": "medusa", + "discovered": "2023-12-06 14:37:33.945584" + }, + { + "post_title": "Tryax Realty Management - Press Release", + "group_name": "monti", + "discovered": "2023-12-06 21:36:33.024247" + }, + { + "post_title": "Visan", + "group_name": "8base", + "discovered": "2023-12-07 05:37:55.188355" + }, + { + "post_title": "hopto.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 07:37:45.529378" + }, + { + "post_title": "usherbrooke.ca", + "group_name": "lockbit3", + "discovered": "2023-12-07 08:42:14.661786" + }, + { + "post_title": "bpce.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 09:37:54.361238" + }, + { + "post_title": "signiflow.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 09:37:59.543006" + }, + { + "post_title": "citizenswv.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 10:35:51.913708" + }, + { + "post_title": "directradiology.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 10:35:53.240259" + }, + { + "post_title": "National Nail Corp", + "group_name": "cactus", + "discovered": "2023-12-07 12:40:07.759505" + }, + { + "post_title": "CIE Automotive", + "group_name": "cactus", + "discovered": "2023-12-07 12:40:08.653965" + }, + { + "post_title": "neurocnv.com", + "group_name": "qilin", + "discovered": "2023-12-07 13:37:48.592357" + }, + { + "post_title": "www.warepet.com", + "group_name": "qilin", + "discovered": "2023-12-07 13:37:49.715552" + }, + { + "post_title": "Tasteful Selections", + "group_name": "akira", + "discovered": "2023-12-07 13:37:52.594609" + }, + { + "post_title": "Tri-city Medical Center", + "group_name": "incransom", + "discovered": "2023-12-07 13:37:56.936175" + }, + { + "post_title": "SML Group", + "group_name": "bianlian", + "discovered": "2023-12-07 16:38:17.064176" + }, + { + "post_title": "AMCO Proteins", + "group_name": "bianlian", + "discovered": "2023-12-07 16:38:17.855559" + }, + { + "post_title": "Kuriyama of America", + "group_name": "play", + "discovered": "2023-12-07 17:35:59.076761" + }, + { + "post_title": "Greater Richmond Transit", + "group_name": "play", + "discovered": "2023-12-07 17:35:59.866422" + }, + { + "post_title": "AG Consulting Engineering", + "group_name": "play", + "discovered": "2023-12-07 17:36:01.463118" + }, + { + "post_title": "bluewaterstt.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 18:37:00.873550" + }, + { + "post_title": "omegapainclinic.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 18:37:05.656365" + }, + { + "post_title": "Planbox", + "group_name": "play", + "discovered": "2023-12-07 18:37:12.537220" + }, + { + "post_title": "GVM", + "group_name": "play", + "discovered": "2023-12-07 18:37:13.248103" + }, + { + "post_title": "Vitro Plus", + "group_name": "play", + "discovered": "2023-12-07 18:37:13.813239" + }, + { + "post_title": "Payne Hicks Beach", + "group_name": "play", + "discovered": "2023-12-07 18:37:14.503377" + }, + { + "post_title": "Becker Furniture World", + "group_name": "play", + "discovered": "2023-12-07 18:37:15.168983" + }, + { + "post_title": "Capespan", + "group_name": "play", + "discovered": "2023-12-07 18:37:15.657158" + }, + { + "post_title": "Burton Wire & Cable", + "group_name": "play", + "discovered": "2023-12-07 18:37:16.160071" + }, + { + "post_title": "GreenWaste Recovery", + "group_name": "play", + "discovered": "2023-12-07 18:37:16.762336" + }, + { + "post_title": "Silvent North America", + "group_name": "play", + "discovered": "2023-12-07 18:37:17.333858" + }, + { + "post_title": "denave.com", + "group_name": "lockbit3", + "discovered": "2023-12-07 19:34:30.280723" + }, + { + "post_title": "Precision Technologies Group Ltd", + "group_name": "incransom", + "discovered": "2023-12-07 19:34:45.116935" + }, + { + "post_title": "California Innovations", + "group_name": "play", + "discovered": "2023-12-07 21:34:31.234841" + }, + { + "post_title": "Tcman", + "group_name": "rhysida", + "discovered": "2023-12-08 06:34:21.550675" + }, + { + "post_title": "Travian Games", + "group_name": "rhysida", + "discovered": "2023-12-08 07:36:13.108721" + }, + { + "post_title": "midlandindustries.com", + "group_name": "lockbit3", + "discovered": "2023-12-08 09:37:04.415015" + }, + { + "post_title": "aw-lawyers.com", + "group_name": "lockbit3", + "discovered": "2023-12-08 10:41:52.351259" + }, + { + "post_title": "http://www.golfzon.com", + "group_name": "blacksuit", + "discovered": "2023-12-08 10:42:07.577645" + }, + { + "post_title": "HMW - Press Release", + "group_name": "monti", + "discovered": "2023-12-08 22:35:59.001070" + }, + { + "post_title": "livanova.com", + "group_name": "lockbit3", + "discovered": "2023-12-08 23:39:10.572871" + }, + { + "post_title": "Graphic Solutions Group Inc (US)", + "group_name": "daixin", + "discovered": "2023-12-09 06:39:52.005727" + }, + { + "post_title": "Qatar Racing and Equestrian Club", + "group_name": "rhysida", + "discovered": "2023-12-09 18:37:55.281626" + }, + { + "post_title": "Hse", + "group_name": "rhysida", + "discovered": "2023-12-10 02:46:04.033521" + }, + { + "post_title": "Holding Slovenske elektarne", + "group_name": "rhysida", + "discovered": "2023-12-10 05:37:12.686572" + }, + { + "post_title": "policia.gob.pe", + "group_name": "lockbit3", + "discovered": "2023-12-10 16:37:29.680502" + }, + { + "post_title": "pronatindustries.com", + "group_name": "lockbit3", + "discovered": "2023-12-10 21:34:50.378617" + }, + { + "post_title": "The Glendale Unified School District", + "group_name": "medusa", + "discovered": "2023-12-11 04:37:17.213001" + }, + { + "post_title": "McCray & Withrow", + "group_name": "medusa", + "discovered": "2023-12-11 04:37:17.960946" + }, + { + "post_title": "ISC Consulting Engineers", + "group_name": "cactus", + "discovered": "2023-12-11 08:37:40.893725" + }, + { + "post_title": "zailaboratory.com", + "group_name": "lockbit3", + "discovered": "2023-12-11 09:37:12.200123" + }, + { + "post_title": "Independent Recovery Resources, Inc.", + "group_name": "bianlian", + "discovered": "2023-12-11 13:39:17.856814" + }, + { + "post_title": "Studio MF", + "group_name": "akira", + "discovered": "2023-12-11 13:39:22.141042" + }, + { + "post_title": "MSD Information tech nology", + "group_name": "akira", + "discovered": "2023-12-11 15:38:57.498401" + }, + { + "post_title": "Covenant Care", + "group_name": "hunters", + "discovered": "2023-12-11 15:39:03.756845" + }, + { + "post_title": "Hinsdale School District ", + "group_name": "medusa", + "discovered": "2023-12-11 16:37:16.744826" + }, + { + "post_title": "Goiasa", + "group_name": "akira", + "discovered": "2023-12-11 16:37:19.103840" + }, + { + "post_title": "Bayer Heritage Federal Credit Union", + "group_name": "lorenz", + "discovered": "2023-12-11 17:34:57.801921" + }, + { + "post_title": "igt.nl", + "group_name": "lockbit3", + "discovered": "2023-12-11 18:36:37.101523" + }, + { + "post_title": "ipp-sa.com", + "group_name": "lockbit3", + "discovered": "2023-12-11 19:37:36.738646" + }, + { + "post_title": "r-ab.de", + "group_name": "lockbit3", + "discovered": "2023-12-11 19:37:39.308150" + }, + { + "post_title": "Azienda USL di Modena", + "group_name": "hunters", + "discovered": "2023-12-11 19:37:51.914288" + }, + { + "post_title": "phillipsglobal.us", + "group_name": "lockbit3", + "discovered": "2023-12-11 23:37:40.196326" + }, + { + "post_title": "greenbriersportingclub.com", + "group_name": "lockbit3", + "discovered": "2023-12-12 00:51:25.532625" + }, + { + "post_title": "Insomniac Games", + "group_name": "rhysida", + "discovered": "2023-12-12 02:02:56.746973" + }, + { + "post_title": "Grupo Jose Alves", + "group_name": "rhysida", + "discovered": "2023-12-12 02:45:20.704120" + }, + { + "post_title": "APVL ingénierie", + "group_name": "8base", + "discovered": "2023-12-12 06:34:40.264458" + }, + { + "post_title": "Brown's Bay Packing Company", + "group_name": "8base", + "discovered": "2023-12-12 06:34:40.989097" + }, + { + "post_title": "Grupo Televisa", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:44.785712" + }, + { + "post_title": "NATO Leak - 1", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:45.299738" + }, + { + "post_title": "NATO Leak - 2", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:45.806770" + }, + { + "post_title": "Faroe Islands", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:47.631867" + }, + { + "post_title": "Atlassian", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:48.363847" + }, + { + "post_title": "Operation Jane", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:48.817615" + }, + { + "post_title": "GNSS, BACNet & ModBus", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:49.592756" + }, + { + "post_title": "Bezeq", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:50.207255" + }, + { + "post_title": "Cellcom", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:50.684861" + }, + { + "post_title": "Operation Israel - 1", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:51.393846" + }, + { + "post_title": "Idaho National Laboratory", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:54.929727" + }, + { + "post_title": "Colombian National Registry", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:55.522106" + }, + { + "post_title": "Deqing County", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:56.294108" + }, + { + "post_title": "Staples", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:56.786515" + }, + { + "post_title": "Portland Government & United states government", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:57.413188" + }, + { + "post_title": "National Office for centralized procurement", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:57.849077" + }, + { + "post_title": "Technical University of Mombasa", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:58.430889" + }, + { + "post_title": "Telerad", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:59.055315" + }, + { + "post_title": "OpTransRights - 2", + "group_name": "siegedsec", + "discovered": "2023-12-12 06:34:59.640907" + }, + { + "post_title": "airtechthelong.com.vn", + "group_name": "lockbit3", + "discovered": "2023-12-12 08:38:05.636175" + }, + { + "post_title": "kitahirosima.jp", + "group_name": "lockbit3", + "discovered": "2023-12-12 08:38:10.083474" + }, + { + "post_title": "petrotec.com.qa", + "group_name": "lockbit3", + "discovered": "2023-12-12 08:38:12.380198" + }, + { + "post_title": "tradewindscorp-insbrok.com", + "group_name": "lockbit3", + "discovered": "2023-12-12 08:38:14.828248" + }, + { + "post_title": "Memorial Sloan Kettering Cancer Center", + "group_name": "meow", + "discovered": "2023-12-12 10:36:38.438641" + }, + { + "post_title": "The Teaching Company , LLC", + "group_name": "akira", + "discovered": "2023-12-12 12:35:59.458313" + }, + { + "post_title": "Mitrani Caballero Oj am & Ruiz Moreno - A bogados", + "group_name": "akira", + "discovered": "2023-12-12 15:36:33.402140" + }, + { + "post_title": "shareharris.com", + "group_name": "threeam", + "discovered": "2023-12-12 16:38:18.271214" + }, + { + "post_title": "woodruffenterprises.com", + "group_name": "threeam", + "discovered": "2023-12-12 16:38:19.308012" + }, + { + "post_title": "SmartWave Technologi es", + "group_name": "akira", + "discovered": "2023-12-12 17:37:12.497715" + }, + { + "post_title": "dena.de", + "group_name": "lockbit3", + "discovered": "2023-12-12 18:36:39.185726" + }, + { + "post_title": "GlobalSpec", + "group_name": "play", + "discovered": "2023-12-12 23:37:31.848374" + }, + { + "post_title": "King Aerospace, Inc.", + "group_name": "incransom", + "discovered": "2023-12-12 23:37:37.338017" + }, + { + "post_title": "CACG", + "group_name": "8base", + "discovered": "2023-12-13 08:42:28.954685" + }, + { + "post_title": "Groupe PROMOBE", + "group_name": "8base", + "discovered": "2023-12-13 08:42:29.805983" + }, + { + "post_title": "Hawkins Sales", + "group_name": "8base", + "discovered": "2023-12-13 08:42:30.370226" + }, + { + "post_title": "REUS MOBILITAT I SERVEIS", + "group_name": "8base", + "discovered": "2023-12-13 08:42:31.748554" + }, + { + "post_title": "SBK Real Estate", + "group_name": "8base", + "discovered": "2023-12-13 08:42:32.448618" + }, + { + "post_title": "Soethoudt metaalbewerking b.v.", + "group_name": "8base", + "discovered": "2023-12-13 08:42:33.321382" + }, + { + "post_title": "Tim Davies Landscaping", + "group_name": "8base", + "discovered": "2023-12-13 08:42:34.059960" + }, + { + "post_title": "VAC-U-MAX", + "group_name": "8base", + "discovered": "2023-12-13 08:42:34.664671" + }, + { + "post_title": "William Jackson Food Group", + "group_name": "8base", + "discovered": "2023-12-13 08:42:35.207310" + }, + { + "post_title": "cms.law", + "group_name": "lockbit3", + "discovered": "2023-12-13 09:40:01.844251" + }, + { + "post_title": "Dillard Door & Security", + "group_name": "cactus", + "discovered": "2023-12-13 10:38:36.210074" + }, + { + "post_title": "Tulane University", + "group_name": "meow", + "discovered": "2023-12-13 15:42:59.244342" + }, + { + "post_title": "www.thirdstreetbrewhouse.com", + "group_name": "blackbasta", + "discovered": "2023-12-13 16:37:51.045813" + }, + { + "post_title": "Dameron Hospital", + "group_name": "ransomhouse", + "discovered": "2023-12-13 16:37:51.928180" + }, + { + "post_title": "Advantage Group International", + "group_name": "alphv", + "discovered": "2023-12-13 17:40:32.764567" + }, + { + "post_title": "altezze.com.mx", + "group_name": "lockbit3", + "discovered": "2023-12-13 17:40:36.014442" + }, + { + "post_title": "ccadm.org", + "group_name": "lockbit3", + "discovered": "2023-12-13 20:35:15.258134" + }, + { + "post_title": "dawsongroup.co.uk", + "group_name": "lockbit3", + "discovered": "2023-12-13 21:36:56.330256" + }, + { + "post_title": "austen-it.com", + "group_name": "lockbit3", + "discovered": "2023-12-13 22:37:21.050340" + }, + { + "post_title": "grandrapidswomenshealth.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 08:41:08.084599" + }, + { + "post_title": "www.dillarddoor.com\\$8.5M\\USA\\87gb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:06.991768" + }, + { + "post_title": "www.isc.dk\\$60.1M\\Denmark\\130gb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:07.401949" + }, + { + "post_title": "www.nationalnail.com\\$678.9M\\USA\\195gb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:07.962716" + }, + { + "post_title": "www.cieautomotive.com\\$3.6B\\Spain\\2.6tb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:08.595761" + }, + { + "post_title": "www.odalys-vacances.com\\$151.1M\\France\\548gb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:09.265216" + }, + { + "post_title": "www.medi-market.be\\$164M\\Belgium\\95gb\\1%Disclosed", + "group_name": "cactus", + "discovered": "2023-12-14 10:37:09.947953" + }, + { + "post_title": "mcs360.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 12:41:06.539607" + }, + { + "post_title": "Hyman Hayes Associat es", + "group_name": "akira", + "discovered": "2023-12-14 15:40:57.574486" + }, + { + "post_title": "bemes.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 22:38:12.964880" + }, + { + "post_title": "converzemedia.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 22:38:14.319519" + }, + { + "post_title": "goldwind.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 22:38:15.753745" + }, + { + "post_title": "rpassoc.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 22:38:19.034755" + }, + { + "post_title": "spiritleatherworks.com", + "group_name": "lockbit3", + "discovered": "2023-12-14 22:38:20.129458" + }, + { + "post_title": "Greenbox Loans Inc.", + "group_name": "bianlian", + "discovered": "2023-12-14 22:38:21.810521" + }, + { + "post_title": "Commonwealth Capital", + "group_name": "bianlian", + "discovered": "2023-12-14 22:38:22.507856" + }, + { + "post_title": "Chaney, Couch, Callaway, Carter and Associates Family Dentistry", + "group_name": "bianlian", + "discovered": "2023-12-14 22:38:23.247102" + }, + { + "post_title": "Fred Hutchinson Cancer Research Center", + "group_name": "hunters", + "discovered": "2023-12-15 12:41:36.680733" + }, + { + "post_title": "Nexiga", + "group_name": "akira", + "discovered": "2023-12-15 15:37:04.176624" + }, + { + "post_title": "hebeler.com", + "group_name": "lockbit3", + "discovered": "2023-12-15 18:43:02.844011" + }, + { + "post_title": "Insidesource", + "group_name": "8base", + "discovered": "2023-12-16 04:34:51.035437" + }, + { + "post_title": "CTS.CO.UK\\$13.5 M\\UK\\945gb\\1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-16 13:39:49.198781" + }, + { + "post_title": "New York School of Interior Design", + "group_name": "incransom", + "discovered": "2023-12-16 13:39:49.943404" + }, + { + "post_title": "CTS.CO.UK\\$13.5 M\\UK\\945gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-16 14:37:54.467468" + }, + { + "post_title": "cts.co.uk\\$13.5 M\\UK\\945gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-16 15:40:08.203482" + }, + { + "post_title": "E & J Gallo Winery", + "group_name": "alphv", + "discovered": "2023-12-16 23:38:13.081291" + }, + { + "post_title": "rodo.co.uk", + "group_name": "lockbit3", + "discovered": "2023-12-17 06:36:35.782815" + }, + { + "post_title": "Biomatrix LLC", + "group_name": "medusa", + "discovered": "2023-12-17 16:39:04.271955" + }, + { + "post_title": "ATCO Products Inc", + "group_name": "medusa", + "discovered": "2023-12-17 16:39:04.692144" + }, + { + "post_title": "Chetu", + "group_name": "medusa", + "discovered": "2023-12-17 16:39:05.199701" + }, + { + "post_title": "Kraft Foods", + "group_name": "snatch", + "discovered": "2023-12-17 17:37:31.216965" + }, + { + "post_title": "Spaulding Clinical", + "group_name": "snatch", + "discovered": "2023-12-17 17:37:32.023787" + }, + { + "post_title": "gcbhs.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:52.458359" + }, + { + "post_title": "cooper.co.uk", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:53.660658" + }, + { + "post_title": "decina.com.au", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:54.477657" + }, + { + "post_title": "sevenseasgroup.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:55.276739" + }, + { + "post_title": "tglt.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:56.228991" + }, + { + "post_title": "lunaconcorp.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:56.994656" + }, + { + "post_title": "dafiti.com.ar", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:57.764889" + }, + { + "post_title": "baden.ch", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:58.377776" + }, + { + "post_title": "gbuahn.org", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:38:59.143411" + }, + { + "post_title": "worldemblem.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:00.067374" + }, + { + "post_title": "shorts.uk.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:00.955060" + }, + { + "post_title": "coca-cola.com.sg", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:01.766633" + }, + { + "post_title": "leedarson.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:02.524266" + }, + { + "post_title": "grayhill.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:03.280012" + }, + { + "post_title": "aglweldingsupply.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:03.919205" + }, + { + "post_title": "www.pctel.com", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:04.556381" + }, + { + "post_title": "www.hotrmhmr.org", + "group_name": "dragonforce", + "discovered": "2023-12-18 05:39:05.151268" + }, + { + "post_title": "Hallidays", + "group_name": "blackbasta", + "discovered": "2023-12-18 11:37:49.921979" + }, + { + "post_title": "Vyera Pharmaceuticals", + "group_name": "blackbasta", + "discovered": "2023-12-18 11:37:50.598709" + }, + { + "post_title": "www.navitaspet.com", + "group_name": "blackbasta", + "discovered": "2023-12-18 11:37:51.376440" + }, + { + "post_title": "dillarddoor.com\\$8.5M\\USA\\87gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 11:38:06.430615" + }, + { + "post_title": "isc.dk\\$60.1M\\Denmark\\130gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 11:38:07.170360" + }, + { + "post_title": "nationalnail.com\\$678.9M\\USA\\195gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 11:38:08.007315" + }, + { + "post_title": "cieautomotive.com\\$3.6B\\Spain\\2.6tb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 11:38:08.766551" + }, + { + "post_title": "odalys-vacances.com\\$151.1M\\France\\548gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 11:38:09.551168" + }, + { + "post_title": "Electrical Connections", + "group_name": "bianlian", + "discovered": "2023-12-18 12:41:09.706799" + }, + { + "post_title": "odalys-vacances.com\\$151.1M\\France\\548gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 12:41:17.391960" + }, + { + "post_title": "lajollagroup.com\\$35.2M\\USA\\283gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-18 15:40:01.258725" + }, + { + "post_title": "Viking Therapeutics reported to the SEC following a breach", + "group_name": "alphv", + "discovered": "2023-12-18 19:38:09.087225" + }, + { + "post_title": "The CM Paula", + "group_name": "play", + "discovered": "2023-12-18 21:36:54.011912" + }, + { + "post_title": "parat-technology.com", + "group_name": "lockbit3", + "discovered": "2023-12-18 22:41:22.100893" + }, + { + "post_title": "C?????z????", + "group_name": "play", + "discovered": "2023-12-18 22:41:29.005756" + }, + { + "post_title": "DYWIDAG-Systems & American Transportation", + "group_name": "play", + "discovered": "2023-12-18 22:41:29.597590" + }, + { + "post_title": "Succes Schoonmaak", + "group_name": "play", + "discovered": "2023-12-18 22:41:30.664496" + }, + { + "post_title": "Waldners", + "group_name": "play", + "discovered": "2023-12-18 22:41:31.332088" + }, + { + "post_title": "Schoepe Display", + "group_name": "play", + "discovered": "2023-12-18 23:38:04.930248" + }, + { + "post_title": "Richard Harris Personal Injury Law Firm", + "group_name": "play", + "discovered": "2023-12-18 23:38:05.458129" + }, + { + "post_title": "Blackstone Valley Community Health Care", + "group_name": "hunters", + "discovered": "2023-12-19 00:53:23.740434" + }, + { + "post_title": "Kauno Technologijos Universitetas", + "group_name": "rhysida", + "discovered": "2023-12-19 03:37:19.131391" + }, + { + "post_title": "isc.dk\\$60.1M\\Denmark\\130gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-19 07:36:40.699116" + }, + { + "post_title": "nationalnail.com\\$678.9M\\USA\\195gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-19 07:36:41.464348" + }, + { + "post_title": "chuzefitness.com", + "group_name": "lockbit3", + "discovered": "2023-12-19 11:34:39.169212" + }, + { + "post_title": "Air Sino-Euro Associates Travel Pte. Ltd", + "group_name": "bianlian", + "discovered": "2023-12-19 17:39:39.170064" + }, + { + "post_title": "mtsd-vt.org", + "group_name": "lockbit3", + "discovered": "2023-12-19 20:36:01.075366" + }, + { + "post_title": "Viking Therapeutics", + "group_name": "alphv", + "discovered": "2023-12-19 21:39:57.171864" + }, + { + "post_title": "RCSB PDB", + "group_name": "meow", + "discovered": "2023-12-19 22:37:58.217594" + }, + { + "post_title": "WELBRO Building Corporation", + "group_name": "8base", + "discovered": "2023-12-20 01:49:39.289225" + }, + { + "post_title": "CETEC Ingénierie", + "group_name": "8base", + "discovered": "2023-12-20 08:35:43.722368" + }, + { + "post_title": "Davis Cedillo & Mendoza Inc", + "group_name": "8base", + "discovered": "2023-12-20 08:35:44.517991" + }, + { + "post_title": "Employ Milwaukee", + "group_name": "8base", + "discovered": "2023-12-20 08:35:45.418381" + }, + { + "post_title": "Horizon Pool & Spa", + "group_name": "8base", + "discovered": "2023-12-20 08:35:46.308114" + }, + { + "post_title": "LCGB", + "group_name": "8base", + "discovered": "2023-12-20 08:35:47.419112" + }, + { + "post_title": "The International School of Management", + "group_name": "8base", + "discovered": "2023-12-20 08:35:48.959817" + }, + { + "post_title": "socadis", + "group_name": "8base", + "discovered": "2023-12-20 08:35:49.804832" + }, + { + "post_title": "cieautomotive.com\\$3.6B\\Spain\\2.6tb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-20 09:34:25.513482" + }, + { + "post_title": "Prospect Medica", + "group_name": "rhysida", + "discovered": "2023-12-20 11:35:21.260790" + }, + { + "post_title": "udhaiyamdhall.com", + "group_name": "lockbit3", + "discovered": "2023-12-20 12:37:26.595294" + }, + { + "post_title": "Navigation Financial Group", + "group_name": "alphv", + "discovered": "2023-12-20 14:40:53.062007" + }, + { + "post_title": "des-igngroup.com", + "group_name": "lockbit3", + "discovered": "2023-12-20 14:40:58.431750" + }, + { + "post_title": "dobsystems.com", + "group_name": "lockbit3", + "discovered": "2023-12-20 14:40:59.261743" + }, + { + "post_title": "wkw-group.com\\$707M\\Germany\\575gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-20 15:36:06.113795" + }, + { + "post_title": "larlyn.com\\$256.8M\\Canada\\54gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-20 15:36:06.994393" + }, + { + "post_title": "hunterbuildings.com\\$130.4M\\USA\\166gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-20 15:36:07.752918" + }, + { + "post_title": "NIDEC GPM GmbH (Unpay)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:37.447291" + }, + { + "post_title": "Die Unfallkasse Thüringen (Unpay)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:38.708151" + }, + { + "post_title": "HALLIDAYS GROUP LIMITED (Unpay)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:39.348507" + }, + { + "post_title": "Rockford Gastroenterology Associates (Unpay)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:40.053733" + }, + { + "post_title": "Di Martino Group (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:40.864712" + }, + { + "post_title": "ALAB laboratoria (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:41.497998" + }, + { + "post_title": "Informist Media (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:42.215671" + }, + { + "post_title": "SUMMIT VETERINARY PHARMACEUTICALS LIMITED (Unpay-Full public)", + "group_name": "ragroup", + "discovered": "2023-12-20 16:38:43.155981" + }, + { + "post_title": "dbmgroup.com\\$43.6M\\USA\\110gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-20 16:38:46.471269" + }, + { + "post_title": "Unite Here", + "group_name": "incransom", + "discovered": "2023-12-20 19:36:39.338253" + }, + { + "post_title": "smudlers.com", + "group_name": "lockbit3", + "discovered": "2023-12-20 20:37:44.135460" + }, + { + "post_title": "yakult.com.au", + "group_name": "dragonforce", + "discovered": "2023-12-20 20:37:54.593346" + }, + { + "post_title": "Great Valley School District", + "group_name": "medusa", + "discovered": "2023-12-20 21:34:25.877916" + }, + { + "post_title": "Bladen County Public Library", + "group_name": "meow", + "discovered": "2023-12-20 21:34:33.643141" + }, + { + "post_title": "Owen Quilty Professional", + "group_name": "play", + "discovered": "2023-12-21 00:50:51.811958" + }, + { + "post_title": "Packaging Solutions", + "group_name": "play", + "discovered": "2023-12-21 00:50:52.603351" + }, + { + "post_title": "Concept Data", + "group_name": "play", + "discovered": "2023-12-21 00:50:53.295326" + }, + { + "post_title": "Jon Richard", + "group_name": "play", + "discovered": "2023-12-21 00:50:53.950205" + }, + { + "post_title": "kineticlease.com", + "group_name": "dragonforce", + "discovered": "2023-12-21 01:59:25.963472" + }, + { + "post_title": "aceaircargo.com", + "group_name": "dragonforce", + "discovered": "2023-12-21 01:59:28.093810" + }, + { + "post_title": "auditexpertnn.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:02.318384" + }, + { + "post_title": "promproektspb.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:03.096227" + }, + { + "post_title": "kailos.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:03.614930" + }, + { + "post_title": "gaztranscom.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:04.348568" + }, + { + "post_title": "atol.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:04.982919" + }, + { + "post_title": "roomhotel-sochi.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:05.589895" + }, + { + "post_title": "carmoney.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:06.601399" + }, + { + "post_title": "croc.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:07.197899" + }, + { + "post_title": "maritimebank.com", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:07.817321" + }, + { + "post_title": "habarovsk.amaks", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:08.443810" + }, + { + "post_title": "avrora24.ru", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:09.091098" + }, + { + "post_title": "krasnoyarsk.amaks", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:09.642604" + }, + { + "post_title": "acac.com", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:10.345605" + }, + { + "post_title": "lapostemobile.fr", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:10.961909" + }, + { + "post_title": "emprint.com", + "group_name": "werewolves", + "discovered": "2023-12-21 04:33:11.525819" + }, + { + "post_title": "denford.co.uk", + "group_name": "lockbit3", + "discovered": "2023-12-22 00:50:56.770485" + }, + { + "post_title": "esepac.com", + "group_name": "lockbit3", + "discovered": "2023-12-22 00:50:57.638726" + }, + { + "post_title": "fager-mcgee.com", + "group_name": "lockbit3", + "discovered": "2023-12-22 02:00:10.784798" + }, + { + "post_title": "goldenc.com", + "group_name": "lockbit3", + "discovered": "2023-12-22 02:00:11.741496" + }, + { + "post_title": "sterlinghomes.com.au", + "group_name": "lockbit3", + "discovered": "2023-12-22 02:00:15.772343" + }, + { + "post_title": "igs-inc.com", + "group_name": "lockbit3", + "discovered": "2023-12-22 05:35:47.845339" + }, + { + "post_title": "xeinadin.com", + "group_name": "lockbit3", + "discovered": "2023-12-22 10:37:20.876667" + }, + { + "post_title": "Nissan Australia", + "group_name": "akira", + "discovered": "2023-12-22 12:39:02.120138" + }, + { + "post_title": "www.whafh.com", + "group_name": "blackbasta", + "discovered": "2023-12-22 18:36:04.483050" + }, + { + "post_title": "ciasc.mx", + "group_name": "lockbit3", + "discovered": "2023-12-22 20:39:11.673928" + }, + { + "post_title": "csmsa.com.ar", + "group_name": "lockbit3", + "discovered": "2023-12-22 20:39:12.854257" + }, + { + "post_title": "VF Corporation", + "group_name": "alphv", + "discovered": "2023-12-22 22:37:37.306949" + }, + { + "post_title": "castores.com.mx", + "group_name": "lockbit3", + "discovered": "2023-12-23 00:53:37.507652" + }, + { + "post_title": "PriceSmart (Update)", + "group_name": "alphv", + "discovered": "2023-12-23 02:41:45.836196" + }, + { + "post_title": "quakerwindows.com\\$271.6M\\USA\\233gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-23 12:36:52.526768" + }, + { + "post_title": "zurcherodioraven.com", + "group_name": "lockbit3", + "discovered": "2023-12-23 15:35:42.822404" + }, + { + "post_title": "Bay Orthopedic and Rehabilitation Supply", + "group_name": "bianlian", + "discovered": "2023-12-23 17:36:13.798227" + }, + { + "post_title": "Associates Family Dentistry", + "group_name": "bianlian", + "discovered": "2023-12-23 17:36:14.538891" + }, + { + "post_title": "avescorent.ch", + "group_name": "lockbit3", + "discovered": "2023-12-23 20:33:41.230776" + }, + { + "post_title": "bkf-fleuren.de", + "group_name": "lockbit3", + "discovered": "2023-12-24 02:45:04.796176" + }, + { + "post_title": "zonesoft.pt", + "group_name": "stormous", + "discovered": "2023-12-24 04:35:21.729355" + }, + { + "post_title": "Colonial Pipeline", + "group_name": "ransomedvc", + "discovered": "2023-12-24 04:35:38.354782" + }, + { + "post_title": "IDF SMS system", + "group_name": "malekteam", + "discovered": "2023-12-24 04:35:40.221743" + }, + { + "post_title": "Ono Academic College", + "group_name": "malekteam", + "discovered": "2023-12-24 04:35:41.784185" + }, + { + "post_title": "ZIV Hospital", + "group_name": "malekteam", + "discovered": "2023-12-24 04:35:42.512371" + }, + { + "post_title": "dorimedia", + "group_name": "malekteam", + "discovered": "2023-12-24 04:35:43.057686" + }, + { + "post_title": "gav.co.il", + "group_name": "malekteam", + "discovered": "2023-12-24 04:35:43.559121" + }, + { + "post_title": "Prefeitura Municipal de Itabira", + "group_name": "alphv", + "discovered": "2023-12-24 07:36:41.768950" + }, + { + "post_title": "Davis Cedillo and Mendoza Inc", + "group_name": "8base", + "discovered": "2023-12-25 07:33:28.880995" + }, + { + "post_title": "Horizon Pool and Spa", + "group_name": "8base", + "discovered": "2023-12-25 07:33:29.658617" + }, + { + "post_title": "coastalplainsctr.org", + "group_name": "lockbit3", + "discovered": "2023-12-25 09:39:17.270413" + }, + { + "post_title": "tecnifibre.com", + "group_name": "lockbit3", + "discovered": "2023-12-25 09:39:22.513470" + }, + { + "post_title": "zrvp.ro", + "group_name": "lockbit3", + "discovered": "2023-12-25 09:39:23.956612" + }, + { + "post_title": "co.pickens.sc.us", + "group_name": "lockbit3", + "discovered": "2023-12-25 10:37:22.115069" + }, + { + "post_title": "hendelsinc.com", + "group_name": "lockbit3", + "discovered": "2023-12-25 10:37:24.431098" + }, + { + "post_title": "walkro.eu", + "group_name": "lockbit3", + "discovered": "2023-12-25 10:37:29.095841" + }, + { + "post_title": "International Electr onic Machines Corp", + "group_name": "akira", + "discovered": "2023-12-25 14:39:03.433408" + }, + { + "post_title": "cts.co.uk\\$13.5 M\\UK\\945gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-25 16:38:14.457819" + }, + { + "post_title": "http://www.blaineschools.org", + "group_name": "blacksuit", + "discovered": "2023-12-25 21:41:38.241391" + }, + { + "post_title": "Tshwane University of Technology", + "group_name": "rhysida", + "discovered": "2023-12-26 00:53:54.830239" + }, + { + "post_title": "Abdali Hospital", + "group_name": "rhysida", + "discovered": "2023-12-26 00:53:55.427360" + }, + { + "post_title": "Regarding FM", + "group_name": "ransomedvc", + "discovered": "2023-12-26 11:36:34.832282" + }, + { + "post_title": "smbw.com.au", + "group_name": "lockbit3", + "discovered": "2023-12-26 13:40:37.901200" + }, + { + "post_title": "coaxis.com", + "group_name": "lockbit3", + "discovered": "2023-12-26 20:41:32.859590" + }, + { + "post_title": "richmont.edu", + "group_name": "lockbit3", + "discovered": "2023-12-26 20:41:38.121827" + }, + { + "post_title": "Ultra Intelligence & Communications", + "group_name": "alphv", + "discovered": "2023-12-27 07:36:01.998864" + }, + { + "post_title": "Lake of the Woods County", + "group_name": "meow", + "discovered": "2023-12-27 11:39:23.722115" + }, + { + "post_title": "FIRST 5 Santa Clara County", + "group_name": "alphv", + "discovered": "2023-12-27 12:37:36.602000" + }, + { + "post_title": "Aura Engineering, LLC", + "group_name": "alphv", + "discovered": "2023-12-27 12:37:37.260031" + }, + { + "post_title": "EPS.RS", + "group_name": "qilin", + "discovered": "2023-12-27 15:36:38.422926" + }, + { + "post_title": "ohiolottery.com", + "group_name": "dragonforce", + "discovered": "2023-12-27 19:41:37.207435" + }, + { + "post_title": "hoffmanestates.org", + "group_name": "lockbit3", + "discovered": "2023-12-28 10:41:55.689732" + }, + { + "post_title": "CVR Associates", + "group_name": "play", + "discovered": "2023-12-28 13:38:10.563767" + }, + { + "post_title": "pbssystems.com\\$71.5M\\Canada\\202GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-28 14:38:06.831471" + }, + { + "post_title": "bachoco.com.mx\\$4.4B\\Mexico\\130GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-28 14:38:07.567924" + }, + { + "post_title": "gdi.com\\$6.1B\\Canada\\700gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-28 14:38:08.765246" + }, + { + "post_title": "Northland Mechanical Contractors", + "group_name": "bianlian", + "discovered": "2023-12-28 15:40:03.543439" + }, + { + "post_title": "dbmgroup.com\\$43.6M\\USA\\110gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-28 16:42:35.538496" + }, + { + "post_title": "Wesgar Inc.", + "group_name": "alphv", + "discovered": "2023-12-28 19:41:46.282440" + }, + { + "post_title": "Nej Inc was hacked", + "group_name": "alphv", + "discovered": "2023-12-29 08:40:40.110138" + }, + { + "post_title": "tridon.com.au\\$34M\\Australia\\175GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-29 11:39:32.373768" + }, + { + "post_title": "coop.se\\$6.5B\\Sweden\\257GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-29 11:39:33.019386" + }, + { + "post_title": "bellgroup.co.uk\\$103.6M\\UK\\9GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2023-12-29 11:39:33.712346" + }, + { + "post_title": "krijnen.be", + "group_name": "lockbit3", + "discovered": "2023-12-29 15:39:17.622387" + }, + { + "post_title": "Banco Promerica de la República Dominicana", + "group_name": "ransomhouse", + "discovered": "2023-12-29 17:37:01.145307" + }, + { + "post_title": "Okada Manilla", + "group_name": "alphv", + "discovered": "2023-12-29 20:38:37.001667" + }, + { + "post_title": "Erbilbil Bilgisayar (You have 72 hours)", + "group_name": "alphv", + "discovered": "2023-12-29 21:40:36.070431" + }, + { + "post_title": "eagersautomotive.com.au", + "group_name": "lockbit3", + "discovered": "2023-12-30 06:46:12.549681" + }, + { + "post_title": "contimade.cz", + "group_name": "lockbit3", + "discovered": "2023-12-30 07:38:15.797569" + }, + { + "post_title": "Clearwinds", + "group_name": "alphv", + "discovered": "2023-12-30 10:39:23.047769" + }, + { + "post_title": "Kenya Airways", + "group_name": "ransomexx", + "discovered": "2023-12-30 14:35:06.104044" + }, + { + "post_title": "Xerox Corp", + "group_name": "incransom", + "discovered": "2023-12-30 15:34:21.077162" + }, + { + "post_title": "Keyser Mason Ball", + "group_name": "play", + "discovered": "2023-12-30 22:51:09.619786" + }, + { + "post_title": "M?????n C?????? & W?? & The ???? G????", + "group_name": "play", + "discovered": "2023-12-30 22:51:09.960659" + }, + { + "post_title": "Aspiration Training", + "group_name": "rhysida", + "discovered": "2024-01-01 11:34:26.186594" + }, + { + "post_title": "http://www.mpmmedicalsupply.com", + "group_name": "ciphbit", + "discovered": "2024-01-02 00:50:38.800600" + }, + { + "post_title": "groupesa", + "group_name": "lockbit3", + "discovered": "2024-01-02 05:40:30.068100" + }, + { + "post_title": "SAED International", + "group_name": "alphv", + "discovered": "2024-01-02 16:33:30.530180" + }, + { + "post_title": "groupe-idea.com", + "group_name": "lockbit3", + "discovered": "2024-01-02 19:39:58.298706" + }, + { + "post_title": "Madison Capital & WPM & The Time Group", + "group_name": "play", + "discovered": "2024-01-02 22:37:57.838589" + }, + { + "post_title": "prinovagloba", + "group_name": "lockbit3", + "discovered": "2024-01-02 23:36:42.655139" + }, + { + "post_title": "http://kcsdschools.net", + "group_name": "blacksuit", + "discovered": "2024-01-03 17:37:20.777994" + }, + { + "post_title": "Bradford Health", + "group_name": "hunters", + "discovered": "2024-01-03 20:37:53.381118" + }, + { + "post_title": "Alexander Dennis", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:00.154154" + }, + { + "post_title": "Brintons", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:01.090066" + }, + { + "post_title": "Kohl Wholesale", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:02.330255" + }, + { + "post_title": "NALS Apartment Homes", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:02.929741" + }, + { + "post_title": "Leonard’s Express", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:03.511591" + }, + { + "post_title": "Graebener® Bipolar Plate Technologies", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:04.154855" + }, + { + "post_title": "Hotelplan", + "group_name": "blackbasta", + "discovered": "2024-01-04 11:38:04.884834" + }, + { + "post_title": "Diablo Valley Oncology and Hematology Medical Group - Press Release", + "group_name": "monti", + "discovered": "2024-01-04 12:42:56.919893" + }, + { + "post_title": "Gunning & LaFazia, Inc.", + "group_name": "hunters", + "discovered": "2024-01-04 14:39:06.897810" + }, + { + "post_title": "Thermosash Commercial Ltd", + "group_name": "hunters", + "discovered": "2024-01-04 14:39:07.841037" + }, + { + "post_title": "Project M.O.R.E.", + "group_name": "hunters", + "discovered": "2024-01-04 14:39:08.924420" + }, + { + "post_title": "ips-securex.com", + "group_name": "lockbit3", + "discovered": "2024-01-05 11:41:09.902965" + }, + { + "post_title": "Somerset Logistics", + "group_name": "bianlian", + "discovered": "2024-01-05 14:39:19.808262" + }, + { + "post_title": "Proax Technologies LTD", + "group_name": "bianlian", + "discovered": "2024-01-05 14:39:20.657564" + }, + { + "post_title": "The Lutheran World Federation", + "group_name": "rhysida", + "discovered": "2024-01-06 00:54:42.744715" + }, + { + "post_title": "Televerde", + "group_name": "play", + "discovered": "2024-01-06 07:42:32.032000" + }, + { + "post_title": "Rehabilitation Supply", + "group_name": "bianlian", + "discovered": "2024-01-06 15:37:25.899802" + }, + { + "post_title": "capitalhealth.org", + "group_name": "lockbit3", + "discovered": "2024-01-07 17:35:39.576174" + }, + { + "post_title": "mciwv.com", + "group_name": "lockbit3", + "discovered": "2024-01-08 08:44:26.150274" + }, + { + "post_title": "morganpilate.com", + "group_name": "lockbit3", + "discovered": "2024-01-08 08:44:27.103265" + }, + { + "post_title": "CellNetix Pathology & Laboratories, LLC", + "group_name": "incransom", + "discovered": "2024-01-08 13:45:23.123958" + }, + { + "post_title": "Van Buren Public Sch ools", + "group_name": "akira", + "discovered": "2024-01-08 15:41:32.738129" + }, + { + "post_title": "Heller Industries", + "group_name": "akira", + "discovered": "2024-01-08 15:41:33.470348" + }, + { + "post_title": "Erbilbil Bilgisayar", + "group_name": "alphv", + "discovered": "2024-01-08 23:39:56.249914" + }, + { + "post_title": "www.halleonard.com.au", + "group_name": "qilin", + "discovered": "2024-01-09 02:07:54.765210" + }, + { + "post_title": "Axfast AB", + "group_name": "8base", + "discovered": "2024-01-09 04:42:57.540473" + }, + { + "post_title": "Syndicat Général des Vignerons de la Champagne", + "group_name": "8base", + "discovered": "2024-01-09 04:42:59.974799" + }, + { + "post_title": "Ito Pallpack Gruppen", + "group_name": "akira", + "discovered": "2024-01-09 16:49:17.176299" + }, + { + "post_title": "Viridi", + "group_name": "akira", + "discovered": "2024-01-09 16:49:17.951066" + }, + { + "post_title": "http://delcoautomation.com", + "group_name": "blacksuit", + "discovered": "2024-01-09 19:47:32.425187" + }, + { + "post_title": "agnesb.eu", + "group_name": "lockbit3", + "discovered": "2024-01-10 11:42:49.571669" + }, + { + "post_title": "hartalega.com.my", + "group_name": "lockbit3", + "discovered": "2024-01-10 11:42:52.464945" + }, + { + "post_title": "corinthcoke.com", + "group_name": "qilin", + "discovered": "2024-01-10 11:42:58.935008" + }, + { + "post_title": "tiautoinvestments.co.za", + "group_name": "lockbit3", + "discovered": "2024-01-10 12:41:50.275332" + }, + { + "post_title": "twt.co.za", + "group_name": "lockbit3", + "discovered": "2024-01-10 12:41:51.266804" + }, + { + "post_title": "Group Bogart", + "group_name": "alphv", + "discovered": "2024-01-10 13:42:31.909729" + }, + { + "post_title": "https://www.molnar-bischof.de/", + "group_name": "qilin", + "discovered": "2024-01-10 18:41:49.699697" + }, + { + "post_title": "SHIBLEY RIGHTON", + "group_name": "alphv", + "discovered": "2024-01-11 09:40:25.421672" + }, + { + "post_title": "Ursel Phillips Fellows Hopkinson", + "group_name": "alphv", + "discovered": "2024-01-11 09:40:26.179151" + }, + { + "post_title": "Triella", + "group_name": "alphv", + "discovered": "2024-01-11 09:40:26.724214" + }, + { + "post_title": "R Robertson Insurance Brokers", + "group_name": "alphv", + "discovered": "2024-01-11 10:40:15.425445" + }, + { + "post_title": "automotionshade.com", + "group_name": "alphv", + "discovered": "2024-01-11 10:40:16.238904" + }, + { + "post_title": "pactchangeslives.com", + "group_name": "lockbit3", + "discovered": "2024-01-11 12:44:24.968400" + }, + { + "post_title": "Water For People", + "group_name": "medusa", + "discovered": "2024-01-11 12:44:30.129886" + }, + { + "post_title": "Limburg", + "group_name": "medusa", + "discovered": "2024-01-11 12:44:31.037205" + }, + { + "post_title": "Vincentz Network", + "group_name": "akira", + "discovered": "2024-01-11 14:41:08.937047" + }, + { + "post_title": "Blackburn College", + "group_name": "akira", + "discovered": "2024-01-11 14:41:09.513124" + }, + { + "post_title": "Charm Sciences", + "group_name": "snatch", + "discovered": "2024-01-11 17:42:05.694049" + }, + { + "post_title": "Elliott Group", + "group_name": "snatch", + "discovered": "2024-01-11 17:42:07.079923" + }, + { + "post_title": "Unitex", + "group_name": "snatch", + "discovered": "2024-01-11 17:42:07.803171" + }, + { + "post_title": "Primeimaging", + "group_name": "everest", + "discovered": "2024-01-12 04:41:51.718348" + }, + { + "post_title": "Alliedwoundcare", + "group_name": "everest", + "discovered": "2024-01-12 04:41:52.424277" + }, + { + "post_title": "hi-cone.com\\$27M\\USA\\650GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-12 04:42:17.591395" + }, + { + "post_title": "intercityinvestments.com\\$31.1M\\USA\\10gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-12 04:42:18.343472" + }, + { + "post_title": "dtsolutions.net\\$31.1M\\USA\\34gb\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-12 04:42:18.986108" + }, + { + "post_title": "acutis.com\\$62.2M\\USA\\137GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-12 04:42:19.713907" + }, + { + "post_title": "something new is coming soon. have your say: https://v2.telemetry.ltd", + "group_name": "ransomwatch", + "discovered": "2024-01-12 05:56:20.548082" + }, + { + "post_title": "Anderson King Energy Consultants, LLC", + "group_name": "8base", + "discovered": "2024-01-12 07:42:18.182144" + }, + { + "post_title": "BALLAY MENUISERIES", + "group_name": "8base", + "discovered": "2024-01-12 07:42:19.090845" + }, + { + "post_title": "Former S.p.A.", + "group_name": "8base", + "discovered": "2024-01-12 07:42:20.333805" + }, + { + "post_title": "International Trade Brokers and Forwarders", + "group_name": "8base", + "discovered": "2024-01-12 07:42:21.289028" + }, + { + "post_title": "Sems and Specials Incorporated", + "group_name": "8base", + "discovered": "2024-01-12 07:42:22.553291" + }, + { + "post_title": "Washington School For The Deaf", + "group_name": "incransom", + "discovered": "2024-01-12 10:46:44.874398" + }, + { + "post_title": "asburyauto.com\\$15.4B\\USA\\62GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-12 13:44:44.369799" + }, + { + "post_title": "olea.com", + "group_name": "lockbit3", + "discovered": "2024-01-12 15:43:40.476987" + }, + { + "post_title": "pharrusa.com", + "group_name": "threeam", + "discovered": "2024-01-12 18:46:28.230144" + }, + { + "post_title": "thecsi.com", + "group_name": "threeam", + "discovered": "2024-01-12 18:46:28.884396" + }, + { + "post_title": "Builcore", + "group_name": "alphv", + "discovered": "2024-01-12 19:44:19.271125" + }, + { + "post_title": "www.hotelcontinental.no", + "group_name": "qilin", + "discovered": "2024-01-12 22:39:23.381371" + }, + { + "post_title": "arrowinternational.com", + "group_name": "lockbit3", + "discovered": "2024-01-12 23:46:02.714665" + }, + { + "post_title": "tridon.com.au\\$34M\\Australia\\175GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-13 09:42:14.809515" + }, + { + "post_title": "Lee Spring", + "group_name": "rhysida", + "discovered": "2024-01-13 10:46:29.134841" + }, + { + "post_title": "turascandinavia.com", + "group_name": "lockbit3", + "discovered": "2024-01-13 17:46:59.710210" + }, + { + "post_title": "amenitek.com", + "group_name": "lockbit3", + "discovered": "2024-01-14 12:39:06.187259" + }, + { + "post_title": "coop.se\\$6.5B\\Sweden\\257GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-14 12:39:23.463094" + }, + { + "post_title": "forabank.ru", + "group_name": "werewolves", + "discovered": "2024-01-14 17:47:44.234052" + }, + { + "post_title": "solveindustrial.com", + "group_name": "werewolves", + "discovered": "2024-01-14 17:47:44.813207" + }, + { + "post_title": "vasexperts.ru", + "group_name": "werewolves", + "discovered": "2024-01-14 17:47:45.519792" + }, + { + "post_title": "Ausa", + "group_name": "hunters", + "discovered": "2024-01-15 05:46:13.816180" + }, + { + "post_title": "Northeast Spine and Sports Medicine's", + "group_name": "bianlian", + "discovered": "2024-01-15 08:47:21.732829" + }, + { + "post_title": "Republic Shipping Consolidators, Inc", + "group_name": "bianlian", + "discovered": "2024-01-15 08:47:22.704236" + }, + { + "post_title": "hosted-it.co.uk", + "group_name": "lockbit3", + "discovered": "2024-01-15 11:48:24.479329" + }, + { + "post_title": "vasudhapharma.com", + "group_name": "lockbit3", + "discovered": "2024-01-15 11:48:29.917025" + }, + { + "post_title": "shinwajpn.co.jp", + "group_name": "lockbit3", + "discovered": "2024-01-15 12:44:38.321906" + }, + { + "post_title": "Beit Handesai", + "group_name": "malekteam", + "discovered": "2024-01-15 12:44:49.059726" + }, + { + "post_title": "maisonsdelavenir.com", + "group_name": "lockbit3", + "discovered": "2024-01-15 13:45:02.569168" + }, + { + "post_title": "Donear Industries", + "group_name": "bianlian", + "discovered": "2024-01-16 08:46:48.295809" + }, + { + "post_title": "www.fjohara.com", + "group_name": "qilin", + "discovered": "2024-01-16 12:43:16.625013" + }, + { + "post_title": "Bestway Sales", + "group_name": "akira", + "discovered": "2024-01-16 12:43:19.507392" + }, + { + "post_title": "Premium Guard", + "group_name": "akira", + "discovered": "2024-01-16 12:43:20.210065" + }, + { + "post_title": "TGS Transportation", + "group_name": "akira", + "discovered": "2024-01-16 12:43:20.946448" + }, + { + "post_title": "Becker Logistics", + "group_name": "akira", + "discovered": "2024-01-16 16:45:26.273621" + }, + { + "post_title": "geologics.com", + "group_name": "dragonforce", + "discovered": "2024-01-17 08:54:09.883290" + }, + { + "post_title": "millgate.co.uk", + "group_name": "lockbit3", + "discovered": "2024-01-16 20:39:29.149764" + }, + { + "post_title": "Nexus Telecom Switzerland AG", + "group_name": "8base", + "discovered": "2024-01-17 03:39:35.491754" + }, + { + "post_title": "SIVAM Coatings S.p.A.", + "group_name": "8base", + "discovered": "2024-01-17 03:39:36.524493" + }, + { + "post_title": "Sunfab Hydraulics AB", + "group_name": "8base", + "discovered": "2024-01-17 03:39:37.677029" + }, + { + "post_title": "Washtech", + "group_name": "8base", + "discovered": "2024-01-17 03:39:38.720999" + }, + { + "post_title": "Stone, Avant & Daniels", + "group_name": "medusa", + "discovered": "2024-01-17 09:49:22.709814" + }, + { + "post_title": "Rosens Diversified Inc", + "group_name": "medusa", + "discovered": "2024-01-17 09:49:23.617281" + }, + { + "post_title": "DENHAM the Jeanmaker", + "group_name": "akira", + "discovered": "2024-01-17 14:44:15.635353" + }, + { + "post_title": "Waldner's", + "group_name": "play", + "discovered": "2024-01-18 06:45:32.608756" + }, + { + "post_title": "Flash-Motors Last Warning", + "group_name": "ransomedvc", + "discovered": "2024-01-18 06:45:39.985676" + }, + { + "post_title": "JspPharma data", + "group_name": "insane", + "discovered": "2024-01-18 06:45:42.410730" + }, + { + "post_title": "aercap.com", + "group_name": "slug", + "discovered": "2024-01-18 06:45:43.370076" + }, + { + "post_title": "onyx-fire.com", + "group_name": "ransomblog_noname2", + "discovered": "2024-01-18 06:45:44.223766" + }, + { + "post_title": "selmi.com.br", + "group_name": "ransomblog_noname2", + "discovered": "2024-01-18 06:45:44.976104" + }, + { + "post_title": "nobleweb.com", + "group_name": "ransomblog_noname2", + "discovered": "2024-01-18 06:45:45.864454" + }, + { + "post_title": "monaco-technologies.com", + "group_name": "ransomblog_noname2", + "discovered": "2024-01-18 06:45:46.929731" + }, + { + "post_title": "Gallup McKinley County Schools", + "group_name": "hunters", + "discovered": "2024-01-18 11:45:59.580411" + }, + { + "post_title": "jaffeandasher.com", + "group_name": "lockbit3", + "discovered": "2024-01-18 15:47:33.802755" + }, + { + "post_title": "digipwr.com", + "group_name": "lockbit3", + "discovered": "2024-01-18 17:43:56.927062" + }, + { + "post_title": "http://www.gocruisers.org", + "group_name": "blacksuit", + "discovered": "2024-01-18 17:44:10.433256" + }, + { + "post_title": "Malongo France", + "group_name": "8base", + "discovered": "2024-01-19 06:45:44.118359" + }, + { + "post_title": "foxsemicon.com", + "group_name": "lockbit3", + "discovered": "2024-01-19 12:47:45.077702" + }, + { + "post_title": "Alupar Investimento SA", + "group_name": "hunters", + "discovered": "2024-01-19 13:46:37.493934" + }, + { + "post_title": "cmmt.com.tw", + "group_name": "lockbit3", + "discovered": "2024-01-19 15:44:23.057233" + }, + { + "post_title": "evit.edu", + "group_name": "lockbit3", + "discovered": "2024-01-19 15:44:25.276598" + }, + { + "post_title": "shenandoahtx.us", + "group_name": "lockbit3", + "discovered": "2024-01-19 15:44:29.621288" + }, + { + "post_title": "Hamilton-Madison Hou se", + "group_name": "akira", + "discovered": "2024-01-19 15:44:35.640809" + }, + { + "post_title": "Hydratek", + "group_name": "akira", + "discovered": "2024-01-19 16:45:49.530601" + }, + { + "post_title": "LT Business Dynamics", + "group_name": "bianlian", + "discovered": "2024-01-19 17:43:48.923691" + }, + { + "post_title": "GROWTH by NCRC", + "group_name": "bianlian", + "discovered": "2024-01-19 17:43:49.943463" + }, + { + "post_title": "TPG Architecture", + "group_name": "play", + "discovered": "2024-01-19 17:43:54.124210" + }, + { + "post_title": "jdbchina.com", + "group_name": "lockbit3", + "discovered": "2024-01-19 18:45:38.700899" + }, + { + "post_title": "intercityinvestments.com\\$31.1M\\USA\\10gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-19 18:45:50.869121" + }, + { + "post_title": "dywidag.com", + "group_name": "lockbit3", + "discovered": "2024-01-19 20:43:41.551285" + }, + { + "post_title": "Sykes Consulting, Inc.", + "group_name": "incransom", + "discovered": "2024-01-19 20:43:57.741105" + }, + { + "post_title": "pratt.edu", + "group_name": "lockbit3", + "discovered": "2024-01-19 21:43:54.728424" + }, + { + "post_title": "seiu1000.org", + "group_name": "lockbit3", + "discovered": "2024-01-19 21:43:56.770152" + }, + { + "post_title": "Anna Jaques Hospital", + "group_name": "moneymessage", + "discovered": "2024-01-19 21:44:02.594334" + }, + { + "post_title": "www.projects-world.com", + "group_name": "qilin", + "discovered": "2024-01-19 23:46:45.845817" + }, + { + "post_title": "Busse & Busee, PC Attorneys at Law", + "group_name": "alphv", + "discovered": "2024-01-20 08:45:37.079022" + }, + { + "post_title": "swiftair.com", + "group_name": "lockbit3", + "discovered": "2024-01-20 11:45:39.135758" + }, + { + "post_title": "wendy.mx", + "group_name": "lockbit3", + "discovered": "2024-01-20 11:45:41.536565" + }, + { + "post_title": "Worthen Industries [You have three days]", + "group_name": "alphv", + "discovered": "2024-01-20 12:44:05.976241" + }, + { + "post_title": "tvjahnrheine.de", + "group_name": "lockbit3", + "discovered": "2024-01-21 01:04:57.151623" + }, + { + "post_title": "home-waremmien.be", + "group_name": "lockbit3", + "discovered": "2024-01-21 02:04:53.697610" + }, + { + "post_title": "marxan.es", + "group_name": "lockbit3", + "discovered": "2024-01-21 02:04:55.942938" + }, + { + "post_title": "subway.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 09:37:49.222430" + }, + { + "post_title": "bmc-cpa.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 13:49:59.086995" + }, + { + "post_title": "jasman.com.mx", + "group_name": "lockbit3", + "discovered": "2024-01-21 14:44:02.233910" + }, + { + "post_title": "Martinaire Aviation", + "group_name": "bianlian", + "discovered": "2024-01-21 16:44:03.532995" + }, + { + "post_title": "KC Pharmaceuticals", + "group_name": "bianlian", + "discovered": "2024-01-21 16:44:04.580059" + }, + { + "post_title": "North Star Tax And Accounting", + "group_name": "bianlian", + "discovered": "2024-01-21 16:44:05.343505" + }, + { + "post_title": "stjohnrochester.org", + "group_name": "lockbit3", + "discovered": "2024-01-21 22:46:14.664819" + }, + { + "post_title": "cct.or.th", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:26.018721" + }, + { + "post_title": "duconind.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:27.773876" + }, + { + "post_title": "gattoplaters.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:29.232360" + }, + { + "post_title": "hughessupplyco.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:31.182721" + }, + { + "post_title": "qtc-energy.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:34.130607" + }, + { + "post_title": "synnex-grp.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:35.913078" + }, + { + "post_title": "umi-tiles.com", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:37.121925" + }, + { + "post_title": "wittmann.at", + "group_name": "lockbit3", + "discovered": "2024-01-21 23:45:38.253889" + }, + { + "post_title": "Richmond Fellowship Scotland", + "group_name": "medusa", + "discovered": "2024-01-22 11:42:24.717477" + }, + { + "post_title": "The Gainsborough Bath ", + "group_name": "medusa", + "discovered": "2024-01-22 11:42:25.396271" + }, + { + "post_title": "Pozzi Italy", + "group_name": "medusa", + "discovered": "2024-01-22 11:42:26.239363" + }, + { + "post_title": "Waldner's", + "group_name": "medusa", + "discovered": "2024-01-22 11:42:27.152694" + }, + { + "post_title": "deknudtframes.be", + "group_name": "cuba", + "discovered": "2024-01-22 15:47:28.174156" + }, + { + "post_title": "davidsbridal.com", + "group_name": "lockbit3", + "discovered": "2024-01-22 17:53:14.585867" + }, + { + "post_title": "Asahi Glass", + "group_name": "blackbasta", + "discovered": "2024-01-22 18:47:17.141587" + }, + { + "post_title": "Double Eagle Development", + "group_name": "hunters", + "discovered": "2024-01-22 18:47:39.845183" + }, + { + "post_title": "ANS COMPUTER [72hrs]", + "group_name": "alphv", + "discovered": "2024-01-22 19:41:49.781528" + }, + { + "post_title": "HOE Pharmaceuticals Sdn Bhd", + "group_name": "ransomhouse", + "discovered": "2024-01-22 23:42:37.186972" + }, + { + "post_title": "bellgroup.co.uk\\$103.6M\\UK\\9GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-22 23:42:54.661644" + }, + { + "post_title": "C and F Packing Company Inc.", + "group_name": "8base", + "discovered": "2024-01-23 04:40:38.390666" + }, + { + "post_title": "ARPEGE", + "group_name": "8base", + "discovered": "2024-01-23 05:42:58.109234" + }, + { + "post_title": "Smith Capital - Press Release", + "group_name": "monti", + "discovered": "2024-01-23 08:39:41.591021" + }, + { + "post_title": "Double Eagle Energy Holdings IV", + "group_name": "hunters", + "discovered": "2024-01-23 09:38:24.678384" + }, + { + "post_title": "ENVEA", + "group_name": "blackbasta", + "discovered": "2024-01-23 10:41:51.022975" + }, + { + "post_title": "Herrs (You have 72 hours)", + "group_name": "alphv", + "discovered": "2024-01-23 12:43:18.380093" + }, + { + "post_title": "R.C. Moore Trucking", + "group_name": "hunters", + "discovered": "2024-01-23 12:43:37.180638" + }, + { + "post_title": "Total Air Solutions", + "group_name": "alphv", + "discovered": "2024-01-23 14:38:10.948912" + }, + { + "post_title": "STEMCOR", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:31.046751" + }, + { + "post_title": "United Industries", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:31.862644" + }, + { + "post_title": "CINFAB", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:33.014985" + }, + { + "post_title": "High Arctic", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:33.975238" + }, + { + "post_title": "Kivi Bros", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:34.748960" + }, + { + "post_title": "Société Dupont Restauration", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:35.547852" + }, + { + "post_title": "KTBS Law LLP", + "group_name": "blackbasta", + "discovered": "2024-01-23 16:41:36.818351" + }, + { + "post_title": "Milestone Environmen tal Contracting", + "group_name": "akira", + "discovered": "2024-01-23 16:41:49.646078" + }, + { + "post_title": "Wilhoit Properties", + "group_name": "akira", + "discovered": "2024-01-23 16:41:50.625392" + }, + { + "post_title": "Fairmont Federal Credit Union", + "group_name": "blackbasta", + "discovered": "2024-01-23 17:46:22.443867" + }, + { + "post_title": "Cryopak", + "group_name": "akira", + "discovered": "2024-01-23 20:47:07.279237" + }, + { + "post_title": "lyonshipyard.com", + "group_name": "lockbit3", + "discovered": "2024-01-23 21:45:26.730551" + }, + { + "post_title": "sierrafrontgroup.com", + "group_name": "lockbit3", + "discovered": "2024-01-23 21:45:30.350229" + }, + { + "post_title": "micrometals.com", + "group_name": "abyss", + "discovered": "2024-01-23 22:42:29.175681" + }, + { + "post_title": "synergyfinancialgrp.com", + "group_name": "abyss", + "discovered": "2024-01-23 22:42:30.646445" + }, + { + "post_title": "Bikesportz Imports", + "group_name": "8base", + "discovered": "2024-01-24 01:04:13.132118" + }, + { + "post_title": "Glimstedt", + "group_name": "8base", + "discovered": "2024-01-24 01:04:14.829514" + }, + { + "post_title": "Groupe Sweetco", + "group_name": "8base", + "discovered": "2024-01-24 01:04:15.811895" + }, + { + "post_title": "La Ligue", + "group_name": "8base", + "discovered": "2024-01-24 01:04:17.018865" + }, + { + "post_title": "Midwest Service Center", + "group_name": "8base", + "discovered": "2024-01-24 01:04:18.215523" + }, + { + "post_title": "Nbbl", + "group_name": "8base", + "discovered": "2024-01-24 01:04:19.435926" + }, + { + "post_title": "Signature Performance Insurance", + "group_name": "medusa", + "discovered": "2024-01-24 07:44:12.601026" + }, + { + "post_title": "Hinsdale School District", + "group_name": "medusa", + "discovered": "2024-01-24 07:44:13.644711" + }, + { + "post_title": "Winona Pattern & Mold", + "group_name": "meow", + "discovered": "2024-01-24 07:44:21.883478" + }, + { + "post_title": "MBC Law Professional Corporation", + "group_name": "alphv", + "discovered": "2024-01-24 10:36:57.385938" + }, + { + "post_title": "FULL LEAK! Busse & Busee, PC Attorneys at Law", + "group_name": "alphv", + "discovered": "2024-01-24 10:36:58.587695" + }, + { + "post_title": "Dirig Sheet Metal", + "group_name": "akira", + "discovered": "2024-01-24 12:45:33.531481" + }, + { + "post_title": "icn-artem.com", + "group_name": "lockbit3", + "discovered": "2024-01-24 13:50:09.829241" + }, + { + "post_title": "Thorite Group", + "group_name": "hunters", + "discovered": "2024-01-24 17:39:37.266400" + }, + { + "post_title": "Tamdown", + "group_name": "hunters", + "discovered": "2024-01-24 17:39:38.517531" + }, + { + "post_title": "Innovative Automation", + "group_name": "hunters", + "discovered": "2024-01-24 18:44:04.805433" + }, + { + "post_title": "Charles Trent", + "group_name": "hunters", + "discovered": "2024-01-24 18:44:06.223102" + }, + { + "post_title": "Hawbaker Engineering", + "group_name": "ransomhouse", + "discovered": "2024-01-24 20:44:53.977865" + }, + { + "post_title": "The Wiser Financial Group", + "group_name": "bianlian", + "discovered": "2024-01-24 22:50:26.098010" + }, + { + "post_title": "NOVA Business Law Group", + "group_name": "bianlian", + "discovered": "2024-01-24 22:50:26.996259" + }, + { + "post_title": "Toronto Zoo", + "group_name": "akira", + "discovered": "2024-01-25 11:43:29.175032" + }, + { + "post_title": "caravanclub.co.uk", + "group_name": "lockbit3", + "discovered": "2024-01-25 13:37:40.748188" + }, + { + "post_title": "ANI Networks", + "group_name": "akira", + "discovered": "2024-01-25 13:37:52.622092" + }, + { + "post_title": "“Insurance Marketing”", + "group_name": "blackbasta", + "discovered": "2024-01-25 15:40:44.358436" + }, + { + "post_title": "Four Hands LLC", + "group_name": "0mega", + "discovered": "2024-01-25 16:40:11.707505" + }, + { + "post_title": "CloudFire Italy", + "group_name": "medusa", + "discovered": "2024-01-25 16:40:15.948888" + }, + { + "post_title": "Brightstar Care", + "group_name": "alphv", + "discovered": "2024-01-25 17:37:24.208093" + }, + { + "post_title": "OrthoNY, Orthopedic Care", + "group_name": "incransom", + "discovered": "2024-01-25 18:42:16.856373" + }, + { + "post_title": "Lush", + "group_name": "akira", + "discovered": "2024-01-25 23:47:42.845360" + }, + { + "post_title": "Draneas Huglin Dooley LLC", + "group_name": "alphv", + "discovered": "2024-01-26 09:47:13.891206" + }, + { + "post_title": "jaygroup.com\\$62.2M\\USA\\270GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-26 10:45:30.182047" + }, + { + "post_title": "securinux.net", + "group_name": "lockbit3", + "discovered": "2024-01-26 11:42:57.781457" + }, + { + "post_title": "Valley TeleCom Group", + "group_name": "akira", + "discovered": "2024-01-26 13:40:58.528514" + }, + { + "post_title": "Sipi Corporation", + "group_name": "blackbasta", + "discovered": "2024-01-26 14:41:38.489074" + }, + { + "post_title": "Brazilian Business P ark", + "group_name": "akira", + "discovered": "2024-01-26 14:41:52.542429" + }, + { + "post_title": "ehsd.org", + "group_name": "lockbit3", + "discovered": "2024-01-26 17:52:37.854675" + }, + { + "post_title": "Kansas City Area Transportation Authority", + "group_name": "medusa", + "discovered": "2024-01-26 18:48:02.557201" + }, + { + "post_title": "vidalung.ai", + "group_name": "abyss", + "discovered": "2024-01-27 09:55:59.400077" + }, + { + "post_title": "neafidi.it", + "group_name": "qilin", + "discovered": "2024-01-27 10:38:27.831441" + }, + { + "post_title": "wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-01-27 10:38:28.651100" + }, + { + "post_title": "oogp.com\\$11.4M\\USA\\63GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-27 12:38:23.476183" + }, + { + "post_title": "Shoma group", + "group_name": "bianlian", + "discovered": "2024-01-28 04:41:26.801051" + }, + { + "post_title": "Image Craft", + "group_name": "bianlian", + "discovered": "2024-01-28 04:41:27.451134" + }, + { + "post_title": "Cislo and Thomas LLP", + "group_name": "bianlian", + "discovered": "2024-01-28 04:41:28.397654" + }, + { + "post_title": "www.mordfin.com", + "group_name": "qilin", + "discovered": "2024-01-29 05:45:06.556768" + }, + { + "post_title": " neafidi.it", + "group_name": "qilin", + "discovered": "2024-01-29 05:45:07.206294" + }, + { + "post_title": "dtsolutions.net\\$31.1M\\USA\\34gb\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-29 08:51:48.672346" + }, + { + "post_title": "North American University", + "group_name": "incransom", + "discovered": "2024-01-29 10:44:47.802080" + }, + { + "post_title": "Benjamin Plumbing Inc", + "group_name": "incransom", + "discovered": "2024-01-29 13:48:19.163283" + }, + { + "post_title": "Black Butte Coal Co", + "group_name": "incransom", + "discovered": "2024-01-29 13:48:20.486726" + }, + { + "post_title": "CORBETT EXTERMINATING Inc", + "group_name": "incransom", + "discovered": "2024-01-29 13:48:21.318054" + }, + { + "post_title": "Waterford Country School Inc", + "group_name": "incransom", + "discovered": "2024-01-29 13:48:22.568425" + }, + { + "post_title": "Get Away Today", + "group_name": "akira", + "discovered": "2024-01-29 14:44:56.570226" + }, + { + "post_title": "Dutton Brock", + "group_name": "alphv", + "discovered": "2024-01-29 15:47:07.013115" + }, + { + "post_title": "Castilleja School", + "group_name": "akira", + "discovered": "2024-01-29 16:46:41.715322" + }, + { + "post_title": "Safe Plating", + "group_name": "akira", + "discovered": "2024-01-29 16:46:42.738670" + }, + { + "post_title": "l", + "group_name": "lockbit3", + "discovered": "2024-01-29 18:53:51.144787" + }, + { + "post_title": "crowe.com.za", + "group_name": "lockbit3", + "discovered": "2024-01-29 21:47:02.371394" + }, + { + "post_title": "ese.com", + "group_name": "lockbit3", + "discovered": "2024-01-29 21:47:04.223901" + }, + { + "post_title": "grimme.dk", + "group_name": "lockbit3", + "discovered": "2024-01-29 21:47:05.667596" + }, + { + "post_title": "https://www.jflommainc.com/", + "group_name": "trigona", + "discovered": "2024-01-29 21:47:15.841369" + }, + { + "post_title": "https://www.vision-plast.com/", + "group_name": "trigona", + "discovered": "2024-01-29 21:47:16.710732" + }, + { + "post_title": "https://www.fertilitynorth.com.au/", + "group_name": "trigona", + "discovered": "2024-01-29 21:47:17.705141" + }, + { + "post_title": "https://www.pfmgreen.com/", + "group_name": "trigona", + "discovered": "2024-01-29 21:47:18.478338" + }, + { + "post_title": "https://www.samuel.co.id/", + "group_name": "trigona", + "discovered": "2024-01-29 21:47:19.510298" + }, + { + "post_title": "TECHNICA - HACKED AND MORE THEN 300 GB DATA LEAKED!", + "group_name": "alphv", + "discovered": "2024-01-30 02:03:09.914002" + }, + { + "post_title": "MA Engineering", + "group_name": "bianlian", + "discovered": "2024-01-30 02:03:22.434064" + }, + { + "post_title": "clackamas.edu", + "group_name": "lockbit3", + "discovered": "2024-01-30 09:43:49.692327" + }, + { + "post_title": "hi-cone.com\\$27M\\USA\\650GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-01-30 14:44:14.223282" + }, + { + "post_title": "https://www.ausa.com/", + "group_name": "trigona", + "discovered": "2024-01-30 20:47:23.434168" + }, + { + "post_title": "https://www.dahercontracting.net/", + "group_name": "trigona", + "discovered": "2024-01-30 21:43:34.588485" + }, + { + "post_title": "https://www.cmgdrainage.com/", + "group_name": "trigona", + "discovered": "2024-01-30 21:43:35.478385" + }, + { + "post_title": "https://www.genesismotors.com.au/", + "group_name": "trigona", + "discovered": "2024-01-30 21:43:36.247599" + }, + { + "post_title": "Able One a Quadbridge Company", + "group_name": "8base", + "discovered": "2024-01-31 02:03:20.841286" + }, + { + "post_title": "Basin Trucking and Oilfield Services LLC", + "group_name": "8base", + "discovered": "2024-01-31 02:03:21.785845" + }, + { + "post_title": "Diamond Technical Services, Inc.", + "group_name": "8base", + "discovered": "2024-01-31 02:03:23.105222" + }, + { + "post_title": "Elliott Wave International", + "group_name": "8base", + "discovered": "2024-01-31 02:03:24.046449" + }, + { + "post_title": "Geographe", + "group_name": "8base", + "discovered": "2024-01-31 02:03:25.192790" + }, + { + "post_title": "Meag Va-system AB", + "group_name": "8base", + "discovered": "2024-01-31 02:03:26.571196" + }, + { + "post_title": "Séquano", + "group_name": "8base", + "discovered": "2024-01-31 02:03:28.121649" + }, + { + "post_title": "VVD Elettrotecnica Srl", + "group_name": "8base", + "discovered": "2024-01-31 02:03:29.496847" + }, + { + "post_title": "mrm.com.mx", + "group_name": "lockbit3", + "discovered": "2024-01-31 02:45:24.047664" + }, + { + "post_title": "sahchicago.org", + "group_name": "lockbit3", + "discovered": "2024-01-31 02:45:26.348346" + }, + { + "post_title": "http://www.northhill.org", + "group_name": "blacksuit", + "discovered": "2024-01-31 12:51:39.930062" + }, + { + "post_title": "Sefin", + "group_name": "akira", + "discovered": "2024-01-31 16:49:48.016322" + }, + { + "post_title": "LeClair Group", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:04.282701" + }, + { + "post_title": "SportsMEDIA Technology", + "group_name": "alphv", + "discovered": "2024-01-31 17:49:05.536829" + }, + { + "post_title": "Galaxy Fireworks, Inc", + "group_name": "medusa", + "discovered": "2024-01-31 17:49:18.391058" + }, + { + "post_title": "Hydraflow", + "group_name": "alphv", + "discovered": "2024-01-31 18:47:09.987159" + }, + { + "post_title": "apeagers.au", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:41.578010" + }, + { + "post_title": "derrama.org.pe", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:44.708008" + }, + { + "post_title": "mnorch.org", + "group_name": "lockbit3", + "discovered": "2024-01-31 21:48:50.080467" + }, + { + "post_title": "Primeimaging database for sale", + "group_name": "everest", + "discovered": "2024-02-01 01:00:18.239969" + }, + { + "post_title": "CNPC Peru S.A.", + "group_name": "rhysida", + "discovered": "2024-02-01 02:06:06.862360" + }, + { + "post_title": "Robert D. Clements Jr Law Group, LLLP", + "group_name": "bianlian", + "discovered": "2024-02-01 05:47:41.609894" + }, + { + "post_title": "Southwark Council", + "group_name": "meow", + "discovered": "2024-02-01 09:43:37.868205" + }, + { + "post_title": "bandcllp.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 10:44:55.771860" + }, + { + "post_title": "taloninternational.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 11:43:23.931373" + }, + { + "post_title": "etsolutions.com.mx", + "group_name": "threeam", + "discovered": "2024-02-01 11:43:34.845393" + }, + { + "post_title": "Borah Goldstein Alts chuler Nahins & Goid el", + "group_name": "akira", + "discovered": "2024-02-01 16:49:14.243876" + }, + { + "post_title": "manchesterfertility.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:26.905938" + }, + { + "post_title": "stemcor.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 19:52:30.411918" + }, + { + "post_title": "gatesshields.com", + "group_name": "lockbit3", + "discovered": "2024-02-01 20:48:01.452602" + }, + { + "post_title": "Data Broking Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:53.688350" + }, + { + "post_title": "OSINT Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:54.612232" + }, + { + "post_title": "Penetration Testing Service", + "group_name": "ransomedvc", + "discovered": "2024-02-01 23:45:55.442765" + }, + { + "post_title": "dms-imaging", + "group_name": "cuba", + "discovered": "2024-02-02 00:54:18.770967" + }, + { + "post_title": "Innovex Downhole Solutions", + "group_name": "play", + "discovered": "2024-02-02 00:54:36.522819" + }, + { + "post_title": "Tandem", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:26.801997" + }, + { + "post_title": "Law Office of Michael H Joseph", + "group_name": "bianlian", + "discovered": "2024-02-02 09:45:27.653954" + }, + { + "post_title": "lexcaribbean.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 13:40:44.520539" + }, + { + "post_title": "manitou-group.com", + "group_name": "lockbit3", + "discovered": "2024-02-02 18:50:56.475105" + }, + { + "post_title": "Chaney, Couch, Callaway, Carter and Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:00.749932" + }, + { + "post_title": "Thomas LLP", + "group_name": "bianlian", + "discovered": "2024-02-02 18:51:01.737864" + }, + { + "post_title": "Digitel Venezuela", + "group_name": "medusa", + "discovered": "2024-02-02 20:46:55.568725" + }, + { + "post_title": "pbwtulsa.com", + "group_name": "lockbit3", + "discovered": "2024-02-03 10:47:49.041398" + }, + { + "post_title": "Associates Family Dentistry.", + "group_name": "bianlian", + "discovered": "2024-02-03 14:49:56.026001" + }, + { + "post_title": "cxm.com", + "group_name": "lockbit3", + "discovered": "2024-02-04 14:53:11.959174" + }, + { + "post_title": "Cole, Cole, Easley and Sciba", + "group_name": "bianlian", + "discovered": "2024-02-04 14:53:18.078097" + }, + { + "post_title": "DOD contractors you are welcome in our chat.", + "group_name": "donutleaks", + "discovered": "2024-02-05 01:01:29.091614" + }, + { + "post_title": "logtainer.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:06.347461" + }, + { + "post_title": "philogen.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:08.569997" + }, + { + "post_title": "portline.pt", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:09.536611" + }, + { + "post_title": "prima.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 11:46:10.594814" + }, + { + "post_title": "semesco.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:07.235141" + }, + { + "post_title": "tgestiona.br", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:09.367337" + }, + { + "post_title": "ultraflexx.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 12:48:11.101910" + }, + { + "post_title": "GRTC Transit System", + "group_name": "bianlian", + "discovered": "2024-02-05 13:45:23.764982" + }, + { + "post_title": "ksa-architecture.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:32.478656" + }, + { + "post_title": "noe.wifi.at", + "group_name": "lockbit3", + "discovered": "2024-02-05 14:48:34.487488" + }, + { + "post_title": "VCS Observation", + "group_name": "akira", + "discovered": "2024-02-05 16:42:56.046974" + }, + { + "post_title": "davis-french-associates.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:36.247382" + }, + { + "post_title": "hutchpaving.com", + "group_name": "lockbit3", + "discovered": "2024-02-05 17:46:38.782412" + }, + { + "post_title": "http://tobaccofreekids.org", + "group_name": "blacksuit", + "discovered": "2024-02-05 17:46:50.921190" + }, + { + "post_title": "Vail-Summit Orthopaedics & Neurosurgery (VSON)", + "group_name": "alphv", + "discovered": "2024-02-05 18:50:43.265891" + }, + { + "post_title": "themisbourne.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-05 18:50:54.171029" + }, + { + "post_title": "www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-05 20:50:31.609895" + }, + { + "post_title": "Asecos", + "group_name": "blackbasta", + "discovered": "2024-02-05 21:43:46.607045" + }, + { + "post_title": "Albert Bartlett", + "group_name": "play", + "discovered": "2024-02-05 23:43:34.491635" + }, + { + "post_title": "Douglas County Libraries", + "group_name": "play", + "discovered": "2024-02-05 23:43:35.474786" + }, + { + "post_title": "Greenwich Leisure", + "group_name": "play", + "discovered": "2024-02-05 23:43:36.397641" + }, + { + "post_title": "Hannon Transport", + "group_name": "play", + "discovered": "2024-02-05 23:43:37.527051" + }, + { + "post_title": "Leaders Staffing", + "group_name": "play", + "discovered": "2024-02-05 23:43:38.489465" + }, + { + "post_title": "Mason Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:39.473554" + }, + { + "post_title": "McMillan Pazdan Smith", + "group_name": "play", + "discovered": "2024-02-05 23:43:40.701400" + }, + { + "post_title": "Northeastern Sheet Metal", + "group_name": "play", + "discovered": "2024-02-05 23:43:41.607174" + }, + { + "post_title": "Perry-McCall Construction", + "group_name": "play", + "discovered": "2024-02-05 23:43:42.650556" + }, + { + "post_title": "Premier Facility Management", + "group_name": "play", + "discovered": "2024-02-05 23:43:43.766593" + }, + { + "post_title": "Ready Mixed Concrete", + "group_name": "play", + "discovered": "2024-02-05 23:43:45.027198" + }, + { + "post_title": "Virgin Islands Lottery", + "group_name": "play", + "discovered": "2024-02-05 23:43:46.065386" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 08:41:13.613379" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-06 11:39:17.507661" + }, + { + "post_title": "ArpuPlus", + "group_name": "medusa", + "discovered": "2024-02-06 14:38:33.447511" + }, + { + "post_title": "Hbl Cpas, P.C.", + "group_name": "ransomhouse", + "discovered": "2024-02-06 15:38:37.673709" + }, + { + "post_title": "B Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:47.900991" + }, + { + "post_title": "Sciba", + "group_name": "bianlian", + "discovered": "2024-02-06 15:38:48.921809" + }, + { + "post_title": "Celeste", + "group_name": "akira", + "discovered": "2024-02-06 16:41:08.826387" + }, + { + "post_title": "AVer Information", + "group_name": "akira", + "discovered": "2024-02-06 16:41:09.704902" + }, + { + "post_title": "deltron.com", + "group_name": "abyss", + "discovered": "2024-02-06 19:43:18.744742" + }, + { + "post_title": "Shipleys LLP", + "group_name": "ransomhouse", + "discovered": "2024-02-07 00:58:46.279094" + }, + { + "post_title": "axsbolivia.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:48.225919" + }, + { + "post_title": "vimarequipment.com", + "group_name": "lockbit3", + "discovered": "2024-02-07 00:58:56.102235" + }, + { + "post_title": "Anderco PTE LTD", + "group_name": "8base", + "discovered": "2024-02-07 00:59:03.707023" + }, + { + "post_title": "CERALP", + "group_name": "8base", + "discovered": "2024-02-07 00:59:04.775267" + }, + { + "post_title": "Harinck", + "group_name": "8base", + "discovered": "2024-02-07 00:59:06.470352" + }, + { + "post_title": "Karl Rieker GmbH and Co. KG", + "group_name": "8base", + "discovered": "2024-02-07 00:59:07.671488" + }, + { + "post_title": "PJ Green Inc", + "group_name": "8base", + "discovered": "2024-02-07 00:59:08.934928" + }, + { + "post_title": "PWS - The Laundry Company", + "group_name": "8base", + "discovered": "2024-02-07 00:59:09.838301" + }, + { + "post_title": "Precision Tune Auto Care", + "group_name": "8base", + "discovered": "2024-02-07 00:59:10.781951" + }, + { + "post_title": "Tetrosyl Group Limited", + "group_name": "8base", + "discovered": "2024-02-07 00:59:11.905895" + }, + { + "post_title": "Therme Laa Hotel and Silent Spa", + "group_name": "8base", + "discovered": "2024-02-07 00:59:12.798306" + }, + { + "post_title": "Worthen Industries", + "group_name": "8base", + "discovered": "2024-02-07 00:59:13.751416" + }, + { + "post_title": "YRW Limited - Chartered Accountants", + "group_name": "8base", + "discovered": "2024-02-07 00:59:14.469062" + }, + { + "post_title": "transaxle.com", + "group_name": "abyss", + "discovered": "2024-02-07 10:49:36.482639" + }, + { + "post_title": "TeraGo", + "group_name": "akira", + "discovered": "2024-02-07 16:52:09.733665" + }, + { + "post_title": "http://swbindinglaminating.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 16:52:15.202341" + }, + { + "post_title": "http://www.wmc-i.com", + "group_name": "blacksuit", + "discovered": "2024-02-07 18:45:55.094484" + }, + { + "post_title": "Distecna", + "group_name": "akira", + "discovered": "2024-02-08 15:40:01.248369" + }, + { + "post_title": "originalfootwear.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:25.055289" + }, + { + "post_title": "perkinsmfg.com", + "group_name": "lockbit3", + "discovered": "2024-02-08 18:39:26.087011" + }, + { + "post_title": "Jewish Home Lifecare", + "group_name": "alphv", + "discovered": "2024-02-08 19:40:20.633823" + }, + { + "post_title": "Ducont", + "group_name": "hunters", + "discovered": "2024-02-08 19:40:43.850366" + }, + { + "post_title": "water.cc", + "group_name": "lockbit3", + "discovered": "2024-02-08 20:49:28.747846" + }, + { + "post_title": "galbusera.it", + "group_name": "lockbit3", + "discovered": "2024-02-09 07:37:26.567740" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 08:35:46.155063" + }, + { + "post_title": "macqueeneq.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 09:36:25.115411" + }, + { + "post_title": "posen.com", + "group_name": "abyss", + "discovered": "2024-02-09 10:34:37.624311" + }, + { + "post_title": "bsaarchitects.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:36.111619" + }, + { + "post_title": "moneyadvicetrust.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:41.685062" + }, + { + "post_title": "seymourct.org", + "group_name": "lockbit3", + "discovered": "2024-02-09 11:34:44.504843" + }, + { + "post_title": "northseayachtsupport.nl", + "group_name": "lockbit3", + "discovered": "2024-02-09 12:40:22.882357" + }, + { + "post_title": "Willis Lease Finance Corporation", + "group_name": "blackbasta", + "discovered": "2024-02-09 13:36:10.042532" + }, + { + "post_title": "grupomoraval.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:15.633802" + }, + { + "post_title": "verdimed.es", + "group_name": "lockbit3", + "discovered": "2024-02-09 13:36:20.899398" + }, + { + "post_title": "cdtmedicus.pl", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:06.661566" + }, + { + "post_title": "indoramaventures.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:09.871485" + }, + { + "post_title": "maximumresearch.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:11.661612" + }, + { + "post_title": "soken-ce.co.jp", + "group_name": "lockbit3", + "discovered": "2024-02-09 14:47:14.868476" + }, + { + "post_title": "oogp.com\\$11.4M\\USA\\63GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:27.058618" + }, + { + "post_title": "jaygroup.com\\$62.2M\\USA\\270GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-09 14:47:28.093013" + }, + { + "post_title": "alfiras.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 15:40:46.865821" + }, + { + "post_title": "Drost Kivlahan McMahon and O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:50.499230" + }, + { + "post_title": "Capozzi Adler, P.C.", + "group_name": "bianlian", + "discovered": "2024-02-09 16:39:51.322465" + }, + { + "post_title": "Grace Lutheran Foundation", + "group_name": "alphv", + "discovered": "2024-02-09 18:47:06.163834" + }, + { + "post_title": "magi-erp.com", + "group_name": "lockbit3", + "discovered": "2024-02-09 18:47:13.548646" + }, + { + "post_title": "TechNet Kronoberg AB", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:17.808226" + }, + { + "post_title": "J.P. Original", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:18.955260" + }, + { + "post_title": "CTSI", + "group_name": "bianlian", + "discovered": "2024-02-09 18:47:20.567002" + }, + { + "post_title": "zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:32.512846" + }, + { + "post_title": "www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-10 00:53:34.159303" + }, + { + "post_title": "Pacific American Fish Company Inc.", + "group_name": "incransom", + "discovered": "2024-02-10 01:55:49.848134" + }, + { + "post_title": "maddockhenson", + "group_name": "alphv", + "discovered": "2024-02-10 10:34:19.213101" + }, + { + "post_title": "aisg-online.com", + "group_name": "lockbit3", + "discovered": "2024-02-10 10:34:23.298925" + }, + { + "post_title": "mranet.org", + "group_name": "abyss", + "discovered": "2024-02-10 16:41:13.538950" + }, + { + "post_title": "Avianor Aircraft", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:27.913947" + }, + { + "post_title": "Carespring Health Care", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:28.759434" + }, + { + "post_title": "Dalmahoy Hotel & Country Club", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:29.746689" + }, + { + "post_title": "Groupe Goyette", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:30.673343" + }, + { + "post_title": "Impact Energy Services", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:31.371374" + }, + { + "post_title": "SOPEM Tunisie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:32.446577" + }, + { + "post_title": "Benchmark Management Group", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:33.306278" + }, + { + "post_title": "Nastech", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.013669" + }, + { + "post_title": "Lancaster County Sheriff's Office", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:34.887872" + }, + { + "post_title": "Village of Skokie", + "group_name": "hunters", + "discovered": "2024-02-10 19:39:35.682279" + }, + { + "post_title": "www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-10 21:38:20.749206" + }, + { + "post_title": "lacolline-skincare.com", + "group_name": "lockbit3", + "discovered": "2024-02-11 08:36:18.710538" + }, + { + "post_title": "O'Connor LLC", + "group_name": "bianlian", + "discovered": "2024-02-11 11:34:48.375266" + }, + { + "post_title": "Amoskeag Network Consulting Group LLC", + "group_name": "medusa", + "discovered": "2024-02-11 14:39:43.549531" + }, + { + "post_title": "LILI'S BROWNIES", + "group_name": "8base", + "discovered": "2024-02-11 22:38:00.413343" + }, + { + "post_title": "Kadac Australia", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:46.600770" + }, + { + "post_title": "The Gainsborough Bath", + "group_name": "medusa", + "discovered": "2024-02-12 04:44:47.599915" + }, + { + "post_title": "grotonschools.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:38.430567" + }, + { + "post_title": "jacksonvillebeach.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:40.096648" + }, + { + "post_title": "parkhomeassist.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:42.560867" + }, + { + "post_title": "robs.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 07:45:44.208009" + }, + { + "post_title": "camarotto.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:21.271199" + }, + { + "post_title": "dienerprecisionpumps.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:23.096860" + }, + { + "post_title": "envie.org", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:24.832649" + }, + { + "post_title": "isspol.gov", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:27.834646" + }, + { + "post_title": "lyon.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:30.004922" + }, + { + "post_title": "paltertonprimary.co.uk", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:32.344287" + }, + { + "post_title": "sealco-leb.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:34.524463" + }, + { + "post_title": "vhprimary.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 08:45:36.578557" + }, + { + "post_title": "Freedom Munitions", + "group_name": "meow", + "discovered": "2024-02-12 08:45:50.843898" + }, + { + "post_title": "Allmetal Inc.", + "group_name": "meow", + "discovered": "2024-02-12 08:45:51.765754" + }, + { + "post_title": "Disaronno International", + "group_name": "meow", + "discovered": "2024-02-12 08:45:52.537065" + }, + { + "post_title": "cabc.com.ar", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:35.423717" + }, + { + "post_title": "fidcornelis.be", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:38.139743" + }, + { + "post_title": "plexustelerad.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:43.843546" + }, + { + "post_title": "silverairways.com", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:45.654644" + }, + { + "post_title": "textiles.org.tw", + "group_name": "lockbit3", + "discovered": "2024-02-12 09:46:47.265094" + }, + { + "post_title": "Arlington Perinatal Associates", + "group_name": "meow", + "discovered": "2024-02-12 09:47:01.118351" + }, + { + "post_title": "Kreyenhop & Kluge", + "group_name": "hunters", + "discovered": "2024-02-12 10:49:57.810990" + }, + { + "post_title": "germaintoiture.fr", + "group_name": "lockbit3", + "discovered": "2024-02-12 12:55:10.101723" + }, + { + "post_title": "Lower Valley Energy, Inc.", + "group_name": "alphv", + "discovered": "2024-02-12 14:47:21.566215" + }, + { + "post_title": "Modern Kitchens ", + "group_name": "medusa", + "discovered": "2024-02-12 14:47:34.927293" + }, + { + "post_title": "SERCIDE", + "group_name": "alphv", + "discovered": "2024-02-12 16:43:39.136111" + }, + { + "post_title": "Rush Energy Services Inc [You have 48 hours]", + "group_name": "alphv", + "discovered": "2024-02-12 19:42:33.506797" + }, + { + "post_title": "tecasrl.it", + "group_name": "lockbit3", + "discovered": "2024-02-12 21:40:36.296749" + }, + { + "post_title": "http://antunovich.com", + "group_name": "blacksuit", + "discovered": "2024-02-12 21:40:46.640868" + }, + { + "post_title": "garonproducts.com", + "group_name": "threeam", + "discovered": "2024-02-12 21:40:49.180786" + }, + { + "post_title": "elandenergy.com Eland Energy", + "group_name": "alphalocker", + "discovered": "2024-02-13 00:51:09.079290" + }, + { + "post_title": "YKP LTDA", + "group_name": "ransomhub", + "discovered": "2024-02-13 00:51:09.772057" + }, + { + "post_title": "Sanok Rubber Company Spólka Akcyjna", + "group_name": "akira", + "discovered": "2024-02-13 08:39:06.866914" + }, + { + "post_title": "Satse", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:14.308790" + }, + { + "post_title": "SOPEM", + "group_name": "hunters", + "discovered": "2024-02-13 09:40:16.493197" + }, + { + "post_title": "auruminstitute.org", + "group_name": "lockbit3", + "discovered": "2024-02-13 10:40:08.635703" + }, + { + "post_title": "New Indy Containerboard", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:28.350810" + }, + { + "post_title": "Procopio", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:29.651377" + }, + { + "post_title": "Herrs", + "group_name": "alphv", + "discovered": "2024-02-13 11:44:30.400395" + }, + { + "post_title": "Trans-Northern Pipelines", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:51.528400" + }, + { + "post_title": "ArcisGolf", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:52.306797" + }, + { + "post_title": "The Source", + "group_name": "alphv", + "discovered": "2024-02-13 12:36:53.288531" + }, + { + "post_title": "doprastav.sk", + "group_name": "lockbit3", + "discovered": "2024-02-13 14:38:37.830416" + }, + { + "post_title": "universalservicesms.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 17:41:07.370625" + }, + { + "post_title": "Communication Federal Credit Union", + "group_name": "hunters", + "discovered": "2024-02-13 17:41:18.865732" + }, + { + "post_title": "rajawali.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 21:42:19.767565" + }, + { + "post_title": "motilaloswal.com", + "group_name": "lockbit3", + "discovered": "2024-02-13 22:44:05.923814" + }, + { + "post_title": "Leonard’s Syrups", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:52.777834" + }, + { + "post_title": "Sanford, Pierson, Thone & Strean", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.004272" + }, + { + "post_title": "Global Rescue", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:54.768500" + }, + { + "post_title": "BTL", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:55.598485" + }, + { + "post_title": "Patrizia Pepe", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:57.379617" + }, + { + "post_title": "Constantia FFP", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:58.297588" + }, + { + "post_title": "Barber Emerson", + "group_name": "blackbasta", + "discovered": "2024-02-13 23:41:59.128996" + }, + { + "post_title": "adioscancer.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 00:56:26.442986" + }, + { + "post_title": "mmiculinary.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 03:39:51.848519" + }, + { + "post_title": "giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:58.056462" + }, + { + "post_title": "www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-14 03:39:59.128461" + }, + { + "post_title": "ATB SA Ingénieurs-conseils SIA", + "group_name": "8base", + "discovered": "2024-02-14 04:43:32.630789" + }, + { + "post_title": "Institutional Casework, Inc", + "group_name": "8base", + "discovered": "2024-02-14 04:43:34.372784" + }, + { + "post_title": "UNIFER", + "group_name": "8base", + "discovered": "2024-02-14 04:43:35.982680" + }, + { + "post_title": "fultoncountyga.gov", + "group_name": "lockbit3", + "discovered": "2024-02-14 05:43:26.917205" + }, + { + "post_title": "wsnelson.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 06:42:34.382976" + }, + { + "post_title": "Sindicato de Enfermería (SATSE)", + "group_name": "hunters", + "discovered": "2024-02-14 07:46:41.790025" + }, + { + "post_title": "kabat.pl", + "group_name": "lockbit3", + "discovered": "2024-02-14 08:44:13.452908" + }, + { + "post_title": "vanwingerden.com", + "group_name": "abyss", + "discovered": "2024-02-14 09:44:38.114838" + }, + { + "post_title": "https://www.falco.com/, http://www.falcoprc.com/, http://support.falcomex.com/, http://www", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:22.527828" + }, + { + "post_title": "https://www.americamovil.com/", + "group_name": "trigona", + "discovered": "2024-02-14 11:43:23.593041" + }, + { + "post_title": "Nekoosa School Distr ict", + "group_name": "akira", + "discovered": "2024-02-14 16:45:37.199360" + }, + { + "post_title": "studiogalbusera.com", + "group_name": "lockbit3", + "discovered": "2024-02-14 17:43:31.656734" + }, + { + "post_title": "ASA Electronics [2.7 TB]", + "group_name": "alphv", + "discovered": "2024-02-15 07:48:15.369146" + }, + { + "post_title": "centralepaysanne.lu", + "group_name": "lockbit3", + "discovered": "2024-02-15 09:54:59.223073" + }, + { + "post_title": "champion.com.co", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:30.170814" + }, + { + "post_title": "coreengg.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:31.701567" + }, + { + "post_title": "hatsinteriors.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:35.174126" + }, + { + "post_title": "sitrack.com", + "group_name": "lockbit3", + "discovered": "2024-02-15 10:47:38.996052" + }, + { + "post_title": "pradiergranulats.fr", + "group_name": "lockbit3", + "discovered": "2024-02-15 11:55:00.671579" + }, + { + "post_title": "ASP Basilicata", + "group_name": "rhysida", + "discovered": "2024-02-15 12:52:32.053764" + }, + { + "post_title": "Rush Energy Services Inc [Time's up]", + "group_name": "alphv", + "discovered": "2024-02-15 13:49:08.332355" + }, + { + "post_title": "conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:21.975121" + }, + { + "post_title": "kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-15 13:49:23.021004" + }, + { + "post_title": "Advantage Orthopedic and Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-15 15:55:36.909256" + }, + { + "post_title": "Asam", + "group_name": "akira", + "discovered": "2024-02-15 16:49:40.104205" + }, + { + "post_title": "Schuster Trucking Company", + "group_name": "hunters", + "discovered": "2024-02-15 17:45:33.743960" + }, + { + "post_title": "DuBose Strapping", + "group_name": "play", + "discovered": "2024-02-15 18:53:40.834575" + }, + { + "post_title": "HR Ewell & Hy-tec", + "group_name": "play", + "discovered": "2024-02-15 18:53:41.737274" + }, + { + "post_title": "LD Davis", + "group_name": "play", + "discovered": "2024-02-15 18:53:42.667998" + }, + { + "post_title": "Mechanical Reps", + "group_name": "play", + "discovered": "2024-02-15 18:53:43.504379" + }, + { + "post_title": "MeerServices", + "group_name": "play", + "discovered": "2024-02-15 18:53:44.526693" + }, + { + "post_title": "Norman, Fox", + "group_name": "play", + "discovered": "2024-02-15 18:53:45.773002" + }, + { + "post_title": "Onclusive", + "group_name": "play", + "discovered": "2024-02-15 18:53:46.829288" + }, + { + "post_title": "SilverLining", + "group_name": "play", + "discovered": "2024-02-15 18:53:47.541160" + }, + { + "post_title": "von Hagen", + "group_name": "play", + "discovered": "2024-02-15 18:53:48.380182" + }, + { + "post_title": "Pierce", + "group_name": "bianlian", + "discovered": "2024-02-15 22:53:21.477551" + }, + { + "post_title": "St. Johns River Water Management District", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:12.699922" + }, + { + "post_title": "Griffin Dewatering", + "group_name": "hunters", + "discovered": "2024-02-16 05:48:14.202272" + }, + { + "post_title": "theclosingagent.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 07:54:13.717089" + }, + { + "post_title": "Ribe-Groupe", + "group_name": "hunters", + "discovered": "2024-02-16 07:54:25.219441" + }, + { + "post_title": "Concello de Teo", + "group_name": "hunters", + "discovered": "2024-02-16 08:47:09.568174" + }, + { + "post_title": "spaldingssd.com", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:47.837668" + }, + { + "post_title": "tormetal.cl", + "group_name": "lockbit3", + "discovered": "2024-02-16 09:52:49.165562" + }, + { + "post_title": "Pacifica", + "group_name": "blackbasta", + "discovered": "2024-02-16 12:38:54.213140" + }, + { + "post_title": "etisalat.ae", + "group_name": "lockbit3", + "discovered": "2024-02-16 14:51:57.409899" + }, + { + "post_title": "BRAM Auto Group", + "group_name": "akira", + "discovered": "2024-02-16 16:52:29.412035" + }, + { + "post_title": "Réseau Ribé", + "group_name": "hunters", + "discovered": "2024-02-16 17:54:33.848203" + }, + { + "post_title": "The Chas. E. Phipps", + "group_name": "medusa", + "discovered": "2024-02-16 22:52:42.856478" + }, + { + "post_title": "LoanDepot", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:46.818516" + }, + { + "post_title": "Prudential Financial", + "group_name": "alphv", + "discovered": "2024-02-16 23:49:47.887716" + }, + { + "post_title": "CP Communications", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:03.845908" + }, + { + "post_title": "PSI", + "group_name": "hunters", + "discovered": "2024-02-17 08:51:04.837682" + }, + { + "post_title": "Wapiti Energy", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:55.451029" + }, + { + "post_title": "BS&B Safety Systems L.L.C", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:56.663577" + }, + { + "post_title": "Chicago Zoological Society", + "group_name": "hunters", + "discovered": "2024-02-17 09:52:57.526649" + }, + { + "post_title": "Aftrp", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:03.619959" + }, + { + "post_title": "Voice Technologies", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:04.573653" + }, + { + "post_title": "Tiete Automobile", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:06.193735" + }, + { + "post_title": "Greater Napanee", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:07.422713" + }, + { + "post_title": "ACS", + "group_name": "hunters", + "discovered": "2024-02-17 09:53:08.409699" + }, + { + "post_title": "VSP Dental", + "group_name": "alphv", + "discovered": "2024-02-18 01:05:28.627117" + }, + { + "post_title": "bucher-strauss.ch", + "group_name": "lockbit3", + "discovered": "2024-02-18 14:44:27.030435" + }, + { + "post_title": "Bimbo Bakeries", + "group_name": "medusa", + "discovered": "2024-02-18 18:41:44.245288" + }, + { + "post_title": "carlfischer.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 21:35:08.534439" + }, + { + "post_title": "aeromechinc.com", + "group_name": "lockbit3", + "discovered": "2024-02-18 22:54:55.183234" + }, + { + "post_title": "parksite.com\\$452.7M\\USA\\170GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:48.182932" + }, + { + "post_title": "gocco.com\\$937.9M\\Spain\\136GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:55.839595" + }, + { + "post_title": "spbglobal.com\\$81.4M\\Spain\\706GB\\100%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 08:54:56.811163" + }, + { + "post_title": "First Professional Services", + "group_name": "bianlian", + "discovered": "2024-02-19 10:50:35.559705" + }, + { + "post_title": "se.com\\$$33.5B\\France\\1.5TB\\<1%DISCLOSED", + "group_name": "cactus", + "discovered": "2024-02-19 12:44:15.724534" + }, + { + "post_title": "BandB Electric Inc", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:02.080364" + }, + { + "post_title": "Sports Medicine Clinic", + "group_name": "bianlian", + "discovered": "2024-02-19 14:50:03.015026" + }, + { + "post_title": "soco.be", + "group_name": "lockbit3", + "discovered": "2024-02-19 19:48:28.225069" + }, + { + "post_title": "http://www.loransrl.net", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:27.821509" + }, + { + "post_title": "http://conseguros.com.gt", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:28.830243" + }, + { + "post_title": "http://kaleedscpa.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:30.240075" + }, + { + "post_title": "http://giraudpereetfils.com/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:31.302498" + }, + { + "post_title": "http://zivilgeometer.at", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.115956" + }, + { + "post_title": "http://www.commonwealthsign.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:32.947379" + }, + { + "post_title": "http://www.wannagocloud.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:33.883185" + }, + { + "post_title": "http://www.mordfin.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:34.816481" + }, + { + "post_title": "http:// neafidi.it", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:36.190623" + }, + { + "post_title": "http://www.projects-world.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.063801" + }, + { + "post_title": "http://www.umtownship.org", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:37.946740" + }, + { + "post_title": "http://www.roosens.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:38.843441" + }, + { + "post_title": "http://www.halleonard.com.au", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:39.666402" + }, + { + "post_title": "http://https://www.molnar-bischof.de/", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:40.439645" + }, + { + "post_title": "http://corinthcoke.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:41.448645" + }, + { + "post_title": "http://EPS.RS", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:42.241643" + }, + { + "post_title": "http://neurocnv.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:43.058652" + }, + { + "post_title": "http://www.warepet.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.067410" + }, + { + "post_title": "http://yanfeng.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:44.891706" + }, + { + "post_title": "http://haesungds.com", + "group_name": "qilin", + "discovered": "2024-02-19 22:32:46.087979" + } ] \ No newline at end of file