How to access hotmail

zlibrary

2021.01.29 01:17 massivecure zlibrary

--- Your gateway to knowledge and culture. Accessible for everyone --- a users for users platform to help and advice those that are visiting Zlibrary.
[link]


2011.06.19 00:56 TresGay All beagles, all the time

Welcome! Please read the rules to learn how to get posting and commenting access.
[link]


2022.04.07 11:02 cench DALL·E & Sora

OpenAI's DALL·E 2, DALL·E 3, Bing DALL·E & OpenAI Sora
[link]


2024.05.17 05:20 Ok-Ask9615 T-Mobile security flawy

This is about an issue I am dealing with only because T-Mobile has mismanaged my existing wireless account with them.
On Monday, 25th March 2024, T-Mobile 'Re-assigned' my existing Mobile number (Physical SIM card number) to someone else - WITHOUT getting my Prior authorization! As a result, someone acquired access to my Coinbase account and withdrew all my funds in a matter of a few minutes. As a result, Coinbase locked my account (which is tied to my Hotmail account) claiming that my email ID is no longer associated with my account! This in turn, has caused me a lot of grief, multiple trips to the local Police stations to register a formal complaint.
I don't have the patience to go into everything right now because I am beyond frustrated but somehow T-Mobile dropped the ball on one of its long-term customer like me. Here is what Coinbase sent to me -
Our records show that on 2024-03-25, your account was accessed from a Windows NT 10.0; Win64 device, not belong to me and took all the money
I have been following up with Coinbase for over a month to recover the other Crypto account details and try and retrieve whatever balance is left. They keep saying the investigation is in progress but I do not see any resolution, leave along progress of any sort.
The worst issue with my Coinbase account is that someone drained $14,000 from my account and the current balance shows as ZERO on 03/26/2024. All this happened in a day. The reason I'm making this thread is trivial to the main issues. Anybody who has gone through anything similar headache - Can you kindly advise on how to file a case against T-Mobile and Coinbase? Any help on the specific issue would be most helpful, not just for not just me, but also for other potential innocent victims.
There was no reason whatsoever, for T-Mobile to allow access to the physical SIM on my iPhone 12 Pro Max without my prior authorization. T-Mobile customer service hadn’t contacted me for a month for anything. They just sent me a letter after a month.
Any help in this regard from you folks out there who either dealt with this situation or are aware of the right steps to take - Will be much appreciated. Thank you in advance.
submitted by Ok-Ask9615 to tmobile [link] [comments]


2024.05.15 12:19 tempmailgenerator Implementing Email Domain Restrictions with jQuery Validate

Enhancing Form Validation Techniques

In the digital age, ensuring the integrity and quality of user data is paramount for web developers and businesses alike. One common challenge faced in this endeavor is filtering out free email service providers, such as Gmail or Hotmail, from form submissions. This task is particularly relevant when aiming to collect professional or business-oriented email addresses, which can significantly impact the quality of interactions and data collected. jQuery Validate, a popular JavaScript library, offers a robust solution for this, enabling developers to enforce custom validation rules easily and efficiently.
Integrating email domain restrictions into web forms using jQuery Validate not only elevates the data quality but also tailors the user experience to suit business needs. This technique can be crucial for B2B platforms, exclusive membership sites, or any scenario where the type of email address submitted matters. Through a combination of jQuery Validate's flexible rule definition and the developer's strategic implementation, it's possible to significantly enhance form validation processes, making them more aligned with specific operational requirements and user management strategies.
Command/Function Description
$.validator.addMethod Adds a custom validation method to the jQuery Validate plugin.
$.validator.methods.email Extends the default email validation to include domain-specific checks.
element Represents the form element being validated.
params Contains parameters or additional data used in custom validation methods.
validator An instance of the jQuery Validate validator, providing access to other form elements and validation methods.

Expanding Form Validation Capabilities

Implementing custom email domain restrictions in form validations is a strategic approach to ensure that the data collected through web forms is of high quality and relevance to the business's needs. This process is especially critical for platforms that rely on establishing professional connections or conducting B2B transactions, where the validity and professionalism of an email address can significantly impact communication effectiveness and business opportunities. The jQuery Validate plugin provides a flexible and powerful foundation for implementing these restrictions, allowing developers to create custom validation methods that can precisely match the website's requirements. By leveraging the plugin's ability to extend its default validation rules, developers can enforce restrictions on email domains, ensuring that users register or submit information using their business or professional email addresses, thereby enhancing the quality of the data collected.
The technique of restricting free email service providers through custom validation rules not only improves data accuracy but also helps in minimizing spam and fraudulent submissions. It is a proactive measure against common issues faced by online platforms, contributing to a more secure and trustworthy online environment. Moreover, this approach allows for the customization of error messages, providing users with clear and helpful feedback on why their submission was not accepted and what steps they can take to correct it. This level of detail in form validation enriches the user experience, making it more intuitive and user-friendly. As businesses continue to evolve in the digital landscape, the ability to finely tune the data collection process through tools like jQuery Validate becomes increasingly valuable, enabling more precise targeting, better customer segmentation, and improved communication strategies.

Custom Email Domain Validation with jQuery Validate

JavaScript in Web Development
$.validator.addMethod("customEmail", function(value, element) { return this.optional(element) /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/.test(value) && !/(@gmail\.com@yahoo\.com@hotmail\.com)$/.test(value); }, "Please enter your business email address."); $(document).ready(function() { $("#myForm").validate({ rules: { email: { required: true, customEmail: true } } }); }); 

Advanced Strategies in Email Validation

Within the realm of web development, the significance of validating email addresses extends beyond mere syntax checks. This practice is pivotal in enhancing the security and integrity of user data, particularly in applications requiring authenticated user interactions. By implementing domain-specific email validations, developers can effectively mitigate risks associated with accepting emails from free providers, which are often exploited for spam or fraudulent activities. The jQuery Validate plugin facilitates this through its customizable framework, enabling the creation of validation rules that align with the specific needs of a business or application. This level of customization not only bolsters the security measures but also refines the user onboarding process by ensuring that only professional or verified email addresses are accepted.
This approach to email validation plays a crucial role in curating a professional user base, especially for platforms targeting B2B interactions or services requiring a higher degree of credibility. By restricting free email service providers, a business can significantly reduce the likelihood of engaging with low-effort or non-serious inquiries, thus optimizing resource allocation towards more promising prospects. Furthermore, this strategy aids in establishing a more controlled and qualitative communication channel with users, fostering trust and reliability in the digital ecosystem. The strategic application of such validation techniques underscores the evolving landscape of web development, where data quality and user trust are paramount.

FAQs on Email Domain Validation

  1. Question: Why is email domain validation important?
  2. Answer: Email domain validation is crucial for enhancing the quality of user data, preventing spam, and ensuring that users provide a professional or verified email address, which is particularly important for B2B platforms and secure transactions.
  3. Question: Can jQuery Validate restrict specific email domains?
  4. Answer: Yes, jQuery Validate can be customized to restrict specific email domains by adding custom validation methods, allowing for the exclusion of free or unwanted email service providers.
  5. Question: How does custom email validation improve user experience?
  6. Answer: Custom email validation improves user experience by providing clear, specific feedback on submission errors, guiding users to provide acceptable email addresses, and ensuring a smoother, more intuitive form submission process.
  7. Question: Are there any limitations to custom email domain validation?
  8. Answer: While highly effective, custom email domain validation may inadvertently exclude legitimate users with no access to professional email addresses, potentially limiting the user base.
  9. Question: How can I implement custom email domain validation with jQuery Validate?
  10. Answer: Implement custom email domain validation by using the $.validator.addMethod function to create a new validation method that checks the email address against a list of allowed or disallowed domains.

Final Thoughts on Advanced Email Validation Techniques

In conclusion, the strategic implementation of email domain validation using the jQuery Validate plugin emerges as a pivotal measure for enhancing data quality and security across web platforms. This method not only serves to refine the caliber of user engagements by filtering out free email service providers but also plays a crucial role in safeguarding against spam and unauthorized submissions. The flexibility of jQuery Validate enables developers to construct bespoke validation rules, offering a tailored approach to meet the unique requirements of each application. As digital landscapes evolve, the importance of maintaining high standards of user data integrity cannot be overstated. Through careful application of such validation techniques, developers can significantly contribute to a more trustworthy and professional online ecosystem, ultimately benefiting both businesses and users alike. The adoption of custom email validation practices is therefore not just a technical requirement but a strategic asset for any platform aiming to enhance user experience and operational security.
https://www.tempmail.us.com/en/jquery-validate/implementing-email-domain-restrictions-with-jquery-validate
submitted by tempmailgenerator to MailDevNetwork [link] [comments]


2024.05.14 16:14 HisDudeness3008 A spanish university behind german ransom emails?

Edit: upon further searching, the concerned university is not Spanish, but Peruvian. My bad for European-centric thinking.
Hello, everybody! I'm here with my story about an ongoing series of ransom emails I've been receiving. I'm not scared as they are obviously fake, I'm more between entertained and curious.
Let's start from the beginning. I received an email having the low-effort password I use for non-important sites as a subject. The body is a copypasta in German, only having my password, my email address, the amount to pay and the address where to send the money as the customized parts, written in bold. The text, for whoever is curious enough to analyze this absurd story in depth, is the "Hallo, mein perverser Freund" one.
To summarize the content, this self-declared Big Brother or the All-Seeing Eye ("Big Brother oder das alles sehende Auge nennen") claims to have installed an unspecified trojan on an unspecified device of mine, and with that they recorded me pleasuring myself to highly controversial videos using the webcam. They ask for €1200 in Bitcoins with a 48h deadline to stop them from sending those videos to all my email contacts as well as uploading them online.
What's ludicrous about that, aside from how generic the claim is in order to be a little credible for any victim, is they claims they gained access to all my devices by hacking one. In my case, that's even more comedic as my laptop has a killswitch for the webcam (meaning it always had a black piece of plastic obscuring it, since I never use it), while my phone is an Asus Zenfone 6, which has no front camera (the rear camera flips over when you need one). They have been really unlucky with me. Also, How can they film what I've supposedly been watching while engaging in self eroticism with my front camera?
Other criticalities are: I have no contact in my email account, nor in any application I use it with. That's not how people use emails in 2024, unless it is a business account. Plus, they claim the password they displayed as the mail's subject is my email account password. No, it is not. It is just the zero-effort password I used on some websites that have been breached (eg Linux Mint Forums and the defunct Linux Forums among the others) back in 2018-2020 (they sure took their sweet time to decrypt an all-lowercase 10 letter password).
Also, they say they sent the mail form a temporary account. They did not. They used a regular hotmail account, which has been pwned too (the poor sap, which has the misfortune of having a physical address linked to his email address on a google-able website, used the same password for his email and a website that suffered a data breach). They say, judging from my conversations, people think I'm a decent person. I have no human conversations in my email. Just notices of new replies on forums etc.
To get to the title of my post, let's skip to 3 days later (oops, more than 48h). I received another email. This time in English. This time, apparently from my own address (I suppose it is to show they really have access to my email account), even if it doesn't show in my "Sent" folder (if they want to convince me they have access to my account, they shouldn't delete it from there, I think). They say they approved "a new payment schedule" for some random practice number never mentioned before. This time, they talk about Pegasus. I'm honored to know they used a spyware that costs millions of dollars for each license, and that the DEA refused to use because of its high price, on me. Luckily for me, either they are a different party, or they lowered their price. This time, they ask for $850 dollars. I suppose they don't know much about leverage.
Anyway, I opened the email's header. They were lazy enough to modify the "from" field, but not the "return-path" one. What puzzled me? This field appears to be an administrative address belonging to a private-owned Peruvian online university. I have to admit I don't know much about informatics, and I can't tell if that grants the fact that was the true sender behind the fake self-sent email. But the hypothesis alone has me in stitches. Please help me uncover this mystery.
Thank you for your attention!
submitted by HisDudeness3008 to cybersecurity_help [link] [comments]


2024.05.11 07:59 maximdx Just tried win 11 arc but not able to sign up

Just tried win 11 arc but not able to sign up
https://preview.redd.it/d07guxqvlqzc1.png?width=1902&format=png&auto=webp&s=762c09131420d8090d29acb22c03047d69af47d6
After click the "Create an account" button, it just hangs for good.
Located in China mainland. IP address from China mainland.
submitted by maximdx to ArcBrowser [link] [comments]


2024.05.10 21:02 Teejaymac Cannot Access my EA account to transfer items from Xbox to PC

Does anyone know how I'm able to transfer my items from Xbox to PC if I do not have access to the email address that the Xbox account is linked to? Somehow some hotmail email address that does not exist got linked to my Xbox account years ago, perhaps my younger brother or something, not sure. But I've gone to EA support 3 separate times now about getting access to the account and they will not let me in. I've spent hundreds of dollars on Apex, I have 13 heirlooms. I'd like to transfer them all over to my PC account. This is extremely frustrating and EA support is completely useless. They have 6 questions they ask you about the account and if you don't get all 6 right they won't let you in, the other option is sending a code to an email address that does not exist. There has to be a way to get ahold of someone at EA that's not completely useless. Any ideas?
submitted by Teejaymac to apexlegends [link] [comments]


2024.05.06 15:57 H3Shouty Invoice verification code sent to my friend's email address?

So I made a purchase this weekend and as I was looking at my account and order details via the app, I saw an option that says "view invoice" ("Rechnung ansehen" in German) under the total price.
I clicked on it to have a look, and it opens an external browser page where it says that a verification code was sent to email xxxxxx@hotmail.com, which is my friend's email.
Strange, my email is zzzzzz@gmail.com (for example) which is also the same email my WF account is linked to. My friend's email does appear in the Gmail inbox linked to my own email, but how is it that Wayfair is getting access to my friend's email?!
So I contacted my friend and show her the screenshot of the browser and ask her to check her inbox, and sure enough, she received a verification code from Wayfair. We did this 3 times and she received the verification code every time.
Also, now that I look at the browser window created, it has nothing to do with the invoice I requested in the app, it says "complete account creation".
Isn't this a massive breach of privacy?
submitted by H3Shouty to wayfair [link] [comments]


2024.05.05 17:51 Cadmo2015 Strategies Against Unauthorized Access

How can I protect my Outlook email account (Hotmail) against unauthorized access attempts, especially when intruders have been persisting for months? I'm looking for effective alternative methods to block these intruders.
submitted by Cadmo2015 to cybersecurity_help [link] [comments]


2024.05.05 10:51 13thEldar Fake Collections or Legit?

So 2 questions about 2 separate things that sprang from this 1 email. I got an email from a collections agency CBV about a Roger's Account that's overdue in my name. Thing is I haven't had a Roger's Account in my name since around 2011. TransUnion supports this when I ran the check. Last Roger's Communications is 2011 listed as paid/closed. Should I ignore this? Or maybe try and contact Roger's to see if they have an open account with my name. I tried to log into my old MyRogers account but it's attached to a Hotmail email I also basically haven't used since 2011. Can't seem to access/remember the password not sure says too many attempts quick Google search says Hotmail is prone to auto password attacks so I'll try later also.
Also while looking at my credit report going entry by entry to ensure nothing is strange I see a loan that is paid/closed showing 3 late payments from 2019 which passes me off because 1 it was paid in full on time and 2 I called them about this back in 2019 when they sent me a letter and they verified I had paid in full prior to the date and it was an error. Thing is I only was notified of the 1st late payment so when I called and they said they'd get it fixed in their system I assumed it was. Should I bother disputing this? And how would I?
Province of MB.
submitted by 13thEldar to PersonalFinanceCanada [link] [comments]


2024.05.01 16:59 Informal-Path-2923 REDDIT CHANGED PASSWORD AND EMAIL

Can someone help me? Just now I received an email that someone's trying to reset my password in this reddit account, which I didn't. This is the first time again that I open this acct, the last time was 2021. I didn't mind it at first since the email says if I didn't requested for it I should just ignore it and I did but another two email pop up saying the password and email has been changed to a hotmail acct. I never use hotmail for my email accounts. I was still able to open this. I guess the one who changed it forgot to sign out the acct in other devices. but what scares me was how did they able to access my email acct to reset the password since there's a reset button everytime you try to change password for reddit? I can't recover this acc since they've already changed the email. Anyone who has the same situation? or is this a reddit thing since the acc has never been used since 2021?
submitted by Informal-Path-2923 to help [link] [comments]


2024.05.01 16:56 Informal-Path-2923 REDDIT CHANGED EMAIL AND PASSWORD

HELP. Just now I received an email that someone's trying reset my password in this reddit account, which I didn't. This is the first time again that I open this acct, the last time was 2021. I didn't mind it at first since the email says if I didn't requested for it I should just ignore it and I did but another two email pop up saying the password and email has been changed to a hotmail acct. I never use hotmail for my email accounts. I was still able to open this I guess the one who changed it forgot to sign out the acct in other devices. but what scares me was how did they able to access my email acct to reset the password since there's a reset button everytime you try to change password for reddit. I can't recover this acc since they've already changed the email. Anyone who has the same situation? or is this a reddit thing since the acc has never been used since 2021?
submitted by Informal-Path-2923 to u/Informal-Path-2923 [link] [comments]


2024.04.30 16:54 uscpsycho Is outlook.com / OWA / PWA really Outlook?

I used Outlook desktop for decades before switching to a Chromebook full time and it was great. I have email on my own domains but I'm fed up with their awful webmail interface and tired of having to log into individual accounts at different mail hosts.
In the past, I could enter the credentials for as many email addresses as I wanted and manage them from Outlook desktop. But this seems impossible from the Outlook PWA.
On this support page it says "Syncing is a one-way connection that goes from your third-party account to your Outlook.com account. Changes made in your third-party account will be reflected in Outlook.com, but changes made directly in Outlook.com won't appear in your third-party account. If you send, reply to, forward, or delete email from your third-party account using Outlook.com, or make changes to your calendar or contacts there, the changes will appear only in Outlook.com."
Say what? I have no idea why anyone would want this half-baked IMAP implementation or how it even came to exist.
It looks like if I get a Microsoft 365 business account I can manage a private domain but only if it is hosted by Microsoft. And even then, it is only one email account.
Is there really no way to use the PWA with multiple discrete email addresses? And is there really no way to properly manage a private email address (two-way sync) unless it is hosted by Microsoft? Outlook stands for something and they shouldn't call the PWA "Outlook" if it's just glorified Hotmail.
Even more bewildering is that if you have a personal 365 account you can add external email addresses to your account, but they are not accessible from the PWA.
Microsoft's website is very convoluted, so maybe I just missed it. Is there any way to do what I want from the Outlook PWA? 1) Access IMAP email not hosted by Microsoft. 2) Manage multiple discrete email addresses.
submitted by uscpsycho to Office365 [link] [comments]


2024.04.27 20:11 Aero_N_autical How I recovered my account two times (Hacked and Locked)

How I recovered my account two times (Hacked and Locked)
PTPM [A 2024 guide]
This guide will tackle everything from my perspective and will serve as a way for others to replicate the solution against the same set of problems I've faced
Locked after Account Recovery from being Hacked
Account Unlock after being Locked
For context, this is the timeline of what happened to my Facebook account:
April 21 - Gmail notifies me that an (Hacker's hotmail) email address was added to my FB account. April 22 - Gmail notifies me that my email was removed, password changed, phone number removed April 23 - I notice the email notifications, and I get booted from Messenger and FB. Account recovery starts April 24 - Account recovery options include 2FA (the codes didn't work) and identity verification. Verification took a long time and included multiple failed attempts, only when submitting my Passport ID did it work. Hacker's email is removed along the process, reopening the account was more difficult. April 25 - Security options were checked by me; password changed, recovery email and phone number added, 2FA code is re-synced April 26 - Gmail notifies me that "someone may have accessed your Facebook account", locks my FB account, and boots me from the account. Unlock attempts lead to Image 1, no recovery options are shown unless you wait it out April 27 - Multiple and repeated attempts seem to make recovery worse. Even if recovery options pop out, once I type in the code (SMS) the prompt "too many attempts, try again later" shows up April 28 - Image 1 now has a recovery option available after waiting. Phone code (SMS) method is used and it works. Facebook shows that the suspicious activity was caused by me adding an email THAT I OWN during April 25. Image 2 is shown; Facebook and Messenger is now accessible.
Factors (I think) that helped with the recovery and unlock process - Two factor authentication (2FA) played a major role on why recovery was possible - Multiple security additions (recovery email, recovery phone number, 2FA) - Account history and age (the monitored data allowed me to easily remove the hacker's email) - Multiple devices (Smartphone and PC) - Multiple emails (2-3 gmails connected to the account)
Factors and inconveniences that caused the problem and made account recovery hard - Poor security (Facebook also has poor security features that make it so vulnerable even with 2FA on) - No technical support equipped for problems like these - Useless troubleshooting tips - Two factor authentication (2FA) made it harder to unlock the account - Facebook's mistake of locking my account because of me adding MY OWN email
Hoping this somehow helps a few people who somehow get into the same problem as I've been. This problem happening in the first place (and countless more) shows how this platform is so inferior compared to other ones.
submitted by Aero_N_autical to facebookdisabledme [link] [comments]


2024.04.24 18:38 Some-Word319 Buyers beware: Umdoll (posed as mydollection on FB/insta/tiktok and continues posting under their new name)

TL;DR: Umdoll tried to impersonate Una from Mydollection, then backtracked when the actual Mydollection posted about it and is trying to act like the naming was just a coincidence. And a bunch of other weird suspicious shit. So don't trust them, and do a chargeback through your bank ASAP if you have done any business with them.
Some of you may already know of the site Mydollection. There is definitely a discussion to be had about them, but I want to focus on Umdoll in this post and will only get into the relevant parts about Mydollection:
Mydollection has changed hands a few times. I don't fully know their whole timeline, but it's relevant that you know they are currenly ran by Una.
Compounding their problems, one of their employees (possibly Una?) was in a car accident a few months ago and sustained an injury to their hand or wrist. They posted about it with pictures, though they are gone now because they share a lot of their information through Insta stories that don't last very long.
Mydollection doesn't have any presence on Facebook. Most of their communication is through Instagram, emails and a chat widget on their website that has been removed. Although one of the previous owners was from Malaysia, the new owner may be from China as they said that's the reason they don't have a Facebook.
__
A few weeks ago, somebody by the name of "Megan Mydollection" appeared on FB and started advertising for the site "mydollection.shop" and the socials linked with it, which are FB, insta, tiktok and potentially a Twitter, although that button on their website doesn't work. The actual Mydollection posted on their Insta saying that they have no idea who this person is, they aren't linked to them at all and to please not do any business with them.
At this point, the fake dollection was communicating with an email called "uma.dollection" and the blog posts on their website were posted by a "Wang Una", although that has now been changed to "Chen Jacky." They also changed the url to just "umdoll.com."
I don't know what all their social names were previously, but their two FBs are "Bjd doll" (URL dollectionshop) and "Umdoll" (@dollections), their insta is "@dollectionshop" and their TikTok is still the old URL, "mydollection.shop", although the bio has the new URL of "umdoll.com" and an email for "jacky.dollections@hotmail(.)com."
That email address brings me onto the email they sent out, which is how I found out about them initially. I and many others recieved a plaintext email from 'Chen Jacky', "jacky.umdoll@hotmail(.)com" that acted as ad for Umdoll's site. Strangely, I wasn't actually in the 'to' box of the email, but somebody that I don't recognize (probably just another random person from the mailing list, like me) and nobody else. It seems like apart from this one person, the entirety of the mailing list was BCC'd and CC'd in the email was a "megan.umdoll@gmail(.)com."
I had never heard of Umdoll before this and neither had a lot of the other people in the BJD Discord I'm in. All we can surmise is that Umdoll had access to an outdated mailing list from Mydollection, since the only thing we had in common is that we had all spoken to Mydollection via email at some point. It's not that rare for information to be leaked online, especially when you're dealing with smaller vendors, so do with that what you will, I am not smart enough to analyze how they got that list of people.
The site itself is standard, but shallow and obviously quite new. The 'about us' tab has some AI generated art, which sort of goes against their "we love independent and local artists" thing, as does the fact that they were actually advertising a known recaster on their FB at some point. The language on the website is quite different to what was in the email and personally gives me huge ChatGPT vibes. Which isn't necessarily a bad thing, especially if the person writing it doesn't speak English fluently, but it doesn't look great in this context when compared with everything else.
Also, their FB says that they're from California, when their actual website says that they're from Guangzhou, China. It's probably related to China's banning of FB so I think anybody using a VPN in China to access FB would have to put in a fake location. I thought I should give some context for that.
__
I saw Umdoll advertising on FB myself for the first time and left a comment basically saying "stay away from these guys", they responded saying that they had no idea who mydollection was prior to starting their own pages and that it was a mistake. I responded with some more info and they deleted the post. (Or blocked me. It's an invite only group so I can't just log out to see which.)
Aside from the name Una popping up and then disappearing once they were called out, Umdoll literally reposted the actual post from Mydollection about the car crash and then deleted it.
I think that Mydollection has a lot of stuff going on right now, so it's probably best to hold off on ordering from them for those reasons, until they sort themselves out. At the same time, you should ABSOLUTELY not order from Umdoll, because... all of this.
Maybe somebody was looking for "smaller" BJD sellers to impersonate and didn't realize that Mydollection was already under such heavy scrutiny. Maybe it's more malicious and targeted. I'm not sure, I just wanted to post this somewhere in the hopes that people would see and maybe tell their friends. I'll be looking into the bigger BJD groups on FB and seeing if they allow 'call out' posts or will at least ban Umdoll and give a heads up.
(Not only do scammers suck anyway, but them trying to impersonate Mydollection when so many people are frustrated/angry with them and possibly struggling to get in contact with them, I think it's especially important that people know which accounts are/aren't real.)
submitted by Some-Word319 to BJD [link] [comments]


2024.04.23 11:05 Rich_Profession6606 Last chance to provide anonymous feedback on this community. Based on the feedback so far, there might be some changes to this community.

Last chance to provide anonymous feedback on this community. Based on the feedback so far, there might be some changes to this community.
Quick reminder to please provide feedback using this anonymous survey, https://forms.office.com/BGUNw7m8Ax . Please share this survey or post with anyone who visits this community.
This survey was launched last week. Based on the feedback so far, there might be some changes to this community. But I want more people to have an opportunity to vote first.
The Bridgerton's
We'll recruit new moderators (mods) after we publish the results of this survey.

1) Why complete this survey?

This community was created in 2022 after Season 2. This is the first opportunity to provide complete feedback on:
  • Overall Satisfaction
  • Current Rules
  • New Rules
  • Moderator feedback (how the rules are applied)
  • New Moderator selection

2) Accessibility needs?

If you have accessibility needs, such as a visual impairment, dyslexia or perhaps English is your second you may prefer to use the text-to-speech options to complete this survey.
  • Click the three dots (...) at the top of each section or question;
  • then Click the "Enable Immersive Reader" speaker button to use the Text-to-speech options. (see screenshot link: https://ibb.co/MRmBmkX)

3) How long will the survey take?

Ten minutes if you do not write any free text answers. This is the first complete survey for this community; we value your feedback.
Tips for completing the survey
  • Optional questions allow for detailed suggestions but take longer. Skip the optional suggestions if you want to save time.
  • Choosing "Other" requires typing your response, and also takes more time.
  • Accessibility options, like text-to-speech, might speed up the survey for some users.

4) The survey is 100% anonymous.

You do NOT need a Microsoft account to complete this survey.
  • If you want to save the survey to complete later, Microsoft will ask you to sign in with your Microsoft or Hotmail account or create a new Microsoft account.
  • Your Microsoft account or email address is NOT visible or accessible to us.
It will be easier to complete the survey in one session, with or without a Microsoft account.

5) Transparency / How was this survey created?

I became a mod last Autumn. I created this survey a few months ago based on Frequently Asked Questions and feedback from this community.
Thank you to the volunteers who provided feedback on the draft survey.

QR code

TLDR: Please give us feedback via this survey, https://forms.office.com/BGUNw7m8Ax

This survey was launched last week. Based on the feedback so far, there might be some changes to this community. But I want more people to have an opportunity to vote first. Anyone can complete this survey. You can provide feedback on Overall Satisfaction, Current Rules, New Rules, Moderator (how the rules are applied) and New Moderator selection. Feel free to share this post and this survey. We will start recruiting Season 3 moderators after we publish the survey results.
submitted by Rich_Profession6606 to BridgertonRants [link] [comments]


2024.04.21 20:19 Revolutionary_You_53 This scam is true ? All-Seeing Eye

Hello guys, how are you good afternoon, I had a question about something that just happened to me this morning. I think I saw a post a few months ago that the same thing had happened with this type of hacker scam, which calls itself Big Brother or All-Seeing Eye. I am attaching the Email that I found by chance in my spam mail. As far as I know, this is simply more than a mere scam, but I still have a couple of doubts about some things he said, and I would like to know if you could clear them up for me. I will leave the doubts below.

"Hello, my perverted friend,
We've actually known each other for a while, at least I know you. You can call me Big Brother or the All-Seeing Eye. I'm a hacker who a few months ago gained access to your device, including your browser history and webcam. I recorded some videos of you jerking off to highly controversial "adult" videos. I doubt you'd want your family, coworkers, and your entire ("MY HOTMAIL")
- (your password for this mail on moment of hack : "mypassword") contact list to see footage of you pleasuring yourself, especially considering how kinky your favorite "genre". I will also publish these videos on porn sites, they will go viral and it will be physically impossible to remove them from the Internet.
How did I do this? Because of your disregard for internet security, I easily managed to install a Trojan on your hard disk. Thanks to this, I was able to access all the data on your device and control it remotely. By infecting one device, I was able to gain access to all the other devices.
My spyware is embedded in the drivers and updates its signature every few hours, so no antivirus or firewall can ever detect it. Now I want to offer a deal: a small amount of money in exchange for your former worry free life.
Transfer $1250 USD to my bitcoin wallet: 1CjfSU7p9mrsuEvFm9CpJsJXq3BhM9uDKc
As soon as I receive confirmation of the payment, I will delete all the videos that compromise you, remove the virus from all your devices and you will never hear from me again. It's a very small price for not destroying your reputation in the eyes of others, who think that you are a decent man, according to your messengers. You can think of me as some sort of life coach who wants you to start appreciating what you have.
You have 48 hours. I will receive a notification as soon as you open this email, and from this moment, the countdown will begin. If you've never dealt with cryptocurrency before, it's very easy. Simply type "cryptocurrency exchange" into a search engine, and then all set.
Here's what you shouldn't do: - Don't reply to my email. It was sent from a temporary email account. - Don't call the police. Remember, I have access to all your devices, and as soon as I notice such activity, it will automatically lead to the publishing of all the videos. - Don't try to reinstall your system or reset your device. First of all, I already have the videos, and secondly, as I said, I have remote access to all your devices, and once I notice such an attempt, you know what happens.
Remember, crypto addresses are anonymous, so you won't be able to track down my wallet.
So long story short, let's resolve this situation with a benefit for me and you. I always keep my word unless someone tries to trick me.
Lastly, a little advice for the future. Start taking your online security more seriously. Change your passwords regularly and set up multi-factor authentication on all your accounts.
Best wishes. "

There are some things that worry me, including:
-A completely correct password (although the last time I used it was about 2 years ago, since I had just had some type of infiltration into an old hotmail from Ubisoft by RainbowSix, this is an online game, apparently I had used the same one password in my ubisoft account than with the hotmail that I had registered with) So I want to assume that it was registered in some hacker database or something like that
-On the other hand, I'm a little worried about the hard drive, the reality is that I don't usually install anything unofficial, and the only thing I don't have official as such is the Windows operating system, since at least I have it in transit until I have the possibility to buy it officially and that is why I have doubts regarding malware. But I still doubt it.
-I should clarify that I don't even have a webcam on the PC, so that seemed a little incoherent to me on the one hand, so I thought it was on my cell phone, but even so I don't think I can have access to it.
To finish, I have 4 emails and only in 3 do I change their passwords from time to time, but the reality is that the person who sent me this email (which by the way is as if they had sent me from my same email, since it was an email with my image and "email address" but without sender, very strange to be honest) I haven't changed my password 10 years ago haha, although I should clarify that the password that he shows me in the hotmail, although it is mine, is not the one for my email where this scam was sent to me, I still plan to change it since this page says that I had 7 leaks in that email ☠☠
submitted by Revolutionary_You_53 to Scams [link] [comments]


2024.04.17 13:27 RAMChYLD Whatsapp won't let me access my messages without a phone...

Whatsapp won't let me access my messages without a phone...
So my ROG Phone 3 suddenly upped and died a few days ago. Due to circumstances I cannot get a replacement phone. This morning I got a call on my home phone from a potential employer (my line luckily has a caller redirect put in so any calls to the phone if its unavailable gets redirected) and she said she'll be sending me the details for a job through WhatsApp.
So I try to access WhatsApp through the web. Except that I can't because no matter what I try it insisted that my now dead phone either be used to scan the QR code or to enter the number into the number into the app (which can't be done because the phone is dead).
I wrote to them, and this is their reply. Nuh uh, you need the phone.
So now I'm losing a chance to get a job just because my phone is dead...
submitted by RAMChYLD to mildlyinfuriating [link] [comments]


2024.04.17 00:51 Vegetable_Heart369 Facebook Support says I need all the information to reclaim Business Control admin status, does this look right?

“Please prepare the needed documents below.
For Admin Access Dispute
"1. A copy of a valid government-issued photo ID, such as a current driver's license or a passport, of the individual signing the statement. You can find the different kinds of IDs we accept here: What types of ID does Facebook accept? (https://www.facebook.com/help/159096464162185)
  1. A signed PDF statement from a person with sufficient knowledge and authority over this matter that includes all of the below items. NOTE: The following statement MUST BE NOTARIZED. This means that it has to be signed by a person (a notary) who is witnessing and attesting to the authenticity of the documentation.
    a. The Business Manager Account ID, link of Account in Question b. The email address of an individual requesting access c. A description of your relationship to the Business Manager Account (and authority to request a change in the admin, as applicable) d. The name of the current Business Manager Account Admin(s), as applicable e. The current admin’s original relationship to the Business Manager Account f. An explanation of your request, and whether there has been a termination of the employment and/or business relationship with the named admin(s), as applicable
    g. All documentation supporting the request. Acceptable Business documents: What type of business documents does Facebook accept to prove that I'm the owner? (https://www.facebook.com/help/287728524907292/?helpref=uf_share).
    h. The email address of an individual that you wish to have added as the new admin on the Business Manager Account. The email must not be associated with another Facebook Account. Please note that due to a checkpoint on the Account, the email MUST be a generic domain -- @gmail.com, @yahoo.com, @hotmail.com, etc i. A typed declaration under penalty of perjury that the information you have provided is true and accurate (the statement must include this language)."
And below are the format on how you will going to submit a letter.

To whom it may concern:
I, is the of the Business requests to become an Admin of the Business Account with the Business Account ID of . My Facebook Profile Link is with an ID of . My active email address is . Currently, the Business Account does not have an active Admin. ( Input here your reason why you need to have access on the Business Manager Account)
I certify that the information provided is true and accurate.
Regards,

Please consolidate all of the requirements in one PDF form.”
Does all of this sound right?
submitted by Vegetable_Heart369 to facebook [link] [comments]


2024.04.15 02:34 Rich_Profession6606 Please take part in our first anonymous community survey. We will recruit new moderators (mods) after the survey

Please take part in our first anonymous community survey. We will recruit new moderators (mods) after the survey
Please give us feedback via this survey, https://forms.office.com/BGUNw7m8Ax . Please share this survey or post with anyone who visits this community.
https://preview.redd.it/rsf901hbljuc1.jpg?width=1280&format=pjpg&auto=webp&s=d28133e2b5bb15f5ae9ee72139fb58729e1d59ac
We'll recruit new moderators (mods) after we publish the results of this survey.

1) Why complete this survey?

This community was created in 2022 after Season 2. This is the first opportunity to provide complete feedback on:
  • Overall Satisfaction
  • Current Rules
  • New Rules
  • Moderator feedback (how the rules are applied)
  • New Moderator selection

2) Accessibility needs?

If you have accessibility needs, such as a visual impairment, dyslexia or perhaps English is your second you may prefer to use the text-to-speech options to complete this survey.
  • Click the three dots (...) at the top of each section or question;
  • then Click the "Enable Immersive Reader" speaker button to use the Text-to-speech options. (see screenshot link: https://ibb.co/MRmBmkX)

3) How long will the survey take?

Ten minutes if you do not write any free text answers. This is the first complete survey for this community; we value your feedback.
Tips for completing the survey
  • Optional questions allow for detailed suggestions but take longer. Skip the optional suggestions if you want to save time.
  • Choosing "Other" requires typing your response, and also takes more time.
  • Accessibility options, like text-to-speech, might speed up the survey for some users.

4) The survey is 100% anonymous.

You do NOT need a Microsoft account to complete this survey.
  • If you want to save the survey to complete later, Microsoft will ask you to sign in with your Microsoft or Hotmail account or create a new Microsoft account.
  • Your Microsoft account or email address is NOT visible or accessible to us.
It will be easier to complete the survey in one session, with or without a Microsoft account.

5) Transparency / How was this survey created?

I became a mod last Autumn. I created this survey a few months ago based on Frequently Asked Questions and feedback from this community.
Thank you to the volunteers who provided feedback on the draft survey.
https://preview.redd.it/kbxq2ia1mjuc1.png?width=1890&format=png&auto=webp&s=dcc754fdd2cd66fc24bb01fbe38506f0eea0dca7

TLDR: Please give us feedback via this survey, https://forms.office.com/BGUNw7m8Ax

Anyone can complete this survey. You can provide feedback on Overall Satisfaction, Current Rules, New Rules, Moderator (how the rules are applied) and New Moderator selection. Feel free to share this post and this survey. We will start recruiting Season 3 moderators after we publish the survey results.
submitted by Rich_Profession6606 to BridgertonRants [link] [comments]


2024.04.11 00:03 DunKco PSA. check/update your recovery email and phone number

I am astounded at how many posts i see in some form of the following context: I am locked out of google/gmail account for a multitude of reasons. including lost/forgot my password/account was hacked etc etc. My recovery account is also a gmail account but because i cant get into any gmail at all for some reason i can get the recovery email. i use and almost 25 year old hotmail account thats solid as a rock. (make sure IT has all recovery options updated as well) Oh and by the way i never had a recovery phone number or its and old number that i dont have access to. recovery codes? nah, i dint think id need them.
Use a NON Gmail email address for recovery. Check and update you recovery phone number. Make sure you profile information is correct to use even if the name isn't( just remember what it is). Print off a page of recovery codes. or you you have a zero chance of getting the account back.
And if you dont, youll look back one day and think....Dang, i should have took the time.
submitted by DunKco to GMail [link] [comments]


2024.04.07 21:57 goodbyemail Master Your Email Archive: A Hassle-Free Guide to Exporting Outlook Emails

Hello there!
Having a backup of your emails can be as crucial as backing up your photos or documents. Whether it's for peace of mind, transitioning to a new job, or simply organizing your digital life, knowing how to properly export your Outlook emails, calendar, contacts, and notes is invaluable.
For those of us using Outlook, Hotmail, MSN, or Live.com, there's a straightforward way to export all your important emails directly from your web browser as a .pst file. This process is simple and ensures that you have a personal archive of your mailbox that you can access anytime, anywhere.
For a detailed guide on each step and additional tips on managing your inbox more effectively, feel free to check out the full article here.
For those with Microsoft 365 or Exchange accounts, there's also a method to export your emails using the Outlook app for Windows, which includes backing up your entire account, ensuring no important email or contact gets left behind.
While following these steps to back up your Outlook emails is a solid start to taking control of your digital correspondence, there's always more we can do to maintain a clean and organized inbox. If you've ever felt overwhelmed by the sheer volume of emails or found yourself running out of storage too frequently, there's an effective solution at hand.
GoodByEmail offers an efficient way to not just manage but genuinely clean up your inbox with minimal effort. It's designed to tackle the most common inbox nuisances head-on. With GoodByEmail, you can easily identify and mass-delete emails from those persistent senders who clog your inbox and unsubscribe from unwanted mailing lists with just one click. Imagine the relief of reclaiming your inbox and making it a stress-free zone again.
submitted by goodbyemail to goodbyemail [link] [comments]


2024.04.05 04:18 No-Negotiation-7079 New FREE Way to Quiz Yourself for Exams

Access to test prep tools is vital to obtaining any certification. After obtaining my CompTIA Sec+ I realized that I need access to study materials on the fly because study time is hard to come by at my age and life situation, I need to take advantage of every free moment I get.
Whether at work (Breaks, lunches, or downtime), sitting on the toilet, grocery shopping with the family, or riding shotgun in a car, this is all lost time that could have been utilized towards studying if I had access to the tools. So this started my mission to find suitable quizzing material that I could access on the fly with my smartphone or tablet, you know a portable device.
Well if you’ve done your research by searching the App stores you probably found out that this does not come free and every app varies in the quality of information. Not to mention that over time you get the same question repeated over and over again and you simply know the answer because of question memorization. Moreover, the app you purchase is specific to the course you're taking and once you’ve completed that course the app is useless.
Well, I’m here to change that for you if haven’t already discovered this method yourself.
Take a trip to your app store and download Microsoft Copilot. This is a personal AI tool that comes with ChatGPT and it’s all free. It’s also available for desktop users with Microsoft Edge. Now you will need to have a Microsoft account, so sign up for a free Hotmail account and get yourself going, this will come in handy later as it retains your previous conversations across all devices.
Once installed ask your new personal AI assistant anything you want. And when I say anything, I mean ANYTHING. It will always have an answer for you. For instance, I’m currently studying for my CySA+ and need access to training material on log reading, port scanning, nmap scans, and so forth. Here are some sample questions I asked my AI assistant to generate in ways of quizzing material:
• Please quiz me on the CompTIA CySA+ exam. Please provide me with 3 questions to start with.
• Give me another set of questions.
• Please echo question 3.
• Please provide log quiz questions relating to the above
• Please quiz me on the 100 most used ports in networking
• Please quiz me on Nmap commands
Answering the Questions:
Simply hit the microphone icon and say:
• Number 1 is the letter D
• Number 2 is the letter A
• OR .. Number 1 is Letter A, number 2 is B, number 3 is C…. or just type it in.
Copilot will respond audibly if the answer is correct or incorrect and provide a brief description of why that is.
Your AI assistant will also read back the question when asked, go into further detail if you don’t understand how something specifically works, provide you with the resources of where it obtained that information (for further review), Generate YouTube links for video review to further drill down and drive home your knowledge and understanding or proved you with books to read from.
Sample Quiz Questions:
Copilot
Certainly! Here are some practice questions related to log analysis for the CompTIA CySA+ exam:
  1. Log Analysis: A security analyst is reviewing the following log entry:
SRC=192.168.1.100 DST=10.10.10.10 LEN=52 TOS=0x00 PREC=0x00 TTL=117 ID=43321 DF PROTO=TCP SPT=1030 DPT=80 WINDOW=65535 RES=0x00 SYN URGP=0
What type of activity is most likely being logged? A. A normal web server request B. A network scan looking for active web servers C. A denial-of-service attack D. An internal system communicating with a database server
  1. Incident Analysis: You are analyzing a log file and notice several login attempts from an unfamiliar remote IP address, followed by a successful login from the same IP. What is the most likely scenario? A. Legitimate remote user access B. Brute force attack C. Insider threat D. Social engineering attack
  2. Security Monitoring: Which of the following log entries should be investigated as a potential security incident?
a. 2024-04-03T09:15:00Z Failed login for user 'admin' from IP 203.0.113.1
b. 2024-04-03T09:16:01Z User 'jdoe' accessed file 'salary_info.xls'
c. 2024-04-03T09:17:02Z Connection established to IP 198.51.100.2 on port 22
d. 2024-04-03T09:18:03Z Firewall rule updated to allow traffic from IP 192.0.2.0/24
A. a B. b C. c D. d
Feel free to answer these questions, and I’ll confirm if you’ve got them right! 🕵️‍♂️💻

What are you waiting for, it's free!
submitted by No-Negotiation-7079 to CompTIA [link] [comments]


2024.04.03 02:04 jtractatus Register for Microsoft Cloud Partner Program

Hey everyone! My webdesign/hosting company is trying to switch from Google Workspace to Microsoft Cloud Partner Program. Questions, because Microsoft is making this incredibly hard and vague.
  1. How do you create an Office account? I tried through Azure but it doesn't work. I keep getting this banner ad when I try to register: You are currently signed in with a personal account, such as u/outlook.com or u/hotmail.com. To access your benefits, please sign out of your personal account and then sign in with your work account— for example, [jon@contoso.com](mailto:jon@contoso.com).
  2. Do you have any information about the registration/verification/licensing process, and the reseller margins? God forbid Microsoft provides me with this information.
Thanks a million:)
submitted by jtractatus to microsoft365 [link] [comments]


http://activeproperty.pl/