Software Tutorial
Computer Software
How to set up account login protection on Bilibili_Silicon B login secondary verification and account protection setting method
How to set up account login protection on Bilibili_Silicon B login secondary verification and account protection setting method
Turning on login protection and two-step verification can improve the security of Bilibili accounts, including: 1. Manage login devices and clear unknown devices; 2. Bind mobile phone numbers to enhance basic protection; 3. Enable Google Authenticator and add dynamic verification code verification; 4. Set backup verification codes to prevent failure to log in; 5. Turn on login notification reminders and monitor account login status in real time.

If you want to improve the security of your Bilibili account and prevent others from logging into your account without authorization, you can enhance protection by turning on login protection and two-step verification. The following are the specific steps:
1. Enable login device management
By managing logged-in devices, you can view and clear untrusted login records, thereby reducing the risk of account theft.
1. Open Bilibili official website or App and log in to your account.
2. Enter the personal center and click the settings icon in the upper right corner to enter the "Settings" page.
3. Select the "Account Security" option and find the "Login Device Management" function.
4. The system will list all device information that has recently logged into your account, including device model, IP address and login time.
5. For unknown or no longer used devices, click the "Remove" button to log out.
2. Bind mobile phone number
Binding a mobile phone number is the basis for two-step verification, which can effectively prevent others from logging into your account without obtaining the mobile phone verification code.
1. Enter the "Security and Privacy" or "Account Security" section on the "Settings" page.
2. Find the "Bind Mobile Number" option. If it has not been bound yet, click "Bind Now".
3. Enter your currently available mobile phone number and get the SMS verification code.
4. Enter the received verification code to complete the binding operation.
3. Enable Google Authenticator
Use a time-based one-time password (TOTP) tool like Google Authenticator to provide a stronger authentication mechanism when logging in.
1. Find the "Two-factor Authentication" or "Dynamic Token" option on the "Account Security" page.
2. Select "Add Authenticator" and the system will display a QR code.
3. Install and open the Google Authenticator app on your phone, and click the "Scan Barcode" function.
4. Scan the QR code displayed on the screen. If successful, the app will generate a 6-digit dynamic verification code.
5. Enter the currently generated 6-digit number on the Bilibili page to confirm activation.
4. Set backup verification code
To prevent being unable to log in if you lose your authentication device, it is recommended to save backup verification codes in advance.
1. After successfully enabling Google Authenticator, the system usually provides a set of one-time use backup codes.
2. Click "Download" or "Copy" these backup codes and store them in a safe location.
3. Every time the backup code is used, the code becomes invalid and cannot be reused.
4. Please make sure to keep at least 5 backup codes to deal with emergencies.
5. Turn on login notification reminder
After enabling the login reminder function, the system will send a notification to the bound mobile phone or App message center whenever a new device or remote login occurs.
1. Enter the "Notification Settings" or "Account Security" section in "Settings".
2. Look for the "Login Reminder" or "Login Notification" switch option.
3. Adjust its status to on mode.
4. Every time you log in thereafter, as long as you change the device or network environment, you will receive a real-time push reminder .
The above is the detailed content of How to set up account login protection on Bilibili_Silicon B login secondary verification and account protection setting method. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undresser.AI Undress
AI-powered app for creating realistic nude photos
ArtGPT
AI image generator for creative art from text prompts.
Stock Market GPT
AI powered investment research for smarter decisions
Hot Article
Popular tool
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
20518
7
13631
4
SQL performance analysis tool in Golang web development Go language GORM-Query-Logger
Mar 11, 2026 am 11:12 AM
GORM does not print complete SQL by default in order to prevent sensitive data from leaking and reduce log volume. It is necessary to customize the Logger and rewrite the LogMode and Info methods to splice sql.String() and sql.Variables to achieve parameterized output. SlowThreshold only counts the time spent on the GORM layer, and does not include network and database lock waits.
How to make a simple fixed bottom toolbar with CSS_Set bottom:0 through position:fixed
Mar 10, 2026 pm 02:12 PM
The main reason why bottom:0 does not take effect is that the ancestor element triggers transform/will-change/filter to create a new containing block, so that the fixed element is positioned relative to it rather than the viewport; dynamic changes in the iOS Safari address bar cause occlusion; fixed elements need to be given way with padding-bottom; z-index failure is often caused by the parent creating a cascading context.
How to perform mathematical operations on complex numbers in Golang. Use of Go language math/cmplx package
Mar 11, 2026 am 10:42 AM
Complex numbers in Go need to be explicitly declared with complex64 or complex128. For example, z:=complex(3,4) defaults to complex128; operations must use the math/cmplx package, and math package functions cannot be mixed; precision and NaN handling need to be handled with caution, and complex128 is preferred.
How to put web shortcuts on the desktop in Google Chrome_Google Chrome application tutorial
Mar 16, 2026 pm 06:24 PM
Google Chrome provides five methods for creating web desktop shortcuts: 1. Install the PWA through the address bar; 2. Manually create the "Open as window" shortcut through the menu; 3. Start the independent application mode with command line parameters; 4. Enable the chrome://flags experimental function to unlock universal installation; 5. Use developer tools to verify and trigger the installation.
How to fix common tabs in Google Chrome_Tutorial on how to lock Google Chrome
Mar 16, 2026 pm 04:57 PM
There are five ways to lock frequently used website tabs in Chrome: 1. Right-click and select "Pin Tab"; 2. Drag to the far left to automatically pin; 3. Set the tab to automatically restore pinned web pages at startup; 4. Enable the experimental fixed width function in chrome://flags; 5. Install third-party extensions to achieve batch pinning and advanced management.
Guide to troubleshooting and repairing nil pointer dereference errors when Redigo connects to Redis
Mar 11, 2026 pm 01:09 PM
This article explains in detail the typical problem of panic:invalidmemoryaddressornilpointerdereference in Redigo due to the direct use of the connection object without verifying the redis.Dial return error, and provides a safe and robust connection pool initialization solution.
How CSS replaces Outline with the Ring tool of Tailwind CSS_to achieve a more exquisite focus css style
Mar 10, 2026 pm 12:57 PM
You cannot directly use outline to make accessible focus styles, because its style is difficult to control, macOSSafari is disabled by default, does not support :focus-visible fine judgment, and cannot meet customization requirements such as 2px solid color, 4px offset, and 6px rounded corners in the design draft.
How to implement Kubernetes CSI storage plug-in in Golang Go language container storage interface
Mar 11, 2026 pm 12:27 PM
The CSI plug-in must implement two gRPC services, ControllerServer and NodeServer, strictly follow the Kubernetes CSI specification, respond to requests through standard interfaces, ensure that the volume ID is globally unique, the pluginname is in the DNS subdomain format, the mount path is semantically compliant, and the socket path and permissions are correctly configured to complete the registration.





