This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @supported 6F4F4E880CC1 | |
* @description 修改 balance 为 999 | |
*/ | |
try { | |
let obj = JSON.parse($response.body); | |
if (obj?.data?.balance !== undefined) { | |
obj.data.balance = 999; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @supported 6F4F4E880CC1 | |
* @description 修改 balance 为 999 | |
*/ | |
try { | |
let obj = JSON.parse($response.body); | |
if (obj?.data?.balance !== undefined) { | |
obj.data.balance = 999; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#-*- coding: UTF-8 -*- | |
import urllib | |
import urllib2 | |
import cookielib | |
#login | |
def crack_it(url,username,password): | |
cj = cookielib.CookieJar() | |
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Exclude the build directory | |
build/* | |
# Exclude temp nibs and swap files | |
*~.nib | |
*.swp | |
# Exclude OS X folder attributes | |
.DS_Store | |