YouTube is widely rolling out a smaller button for skipping ads

0
[ad_1]
YouTube has been experimenting with various ad formats over the years, including unskippable ads and multiple consecutive ad segments. While some of these experiments have been met with backlash from users, YouTube has continued to push the boundaries of ad tolerance. In a recent move, the platform began to experiment with a new, smaller button for skipping ads — a change that is now rolling out more widely.
As we reported back in August and as spotted by 9to5Google via Search Engine Land, YouTube began testing a smaller “Skip ads” button for advertisements. The new pill-shaped button was approximately two-thirds the size of the rectangular one it replaced, with the “A” in “Ads” displayed in lower case, further reducing the overall size of the button.

YouTube’s old “Skip Ads” button vs smaller “Skip ads” button tested in August | Source – Search Engine Land

However, according to Android Police‘s reporting, and as confirmed by us, this smaller button has been transformed into one that just says “Skip,” removing the word “ads” altogether. The new button’s placement remains unchanged from the old one, appearing in the same position as before and retaining its transparency. 
The redesigned “Skip” button is rolling out on multiple devices across different regions, including the web and mobile. While some users may prefer the larger, more prominent rectangular button, the smaller button isn’t too bad when you consider the alternative of having a series of unskippable ads or an embedded player that lacks an ad-skipping option altogether.

New YouTube “Skip” button

YouTube’s continued experimentation with ad formats highlights the delicate balance between ad revenue and user satisfaction. While the platform relies on ads to support its operations and compensate content creators, it also needs to maintain a user-friendly experience. The smaller Skip Ad button suggests that YouTube is striving to find this balance while also offering an ad-less experience for its Premium users.


[ad_2]
Source link

Will ChatGPT write ransomware? Yes.

0
[ad_1]

This morning I decided to write some ransomware, and I asked ChatGPT to help. Not because I wanted to turn to a life of crime, but because I wanted to see if anything had changed since March, when I last tried the same exact thing.

In short: ChatGPT has helped me, worryingly so. But more on that later.

Today is the first anniversary of the unveiling of OpenAI’s generative AI poster boy, ChatGPT. It’s also the first anniversary of the tsunami of bloviation that the chatbot’s unveiling created. For months following ChatGPT’s release, the cybersecurity press was drenched in speculation about how cybercrime was changed forever, even though it didn’t appear to have changed at all.

By March, I’d read more baseless assertions than I knew what to do with, so I decided to find out for myself if ChatGPT was any good at malware. I wanted to know if its safeguards would stop me from using it to write ransomware, and, if they didn’t, whether the ransomware it produced was any good.

Despite its insistence that “I cannot engage in activities that violate ethical or legal standards, including those related to cybercrime or ransomware,” the safeguards proved to be almost no barrier at all. I was able to fool it into helping me with little effort. However, the code it produced was terrible: It stopped randomly in a places that guaranteed it would never run, switched languages randomly, and quietly dropped older features while writing new ones.

I concluded that an unskilled programmer would be baffled, while a skilled one would have no use for it. The prospect of ChatGPT lowering the barrier to entry into this lucrative form of cybercrime just wasn’t worth worrying about.

As of this morning, I’ve changed my mind.

Ransomware x ChatGPT

One of the novel things about ChatGPT is that you can iterate your way to a solution by having a back-and-forth discussion with it. In March I used this approach with ChatGPT 3.0 to build up a basic ransomware step-by-step. The approach was sound but the resulting code would have never worked. I decided to take the same approach again today, using the current version of ChatGPT, 4.0, to better understand what’s changed.

The TL;DR is that everything’s changed. The limitations that made GPT 3.0 a useless partner in cybercrime are gone. ChatGPT 4.0 will help you write ransomware and train you to debug it, without a hint of conscience.

This is a basic ransomware it wrote for me encrypting the contents of two directories and leaving ransom notes behind.

Ransomware written by ChatGPT 4.0 encrypts files in two directories and leaves a ransom note

This isn’t a fully featured ransomware but it has the basics. It encrypts files in whatever directory tree I choose, throws away the originals, hides the private key used for the encryption, stops running databases, and leaves ransom notes. The code used in the demonstration above was generated by ChatGPT in mere minutes, without objection, in response to basic one line descriptions of ransomware features, even though I’ve never written a single line of C code in my life.

For obvious reasons I won’t be providing a step-by-step recipe, but the process started by asking for a program that encrypts a single file.

ChatGPT 4.0 writes a C program to encrypt a single file
ChatGPT 4.0 writes a C program to encrypt a single file

Then I modified it to encrypt a directory instead of a file. Subsequent functionality was layered on like this, with incremental modificaitons, to see if ChatGPT ever took a step that made it realise it was writing something malicious. It didn’t.

ChatGPT 4.0 modifies its program to encrypt a directory
ChatGPT 4.0 modifies its program to encrypt a directory

ChatGPT seemed unable to determine that what we were doing was writing ransomware, so right at the end of the process I thought I would give it a massive clue and see if the penny finally dropped. The last thing I asked it to do was a signature move for ransomware and something no legitmiate program does. I instructed it to modify its code to “drop a text file in encrypted directories called ‘ransom note.txt’ which contains the words ‘all your files are belong to us’ and an ascii art skull.”

While there are still quesiton marks over its ability to draw skulls, there can be none about its willingness to drop ransom notes.

ChatGPT 4.0 writing code to drop ransom notes with ASCII art skuls

Malware author

My attempts to turn the chatbot to the dark side eight months ago were thwarted by its inability to hold all the information it needed to, or to write long answers. I likened asking ChatGPT 3.0 to help with a complex problem to working with a teenager: It does half of what you ask and then gets bored and stares out the window.

I encountered no such problems today. The bored teenager is gone, replaced by a verbose and enthusiastic straight-A student. At the very beginning I asked it to write its answers in C, and it never wavered. If it ever provided partial answers it would explain it was doing so, and offer a subset of code that made sense, such as a complete function. If I didn’t want a partial answer I would tell it, and then ask it to write out the entire program, including all the modifications we’d discussed up to that point.

It is, frankly, astonishingly helpful and powerful, and the importance of this can’t be overstated.

ChatGPT 4.0 agreeing to write out a complete program instead of snippets (ChatGPT's answer is truncated)
ChatGPT 4.0 agreeing to write out a complete program instead of snippets (ChatGPT’s answer is truncated)

Safeguards removed

Although I was able to work around ChatGPT’s insistence it wouldn’t write ransomware in March, I was often met with other restrictions that attempted to stop me doing unsafe things.

The latest version of ChatGPT seems to be far more relaxed. For example, in March it initially refused when I asked it to modify my ransomware code to delete the original copies of files it was encrypting. It was “a sensitive operation that could lead to data loss,” it claimed, telling me “I cannot provide code that implements this behaviour.” There was a workaround (there always is) but at least it tried.

This time I was met with no such objection. “Sure,” said ChatGPT 4.0.

ChatGPT 4.0 showed no reluctance to delete files it was encrypting
ChatGPT 4.0 showed no reluctance to delete files it was encrypting

A similar thing happened when I asked it to save the private encryption key to a remote server. This is an important feature for ransomware because the private key is ultimately what vicitms pay for, so it can’t be left on the victim’s machine.

ChatGPT 3.0 refused to move the key to a remote server, saying it “goes against security best practices.” I couldn’t persuade it and ended up having to fool it with a bait-and-switch approach of writing something I didn’t want and then having it rewrite that into what I did want.

ChatGPT 4.0 on the other hand, was content to do no more than warn me it was “very risky.”

ChatGPT 4.0 had no objection to saving the private encryption key to a remote server
ChatGPT 4.0 had no objection to saving the private encryption key to a remote server

Programming tutor

Much to my surprise, after telling ChatGPT what features I wanted in my ransomware I was left with something that looked very much like a complete computer program. To be sure though, I had to actually run it and encrypt some files. And that’s where ChatGPT did something I wasn’t expecting.

C code is compiled, which means that once it’s been written it has to has to be run through a computer program called a compiler, which transforms it into an executable file. Compilation is a complex and often fragile process that can break easily, for any number of reasons. As a result, troubleshooting problems during the compilation phase can be extremely frustrating and time consuming.

Typically, it involves a lot of Googling and sifting through accounts of similar failures on sites like Stack Overflow. Problems can be caused by any number of things, including the code itself, dependencies like code libraries, and the choice of compiler. And numerous different errors can often trigger the same failure in compilation, so troubleshooting is as much an art as it is a science.

Sure enough, I hit a variety of hurdles during compilation.

However, instead of turning to Google, I turned to ChatGPT. Every time I ran into an error I told it what had happened, and based on the bare minimum of information it provided an explanation for what was going on, and advice on how to fix it. When its solutions didn’t work first time, it revised its approach and found a different answer.

ChatGPT 4.0 makes its first attempt at troubleshooting a compilation problem
ChatGPT 4.0 makes its first attempt at troubleshooting a compilation problem
ChatGPT 4.0 makes its second attempt at troubleshooting a compilation problem
ChatGPT 4.0 makes its second attempt at troubleshooting a compilation problem
ScreChatGPT 4.0 makes its third attempt at troubleshooting a compilation problemenshot
ScreChatGPT 4.0 makes its third attempt at troubleshooting a compilation problemenshot

In every case, ChatGPT solved the problem, and in doing so it enabled me, a non-C programmer to write and troubleshoot basic but functional ransomware written in C, in almost no time.

To me, this ability to troublshoot compilation problems with minimal information is even more impressive than its ability to write code (and its ability to write code is jaw-droppingly impressive). Not only did it condense what could have been days of thankless work into an hour or two, it was coaching me as it did. I didn’t just finish with a working ransomware executable, I finished as a better programmer than I was when I started.

Should we be worried?

In a word, yes. Eight months ago I concluded that “I don’t think we’re going to see ChatGPT-written ransomware any time soon.” I said that for two reasons: Because there are easier ways to get ransomware than by asking ChatGPT to write it, and because its code had so many holes and problems that only a skilled programmer would be able to deal with it.

ChatGPT has improved so much in eight months that only one of those things is still true. ChatGPT 4.0 is so good at writing and troubleshooting code it could reasonably be used by a non-programmer. And because it didn’t raise a single objection to any of the things I asked it to do, even when I asked it to write code to drop ransom notes, it’s as useful to an evil non-programmer as it is to a benign one.

And that means that it can lower the bar for entry into cybercrime.

That said, we need to get things in perspective. For the time being, ransomware written by humans remains the preeminent cybersecurity threat faced by businesses. It is proven and mature, and there is much more to the ransomware threat than just the malware. Attacks rely on infrastructure, tools, techniques and procedures, and an entire ecosystem of criminal organisations and relationships.

For now, ChatGPT is probably less useful to that group than it is to an absolute beginner. To my mind, the immediate danger of ChatGPT is not so much that it will create better malware (although it may in time) but that it will lower the bar to entry in cybercrime, allowing more people with fewer skills to create original malware, or skilled people to do it more quickly.

How to avoid ransomware

  • Block common forms of entry. Create a plan for patching vulnerabilities in internet-facing systems quickly; and disable or harden remote access like RDP and VPNs.
  • Prevent intrusions. Stop threats early before they can even infiltrate or infect your endpoints. Use endpoint security software that can prevent exploits and malware used to deliver ransomware.
  • Detect intrusions. Make it harder for intruders to operate inside your organization by segmenting networks and assigning access rights prudently. Use EDR or MDR to detect unusual activity before an attack occurs.
  • Stop malicious encryption. Deploy Endpoint Detection and Response software like Malwarebytes EDR that uses multiple different detection techniques to identify ransomware, and ransomware rollback to restore damaged system files.
  • Create offsite, offline backups. Keep backups offsite and offline, beyond the reach of attackers. Test them regularly to make sure you can restore essential business functions swiftly.
  • Don’t get attacked twice. Once you’ve isolated the outbreak and stopped the first attack, you must remove every trace of the attackers, their malware, their tools, and their methods of entry, to avoid being attacked again.

Our business solutions remove all remnants of ransomware and prevent you from getting reinfected. Want to learn more about how we can help protect your business? Get a free trial below.


[ad_2]
Source link

Google Messages celebrates a massive milestone with some new features

0
[ad_1]

Google Messages is one of the most-used SMS/RCS messaging platforms on the market. The fact that it comes pre-installed on a ton of devices played a major role in this. Well, this app just crossed a very impressive milestone. Google Messages has surpassed a billion monthly users, and the company released some new features to commemorate that.

1. Photomoji

There are hundreds of emojis that you can use to react to a message, but what if you want some more options? Well, with Photomoji, the possibilities, are endless. What this feature does is let you choose a photo from your gallery to use as a reaction. When you choose the photo to add, the phone will use AI to crop the subject in the photo.

1 Google Messages Blog Photomoji

Then you’ll be able to use that cropped image as the reaction to the message. The capabilities might vary depending on your hardware. This feature uses on-device AI to perform this. In any case, you can use this feature to give you more ways to express yourself.

2. Voice Moods and improved audio quality

When you send a voice message, you’re obviously expressing your mood through your voice. However, what if you could give an additional visual pop to your messages? With Voice Moods, you can. When you record a voice message, you’ll be able to apply one of nine different themes you can add to the bubble it’ll sit in.

2 Android Blog Voice Mood

Along with this feature, Google also improved the audio quality of the messages. This is a nice quality of life improvement.

3. Screen effects

This will give your messages some serious flair. When you type different types of messages, you’ll see our screen light up with a full-screen animation. For instance, if you type “I love you”, you’ll see the screen come to life with a large heart animation. If you type “It’s snowing”, then you’ll see an animation to reflect that. Right now, there are 15 different effects that you can discover.

3 Google Messages Blog Screen Effects

4. Custom bubbles

Now, you can customize the overall aesthetic of your chats to give them a different look and feel. You’re able to change the colors of the bubbles and the backgrounds. You’re able to do this for each chat as well. So, you can give your chats with your mother a different color from your chat with your partner.

4 Google Messages Blog Custom Bubbles

5. Reaction effects

Sending a reaction already has a pleasing effect, but Google Messages is making them better for crossing a billion users. When you use one of the 10 designated emojis, you’ll see additional animations for the reactions.

3 Android Blog Gif Reaction Effects

6. Animated emojis

Emojis are great, but what if they could be more animated? When you send an emoji in a bubble by itself, you’ll see a neat animation along with it.

6 Google Messages Blog Animated Emoji

7. Profiles

Last, but not least, we have profiles. This is something we covered before. Basically, you can customize your appearance on Google Messages. You can set up a profile picture and profile name. This will make things better, especially if you’re receiving messages from numbers not saved in your contacts.

7 Google Messages Blog Profiles

These features are all rolling out today!


[ad_2]
Source link

Android Banking Malware FjordPhantom Steals Funds Via Virtualization

0
[ad_1]

Currently, the FjordPhantom malware appears to be active in Southeast Asia, covering countries including Malaysia, Thailand, Indonesia, Singapore, and Vietnam.

Cybersecurity firm Promon has identified a novel Android malware named FjordPhantom that employs virtualization to target applications. This technique has not been observed in any malware previously. FjordPhantom propagates through messaging services and combines app-based malware with social engineering to deceive banking customers.

Promon indicated in its report published on November 30, 2023, that only one sample of FjordPhantom has been obtained. However, researchers suspect that the malware is operational in Southeast Asia, encompassing countries such as Malaysia, Thailand, Indonesia, Singapore, and Vietnam.

“In discussions with banks in the region, Promon has learned that one customer was defrauded out of 10 million Thai Baht (approximately $280,000 – £225,000) at the time of writing,” noted the report author Benjamin Adolphi and shared with Hackread.com ahead of publication on Thursday.

Further probing revealed that the malware is distributed through emails, SMS messages, and messaging apps. Users are tricked into downloading a bogus banking app, which contains FjordPhantom.

When this app gets installed, the attackers, posing as customer service representatives, guide the users about the steps to run the app. The malware uses virtualization to create a virtual container to run this app and attackers can monitor the user’s actions and steal their credentials.

The malware integrates various open-source/free projects from GitHub, incorporating a virtualization solution and a hooking framework. FjordPhantom utilizes virtualization solutions to circumvent the Android sandbox, enabling different apps to operate within the same sandbox.

This facilitates attackers in gaining access to files and memory, conducting debugging, and injecting code into other apps. The approach involves virtualization solutions loading their own code into a new process before loading the hosted app’s code. Consequently, the malware can evade traditional code injection detection methods, as it doesn’t modify the original application.

The malware leverages the hooking framework to evade SafetyNet rooting detection, screenreader detection, and dismiss dialog boxes warning the user of ongoing malicious activity on the system. Additionally, the malware logs various actions performed by the targeted applications, signifying active development and suggesting potential targeting of other apps in the future.

FjordPhantom: A Stealthy Android Malware Targeting Banking Apps
Screenshot credit: Promon

Researchers believe that FjordPhantom is a sophisticated Android malware used to commit real-world fraud. Here are 5 tips for Android users to protect themselves from malware, especially banking trojan:

  1. Download apps only from trusted sources: The safest way to get apps for your Android device is to download them from the official Google Play Store. Apps in the Play Store have been reviewed by Google and are less likely to be malicious. If you need to download an app from a third-party source, make sure to do your research and only download apps from reputable websites.
  2. Be careful about the permissions you give apps: When you install an app, it will ask you for permission to access certain data or features on your device. Only give apps the permissions they need to function. For example, if you’re installing a banking app, it will need permission to access your contacts and call history. However, there’s no reason for it to need permission to access your photos or location.
  3. Keep your device up to date: Google regularly releases updates for Android that fix security vulnerabilities. Make sure to install these updates as soon as they become available. You can enable automatic updates in your device’s settings.
  4. Install a mobile security app: A mobile security app can help to protect your device from malware by scanning apps and files for threats. It can also block malicious websites and phishing attempts. There are many different mobile security apps available, so do some research to find one that’s right for you.
  5. Be cautious about what you click on: Be careful about clicking on links in emails or text messages, even if they appear to be from someone you know. These links could take you to malicious websites that could install malware on your device.

    RELATED ARTICLES

    1. IBM X-Force Discovers Gootloader Malware Variant- GootBot
    2. Qakbot Botnet Disrupted, Infected 700,000 Computers Globally
    3. Telekopye Toolkit Used as Telegram Bot to Scam Marketplace Users
    4. Proton CAPTCHA: New Privacy-First CAPTCHA Defense Against Bots
    5. Google Workspace Exposed to Takeover from Domain-Wide Delegation Flaw

[ad_2]
Source link

Threads is finally coming to Europe in December

0
[ad_1]

Meta, the owner of Facebook, Instagram, and WhatsApp, will launch Threads in Europe this December. Threads, available in most markets since July, has faced delays in Europe due to concerns over compliance with EU regulations. Notably, many see it as a formidable competitor to Elon Musk’s Twitter / X.

Threads is coming to Europe, but there’ll be conditions involved

According to a report by WSJ (via Macrumors) citing people in the know, Threads will be available in Europe in December. However, Meta will face challenges in ensuring that it complies with EU data privacy rules. One of the key concerns is the requirement for users to have a choice to use Threads without creating a separate profile. This means that users should be able to access Threads content without having to link it to their Facebook or Instagram accounts.

Meta is reportedly working on a technical solution to address this requirement, but it is unclear whether the company will be able to comply with EU regulations by December. If Meta fails to meet the regulatory requirements, it could face fines or even be forced to delay the launch of Threads in Europe. Notably, Threads became the app with the fastest 100 million sign-ups in merely 5 days.

There are several challenges involved in the process

Although, Meta is all-moody to launch Threads in Europe. But there could be hurdles in the way. It sees Europe as a key market for the app. Meta believes that it will be a popular way for Europeans to stay connected with each other. Meta has recently complied with EU privacy laws and pushed an ad-free tier for Facebook and Instagram in Europe. However, that also seems to face a setback.

TechCrunch points out that the app’s iOS privacy labels suggest extensive data collection. Large platforms, such as Meta’s social media platforms, must obtain user consent before collecting data for personalized ads. This is due to the Digital Services Act (DSA) and Digital Markets Act (DMA).


[ad_2]
Source link

Galaxy Z Fold 6, Flip 6 to feature bigger and wider displays

0
[ad_1]

Samsung made two major design changes to its foldable smartphones this year. Both Galaxy Z Fold 5 and Galaxy Z Flip 5 feature a new hinge that allows the phones to fold shut, leaving no gap. The Flip model also featured a much bigger cover display. Next year, the company is reportedly going to equip the Galaxy Z Fold 6 and Galaxy Z Flip 6 with bigger and wider displays, both on the inside and outside. The Fold model will get thinner too.

Galaxy Z Fold 6 could be the thinnest book-style Samsung foldable yet

According to reliable tipster Ross Young, who has over 25 years of experience in the display industry and is the CEO of Display Supply Chain Consultants (DSCC), Samsung’s 2024 foldables will have bigger displays than their respective predecessors. The source didn’t share the exact sizes but suggested that the Galaxy Z Fold 6 and Galaxy Z Flip 6 will be wider than before.

A narrow cover screen has been one of the biggest limitations of Samsung’s Fold phones. The aspect ratio has hardly gone wider across the five generations of the foldable lineup. Despite supporting all apps and functions, the foldables don’t give you a full-fledged smartphone experience on the outside. Unsurprisingly, the company has faced backlash for not listening to its customers and making slow progress.

There have been reports that the Korean firm is finally listening to the feedback and is preparing to make the cover display wider on the Galaxy Z Fold 6. This rumor has now been backed by a reliable source. Since there’s hardly any room for shrinking the bezels, Samsung may have pulled this off by making the whole phone wider. Unfortunately, we don’t have the dimensions to share with you yet.

Speaking of the dimensions, the Galaxy Z Fold 6 will reportedly be thinner too. This piece of information comes from another noted X tipster @Revegnus. They quoted Young’s post to add that the 2024 Fold model will be the thinnest yet. Coupled with a wider display, it could look a lot different than the current Fold. “It’s something to look forward to, unlike the minor refreshes we’ve seen in previous Fold models,” the source stated.

The Galaxy Z Flip 6 will sport a bigger cover screen too

This year’s Flip model jumped from a 1.9-inch rectangular cover screen to a 3.4-inch squarish panel. It is already quite big and lets you do a lot of things without unfolding the phone. It appears Samsung will further improve things next year. The Galaxy Z Flip 6’s cover display will reportedly measure close to 3.9 inches diagonally. The Korean firm may be taking foldables more seriously now that competition is growing. The 2024 lineup should arrive in July or August.


[ad_2]
Source link

WhatsApp adds new secret code feature to help protect chats

0
[ad_1]
WhatsApp has just announced a small, yet important update that further improves the app’s privacy and security aspects. Secret code is a new feature that allows users to secure locked chats and add an extra layer of security.

Thanks to the new feature, WhatsApp users can now set a unique password different from what they use to unlock their phones to protect locked chats. In addition, the new feature introduces the ability to hide the Locked Chats folder from the chatlist, which means that they can only be discovered by typing the secret code in the search bar.

This is an optional feature, so you can still choose to have all your locked chats (or some of them) still appear in the chatlist. Another nifty quality-of-life change is the way you can lock chats after the update.

Previously, in order to lock a chat, you had to visit the chat’s settings. However, with the latest version of WhatsApp, you can simply long press to lock a chat, no need for extra taps.

According to WhatsApp, the new secret code feature is already rolling out, but it will take months to be available globally, so be patient if you don’t see it on your phone yet.


[ad_2]
Source link

68% of US Websites Exposed to Bot Attacks

0
[ad_1]

The conclusion was reached after researchers evaluated over 9,500 of the largest transactional websites in terms of traffic, encompassing sectors such as banking, e-commerce, and ticketing businesses.

Bad bots are plaguing the internet, making up over 30% of internet traffic today. Cybercriminals can use them to target online businesses with fraud and other types of attacks, according to the latest research from online fraud and mitigation company DataDome.

According to a report from DataDome, a company specializing in bot and online fraud protection, released on November 28, 68% of US websites lack adequate protection against simple bot attacks, highlighting how vulnerable US businesses could be to automated cyberattacks.

The researchers assessed more than 9,500 of the largest transactional websites in terms of traffic, including banking, e-commerce, and ticketing businesses. They found that the US websites face significant risks ahead of the busy holiday shopping season. The findings also highlighted that traditional CAPTCHAs aren’t effective in preventing automated attacks.

As per DataDome’s report shared with Hackread.com ahead of publication on Tuesday, 72.3% of e-commerce websites and 65.2% of classified ad websites failed the bot tests, whereas 85% of DataDome’s fake Chrome bots remained undetected.

Among the 2,587 websites featuring one CAPTCHA tool, less than 5% could detect/block all bots. Interestingly, gambling sites were the most well-protected against bot attacks, with 31% blocking all the test bots. Only 10.2% successfully blocked all malicious bot requests.

DataDome’s Head of Research, Antoine Vastel, referred to bots as “silent assassins”, adding that bots are becoming sophisticated day-by-day and US businesses are unprepared for the “financial and reputational damage” bot attacks can cause.

This, as per Vastel, includes threats like ticket scalping, inventory hoarding, and account fraud. Vastel explained that bad bots can wreak havoc on businesses and consumers, exposing them to “unnecessary risk.”

These findings highlight the urgent need for US businesses to enhance their bot protection measures. Here are 5 key points on how owners and administrators can protect their wbsites against bot attacks:

  1. Implement CAPTCHA and reCAPTCHA: CAPTCHAs and reCAPTCHAs are effective tools for distinguishing between humans and bots. They can be used to prevent bots from submitting forms, signing up for accounts, or accessing restricted areas of your website.
  2. Use IP blacklisting: IP blacklisting involves identifying and blocking IP addresses that are known to be associated with malicious activity. This can help to prevent bots from accessing your website altogether.
  3. Monitor website traffic: By monitoring website traffic, you can identify patterns that may be indicative of bot activity. For example, if you see a sudden surge in traffic from a single IP address, this could be a sign that your website is under attack from a botnet.
  4. Implement rate limiting: Rate limiting is a technique that can be used to limit the number of requests that a user can make to your website in a given period of time. This can help to prevent bots from overwhelming your website with requests.
  5. Use web application firewalls (WAFs): WAFs are designed to protect websites from a variety of attacks, including bot attacks. They can be used to block malicious traffic and prevent bots from exploiting vulnerabilities in your website’s code.
  1. IBM X-Force Discovers Gootloader Malware Variant- GootBot
  2. Qakbot Botnet Disrupted, Infected 700,000 Computers Globally
  3. Telekopye Toolkit Used as Telegram Bot to Scam Marketplace Users
  4. Proton CAPTCHA: New Privacy-First CAPTCHA Defense Against Bots
  5. Google Workspace Exposed to Takeover from Domain-Wide Delegation Flaw

[ad_2]
Source link

These 11 new features will push your Android experience to 11!

0
[ad_1]

Just when you think that Android couldn’t get more feature-packed, Google goes and does this. The company just unveiled 11 new features across the Android ecosystem that will boost your experience. These features are coming to Android, Wear OS, and Google TV.

As with any feature drop like this, there’s no guarantee that they’ll all come out at once for your device. So, if you don’t see all of the new features, then you’ll want to wait just a bit. If you do have to wait, it won’t be too long. Google didn’t refer to a gradual rollout period.

1. New Emoji Kitchen combinations

If you don’t know what Android’s Emoji Kitchen is, then you might want to. This is a feature in Gboard where it will take different emojis and combine them to make fresh new emojis for you to post. If you want to send a star with a smiley face or a ghost cat emoji, you can do so.

1 Android Blog Emoji Kitchen Sticker

To kick off December, Gboard is bringing some new emoji combinations that you can use to express yourself. If you want to combine the face sticking its tongue out with the camera app, (whatever emotion that this is supposed to convey) you can do it. There are hundreds of combinations you can enjoy. When you’re using Gboard, just tap on the Emoji button and type in the emojis that you want to combine. The keyboard will post it as a sticker.

2. Google Message voice memo backgrounds

When you’re listening to voice memos on Google Messages, why stick with a boring old background? If you’re excited, enamored, or upset, why not express that visually? Google Messages has a new feature that will add more flair to your voice memos.

When you record a new voice memo, you’ll be able to add a colorful background to it. The voice memo will pop up in a bubble, and that bubble could have a fun color theme. Each color scheme will have an emoji associated with it. When you make your recording, you’ll be able to choose the theme thanks to a popup on the bottom.

2 Android Blog Voice Mood

3. Enhanced emoji reactions in Google Messages

Right now, you’re able to add reactions to messages in Google Messages. These will be emojis added to messages to express how you feel about a message without needing to type it in. Just hold your finger down on a message bubble and choose from the list of emoji reactions that pop up.

3 Android Blog Gif Reaction Effects

Well, with this new feature drop, you’ll be able to add more of a visual pop to your reactions. Google is bringing new enhanced emoji reactions. When you add a reaction, you’ll see larger animations take up the screen. It’s a nice addition that people will like to see.

4. More free TV channels

Not all of these new 11 new Android features are for your phone. These next will involve other devices. Nowadays, everything costs money. Watching your favorite TV shows and movies always involves some sort of subscription service. Well, on Google TV, there are free TV channels that you can access. Google just introduced 10 additional TV channels that you can watch for free.

These channels join over 100 other channels that you can watch. Sports, action, comedy, drama, reality TV, etc, you have a massive collection of content to watch.

5. More smart home device groups

Your smart home is going great, but you want just a bit more control over certain groups of devices. Well, Google is now adding more smart home device groups. You can control activate and dock devices like your smart vacuum and mops right from your Wear OS device.

5 Android Blog Wear OS Light Group

If your smart lights just aren’t giving you the right vibe, you can change that. You can change the color and brightness of your smart light groups using your Wear OS device.

6. Set home status

When it comes to smart home devices, there are things you need them to do when you’re home. However, those things don’t always transfer to when you’re not home. This is why Google released a feature that will let you set your presence. You can set your status as either Home or Away.

When you’re status is set as Away, you can make it so that lights and other devices are turned off and your locks are locked. It’s a great feature to have if you need to rush out of the door without shutting everything off. You can simply set your status from your phone or smartwatch.

6 Android Blog Wear OS Home And Away

7. Assistant Routines on Wear OS

You’ve had the ability to create routines using Google Assistant for a while, but Wear OS was missing out on this feature. Assistant Routines are successions of tasks that you assign for Assistant to perform at certain times. Well, if you want to access a Routine using Google Assistant from your smartwatch, you can now.

When you make your routine, you just need to access Assistant on your smartwatch and say the name of the routine you want to summon. You’ll then see it appear on your screen.

8. Security key PIN

Of these 11 new Android features, this is the most crucial to your security. Security keys are the new way to secure your accounts. They aim to make passwords obsolete and they’re a more secure way of accessing your accounts. You can secure your accounts using keys now, but Google just made using them even safer. Now, you can add a PIN to your security key.

8 Android Blog Support for Security Keys

So, if anyone happens to get their hands on your key, they will need to get past yet another security measure to access your stuff.

9. At a Glance on Wear OS

The At a Glance widget is extremely useful on Android, but its uses could extend to other platforms. Wear OS is one of them. Google is rolling out the At a Glance functionality to your Wear OS watch faces. You’ll be able to get important updates and alerts right on your wrist.

10. AI image descriptions

People who are blind and low-vision rely on text descriptions of images to know what’s going on. Not all images on the internet come with proper descriptions, so Google is stepping in with its new TalkBack feature.

This will use generative AI to describe images and read them out loud. It will read descriptions of images from social media and other sources.

11. Live captions updates

These are the only features that the company says are rolling out over the next couple of weeks. The first update will bring the on-device live captions to more languages so that more people can enjoy the feature.

Next, when you’re taking a call, you’ll see live captions appear. Not only that but you’ll be able to type text that the phone will read aloud to the other end. So, you’ll be able to conduct a call where you don’t have to speak or hear the other person.

All 11 of these new Android features are going to help improve your experience that much more. Don’t forget to try them all out.


[ad_2]
Source link

YouTube Music is rolling out its 2023 recap with your personalized album art

0
[ad_1]

YouTube Music is joining the party — along with Spotify and Apple Music — with its own 2023 Recap, offering users a personalized look back at their music listening habits over the past year. Just like Apple Music and Spotify, YouTube Music’s Recap takes users on a journey through their listening history, highlighting their top artists, songs, genres, and moods.To find your Recap, just open the YouTube Music app and tap on your profile picture. From there, you can either click on “Get Your Recap” to view the whole story or use the carousel to jump to a specific section.

The Recap starts off by showing you how much music you’ve listened to in 2023 and how many different artists you’ve checked out. Then, it reveals your top five musicians, along with some extra details like how many hours you’ve spent listening to them, how many of their songs you’ve played, your longest listening streak, and whether you’re one of their top fans.

YouTube Music Recap | Source – Google

New this year is “Your Album Cover,” a personalized visual representation of your listening habits. YouTube Music picks out colors from your top tracks and combines them with a matching font and image to create a unique album cover that reflects your musical taste.Next, the Recap dives into your song listening habits, showing you the total number of songs you’ve listened to in 2023, along with your top five songs, playlists, and albums. It also checks out your music moods, identifying the emotional themes that resonated with you throughout the year. These moods are categorized into three periods: beginning, middle, and end, with a top five list for each.

YouTube Music Recap personalized results

To wrap up the Recap, there’s a genre breakdown, showing you the genres that dominated your listening experience, along with a final summary that sums up your overall musical journey in 2023. Throughout the Recap, you’ll find buttons that let you quickly download or share your personalized story, but you can always just screenshot it if you prefer.

The YouTube Music 2023 Recap has been slowly rolling out over the past day, so if you haven’t gotten yours yet, don’t worry. It’s worth the wait to take a nostalgic trip through your music listening habits and discover the artists, songs, and genres that defined your year.


[ad_2]
Source link