| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- # Load
- import time
- from route.tool.func import *
- while True:
- data_db_load = input('Load DB (Y) [Y, N] : ')
- if data_db_load in ('Y', 'N'):
- break
- if data_db_load == 'Y':
- data_db_set = class_check_json()
- db_data_get(data_db_set['type'])
- do_db_set(data_db_set)
- load_db = get_db_connect_old(data_db_set)
- conn = load_db.db_load()
- curs = conn.cursor()
- else:
- print('----')
- print('You can use [9, 11]')
- # Main
- print('----')
- print('1. Backlink reset')
- print('2. reCAPTCHA delete')
- print('3. Ban delete')
- print('4. Change host')
- print('5. Change port')
- print('6. Change skin')
- print('7. Change password')
- print('8. Change version')
- print('9. Delete set.json')
- print('10. Change name')
- print('11. Delete mysql.json')
- print('12. All title count reset')
- print('13. Cache data reset')
- print('14. Delete Main <HEAD>')
- print('15. Give owner')
- print('16. Delete 2FA password')
- print('17. Change markup')
- print('----')
- what_i_do = input('Select : ')
- if what_i_do == '1':
- print('----')
- go_num = input('All delete (Y) [Y, N] : ')
- if not go_num == 'N':
- curs.execute(db_change("delete from back"))
- conn.commit()
- print('----')
- try:
- go_num = int(input('Count (100) : '))
- except ValueError:
- go_num = 100
- num = 0
- print('----')
- print('Load...')
- curs.execute(
- db_change(
- "select title from data d "
- "where not exists ("
- "select title from back where link = d.title limit 1"
- ")"
- ""
- )
- )
- title = curs.fetchall()
- print('----')
- print('Rest : ' + str(len(title)))
- print('Start : ' + title[0][0])
- time.sleep(1)
- print('----')
- for name in title:
- num += 1
- if num % go_num == 0:
- print(str(num) + ' : ' + name[0])
- if num % 100 == 0:
- conn.commit()
- curs.execute(db_change("select data from data where title = ?"), [name[0]])
- data = curs.fetchall()
- get_class_render = class_do_render(conn)
- get_class_render.do_render(name[0], data[0][0], 'backlink', '')
- elif what_i_do == '2':
- curs.execute(db_change("delete from other where name = 'recaptcha'"))
- curs.execute(db_change("delete from other where name = 'sec_re'"))
- elif what_i_do == '3':
- print('----')
- user_data = input('IP or Name : ')
- curs.execute(
- db_change(
- "insert into rb (block, end, today, blocker, why, band) "
- "values (?, ?, ?, ?, ?, ?)"
- ),
- [
- user_data,
- 'release',
- get_time(),
- 'tool:emergency',
- '',
- '',
- ]
- )
- curs.execute(db_change("update rb set ongoing = '' where block = ?"), [user_data])
- elif what_i_do == '4':
- print('----')
- host = input('Host : ')
- curs.execute(db_change("update other set data = ? where name = 'host'"), [host])
- elif what_i_do == '5':
- print('----')
- port = int(input('Port : '))
- curs.execute(db_change("update other set data = ? where name = 'port'"), [port])
- elif what_i_do == '6':
- print('----')
- skin = input('Skin name : ')
- curs.execute(db_change("update other set data = ? where name = 'skin'"), [skin])
- elif what_i_do == '7':
- print('----')
- print('1. sha256')
- print('2. sha3')
- print('----')
- what_i_do = input('Select : ')
- print('----')
- user_name = input('User name : ')
- print('----')
- user_pw = input('User password : ')
- if what_i_do == '1':
- hashed = hashlib.sha256(bytes(user_pw, 'utf-8')).hexdigest()
- elif what_i_do == '2':
- if sys.version_info < (3, 6):
- hashed = sha3.sha3_256(bytes(user_pw, 'utf-8')).hexdigest()
- else:
- hashed = hashlib.sha3_256(bytes(user_pw, 'utf-8')).hexdigest()
- else:
- raise ValueError(what_i_do)
- curs.execute(db_change("update user_set set data = ? where id = ? and name = 'pw'"), [
- hashed,
- user_name
- ])
- elif what_i_do == '8':
- print('----')
- new_ver = input('Insert version (0000000) : ')
- if new_ver == '':
- new_ver = '0000000'
- curs.execute(db_change("update other set data = ? where name = 'ver'"), [new_ver])
- elif what_i_do == '9':
- if os.path.exists(os.path.join('data', 'set.json')):
- os.remove(os.path.join('data', 'set.json'))
- elif what_i_do == '10':
- print('----')
- user_name = input('User name : ')
- print('----')
- new_name = input('New name : ')
- curs.execute(
- db_change("update user_set set id = ? where id = ?"),
- [new_name, user_name]
- )
- elif what_i_do == '11':
- if os.path.exists(os.path.join('data', 'mysql.json')):
- os.remove(os.path.join('data', 'mysql.json'))
- elif what_i_do == '12':
- curs.execute(db_change("select count(*) from data"))
- count_data = curs.fetchall()
- if count_data:
- count_data = count_data[0][0]
- else:
- count_data = 0
- curs.execute(db_change('delete from other where name = "count_all_title"'))
- curs.execute(
- db_change(
- 'insert into other (name, data) values ("count_all_title", ?)'
- ),
- [str(count_data)]
- )
- elif what_i_do == '13':
- curs.execute(db_change('delete from cache_data'))
- elif what_i_do == '14':
- curs.execute(db_change('delete from other where name = "head"'))
- elif what_i_do == '15':
- print('----')
- user_name = input('User name : ')
- curs.execute(db_change("update user_set set data = 'owner' where id = ? and name = 'acl'"), [user_name])
- elif what_i_do == '16':
- print('----')
- user_name = input('User name : ')
- curs.execute(db_change('select data from user_set where name = "2fa" and id = ?'), [user_name])
- if curs.fetchall():
- curs.execute(db_change("update user_set set data = '' where name = '2fa' and id = ?"), [user_name])
- elif what_i_do == '17':
- print('----')
- markup = input('Markup name : ')
- curs.execute(db_change("update other set data = ? where name = 'markup'"), [markup])
- else:
- raise ValueError(what_i_do)
- if data_db_load == 'Y':
- conn.commit()
- print('----')
- print('OK')
|