yisar/asta

记录

yisar opened this issue · 1 comments

yisar commented
for (var i = 0; i < 26; i++) {
      for (var j = 0; j < 26; j++) {
        for (var k = 0; k < 26; k++) {
          let name =
            String.fromCharCode(65 + i) +
            String.fromCharCode(65 + j) +
            String.fromCharCode(65 + k)
          post('https://github.com/signup_check/username?suggest_usernames=true', {
            authenticity_token: 'u7gQqTDK7gVPXo0w6J2p / ak8lFcrM 0a0GRgy / YZ4Ev1LjV2hFNFGVpJdirwkytQxHNHW8 Qeu6ruJy3CX4WJg==',
            value: name
          }).then(res=>{
            console.log(res)
          })
        }
      }
    }
yisar commented

这是什么鬼