Home > Web Front-end > JS Tutorial > Using the console to crack Baixiaodu is only allowed to change the name once a month_javascript skills

Using the console to crack Baixiaodu is only allowed to change the name once a month_javascript skills

WBOY
Release: 2016-05-16 15:45:25
Original
1716 people have browsed it

The code can be injected into the console of the page that changes Baidu name. Of course, you must log in to your Baidu account first.

var xmlhttp = new XMLHttpRequest(),
  prop = {};
prop.xiaoduName = 'xiaodu';
prop.userName = 'AJ';
prop.url = 'http://xiaodu.baidu.com/s?sample_name=bear_brain' +
      '&request_type=4&callback=jQuery110202043993091210723_1439446331525' + 
      '&system_name=' + 
      prop.xiaoduName + '&user_name='+
      prop.userName + '&_=1439446331528';
prop.type = 'GET';
prop.succes = function(val) {
  console.log(val);
}
prop.error = function () {}
xmlhttp.onreadystatechange = function () {
  if (xmlhttp.status === 200 && xmlhttp.readyState === 4) {
    prop.succes(xmlhttp.responseText);
  }
}
xmlhttp.open(prop.type, prop.url);
xmlhttp.send();
Copy after login

Attached is the renaming method of Baixiaodu:

Many people adopted and activated Bai Xiaodu and temporarily gave Bai Xiaodu a name, but later wanted to change it. So how does Baixiaodu change its name? The editor below will teach you how to change the nickname of Bai Xiaodu.

First log in to your Baidu account. If you have adopted and activated Baixiaodu, you can see Baixiaodu on the Baidu homepage and click TA.

If you don’t see Baixiaodu on the homepage, you can search for “Baixiaodu”.

You can then click on the first search result, or click on the "Settings" icon on the right.

Baixiaodu’s settings page will then open. Click the pencil icon next to its name to make modifications.

After the modification is completed, click the "Save" button at the end.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template