写前废话
最近重新研究了一下离线下载,之前搭建过aria2的离线下载,用起来效果不错,可以实现aria2+rclone自动下载资源并上传到onedrive。最近又看到qbittorrent服务器版的,于是就有了这篇文章,下面将会详细记录踩过的坑和实现自动上传功能并自动删除种子及文件的过程
安装qBittorrent-nox
这里说一句,我下的是ubuntu[arm]版的,直接下的是可执行性程序,qbittorrent-nox4.5.1,点击下载
其他版本可以在下面链接下载对应的
https://github.com/userdocs/qbittorrent-nox-static/releases
可以直接在shell终端对应的目录下输入下列命令下载,也可以下载下来上传到服务器
wget "https://pan.imold.wang/aliyun/software/qbit/4.5.1/aarch64-qbittorrent-nox"
赋予qbit权限
chmod a+x aarch64-qbittorrent-nox
保留qbit后台
这里使用screen程序保持qbit后台活动
安装Screen
安装screen使qbittorrent保留后台
ubuntu输入命令
apt-get install screen
Screen创建会话
创建一个名为qbit的会话
screen -S qbit
创建了会话后回车,在这个会话中进入到下载qbit可执行程序的目录,输入下列命令启动qbittorrent
./aarch64-qbittorrent-nox

退出Screen会话窗口
按组合键:Ctrl+a+d, 即可退出screen窗口, 此时,程序仍在后台执行;
查看Screen会话
screen -ls
进入screen某个会话
输入:screen -r 程序进程ID/或者会话名, 返回程序执行进程;
例如,screen -r qbit
进入会话后可以按ctrl+c+k结束会话和窗口
窗口操作
Ctrl+a+w: 展示当前会话中的所有窗口;
Ctrl+a+c: 创建新窗口;
Ctrl+a+n: 切换至下一个窗口;
Ctrl+a+p: 切换至上一个窗口;
Ctrl+a+num: 切换至编号为num的窗口;
Ctrl+a+k: 杀死当前窗口;
Ctrl+a+k:关闭当前窗口,程序后台活动
删除某个会话
screen -S 进程号或者会话名 -X quit
qbit在后台运行后,就可以使用qbit的web ui了,默认端口8080,记得防火墙打开8080端口
默认地址为【http://你的ip:8080】,打开界面如下

修改语言
改成中文方式:左上角设置——>WEB UI——>Language改成中文简体后滑倒下面保存刷新即可

安装配置Rclone
关于rclone挂载的看我另一篇文章,点击直达
自动上传脚本
制作脚本
新建一个qb_auto.sh脚本,按照下面的修改成自己配置,可以下载我的脚本修改
#!/bin/bash
torrent_name=$1
content_dir=$2
root_dir=$3
save_dir=$4
files_num=$5
torrent_size=$6
file_hash=$7
qb_version="4.5.1" # 改成你的qbit版本
qb_username="admin" # qbit用户名
qb_password="adminadmin" # qbit密码
qb_web_url="http://localhost:8080" # qbit webui地址
leeching_mode="true" # 吸血模式,true下载完成后自动删除本地种子和文件
log_dir="/root/qbauto" # 日志输出目录
rclone_dest="onedrive" # rclone配置的储存名
rclone_parallel="32" # qbit上传线程,默认4
auto_del_flag="rclone" # 添加标签或者分类来标识已上传的种子 v4.0.4+版本添加标签“rclone”,低版本通过添加分类“rclone”标识
# 改上面的那些参数即可
if [ ! -d ${log_dir} ]
then
mkdir -p ${log_dir}
fi
version=$(echo $qb_version | grep -P -o "([0-9]\.){2}[0-9]" | sed s/\\.//g)
function qb_login(){
if [ ${version} -gt 404 ]
then
qb_v="1"
cookie=$(curl -i --header "Referer: ${qb_web_url}" --data "username=${qb_username}&password=${qb_password}" "${qb_web_url}/api/v2/auth/login" | grep -P -o 'SID=\S{32}')
if [ -n ${cookie} ]
then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 登录成功!cookie:${cookie}" >> ${log_dir}/autodel.log
else
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 登录失败!" >> ${log_dir}/autodel.log
fi
elif [[ ${version} -le 404 && ${version} -ge 320 ]]
then
qb_v="2"
cookie=$(curl -i --header "Referer: ${qb_web_url}" --data "username=${qb_username}&password=${qb_password}" "${qb_web_url}/login" | grep -P -o 'SID=\S{32}')
if [ -n ${cookie} ]
then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 登录成功!cookie:${cookie}" >> ${log_dir}/autodel.log
else
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 登录失败" >> ${log_dir}/autodel.log
fi
elif [[ ${version} -ge 310 && ${version} -lt 320 ]]
then
qb_v="3"
echo "陈年老版本,请及时升级"
exit
else
qb_v="0"
exit
fi
}
function qb_del(){
if [ ${leeching_mode} == "true" ]
then
if [ ${qb_v} == "1" ]
then
curl -X POST -d "hashes=${file_hash}&deleteFiles=true" "${qb_web_url}/api/v2/torrents/delete" --cookie ${cookie}
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 删除成功!种子名称:${torrent_name}" >> ${log_dir}/qb.log
elif [ ${qb_v} == "2" ]
then
curl -X POST -d "hashes=${file_hash}&deleteFiles=true" "${qb_web_url}/api/v2/torrents/delete" --cookie ${cookie}
else
curl -X POST -d "hashes=${file_hash}&deleteFiles=true" "${qb_web_url}/api/v2/torrents/delete" --cookie ${cookie}
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 删除成功!种子文件:${torrent_name}" >> ${log_dir}/qb.log
echo "qb_v=${qb_v}" >> ${log_dir}/qb.log
fi
else
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 不自动删除已上传种子" >> ${log_dir}/qb.log
fi
}
function rclone_copy(){
if [ ${type} == "file" ]
then
rclone_copy_cmd=$(rclone -v copy --transfers ${rclone_parallel} --log-file ${log_dir}/qbauto_copy.log "${content_dir}" ${rclone_dest}:/qbit/)
elif [ ${type} == "dir" ]
then
rclone_copy_cmd=$(rclone -v copy --transfers ${rclone_parallel} --log-file ${log_dir}/qbauto_copy.log "${content_dir}"/ ${rclone_dest}:/qbit/"${torrent_name}")
fi
}
function qb_add_auto_del_tags(){
if [ ${qb_v} == "1" ]
then
curl -X POST -d "hashes=${file_hash}&tags=${auto_del_flag}" "${qb_web_url}/api/v2/torrents/addTags" --cookie "${cookie}"
elif [ ${qb_v} == "2" ]
then
curl -X POST -d "hashes=${file_hash}&category=${auto_del_flag}" "${qb_web_url}/command/setCategory" --cookie ${cookie}
else
echo "qb_v=${qb_v}" >> ${log_dir}/qb.log
fi
}
if [ -f "${content_dir}" ]
then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 类型:文件" >> ${log_dir}/qb.log
type="file"
rclone_copy
qb_login
qb_add_auto_del_tags
qb_del
# rm -rf ${content_dir}
elif [ -d "${content_dir}" ]
then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 类型:目录" >> ${log_dir}/qb.log
type="dir"
rclone_copy
qb_login
qb_add_auto_del_tags
qb_del
# rm -rf ${content_dir}
else
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 未知类型,取消上传" >> ${log_dir}/qb.log
fi
echo "种子名称:${torrent_name}" >> ${log_dir}/qb.log
echo "内容路径:${content_dir}" >> ${log_dir}/qb.log
echo "根目录:${root_dir}" >> ${log_dir}/qb.log
echo "保存路径:${save_dir}" >> ${log_dir}/qb.log
echo "文件数:${files_num}" >> ${log_dir}/qb.log
echo "文件大小:${torrent_size}Bytes" >> ${log_dir}/qb.log
echo "HASH:${file_hash}" >> ${log_dir}/qb.log
echo "Cookie:${cookie}" >> ${log_dir}/qb.log
echo -e "-------------------------------------------------------------\n" >> ${log_dir}/qb.log
默认上传到你挂在储存的/share/qbit目录下,例如我用的onedrive,文件下载完成后会自动下载到onedrive /share/qbit目录下,需要修改路径的修改脚本里的rclone_copy函数的下面两处内容,如下:

将脚本上传到你的服务器/root目录下,其他目录也可以,自己记住
赋予脚本执行权限
给脚本执行权限命令,下面命令中/root换成你脚本放置的位置
chmod a+x /root/qb_auto.sh
可以到脚本目录下执行一次脚本,日志log默认输出目录/root/qbauto
./qb_auto.sh
配置qbit自动上传
来到qbit设置,下载选项,找到torrent完成时运行外部程序,勾选,填入下面的命令,/root/qb_auto.sh是我脚本的地址,改成你自己的,最后保存即可
bash /root/qb_auto.sh "%N" "%F" "%R" "%D" "%C" "%Z" "%I"

到此已经实现了自动上传的功能,可以下个磁力试试啦
qbit官方的web ui没有适配移动端,下面介绍一下如何给qbit换个web ui主题
qbit更换主题
这里推荐两款主题
一个vuetorrent,github地址,博客网盘直接点击下载
建议qb-web吧,vuetorrent每次换个设备就要重新设置语言很麻烦
下载到服务器上,解压,进入public目录的父目录
然后复制路径,来到上面qbit设置,WEB UI这里,找到使用备用Web UI这里,勾选,然后文件路径改成刚刚复制的

改好的qb-web效果如下

ok,总算码完了,本章就到此结束了,希望给你带来帮助。
Comments 329 条评论
https://ruskamenka.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://thegiftsports.com
https://artisnaples.org/?URL=https%3A%2F%2Fnajlepsieonlinekasino.casino
https://blog.8090rock.com:443/iframe/hatena_bookmark_comment?canonical_uri=https://casinobonusbezvkladu.com
https://jet-links.com/casino-vklad-mobilom_413893.html
https://www.porntypical.com//tex/out.php?s=50,50,50&u=https://profimontaze.sk
https://creatiweb.koobcamp.com/count_url.php?url=profimontaze.sk
https://kaze.wiki/en/wiki/User:WilburMauer974
https://kbi-krd.ru/bitrix/redirect.php?goto=https://thegiftsports.com
https://www.exeed.com/Presentation/ChangeCulture?culture=zh-tw&returnUrl=https%3a%2f%2falphotography.sk
https://bds.fnltd.co.uk/www/delivery/adclick.php?ct=1&bannerid=102&zoneid=0&source=_blank&dest=https://ovocnehracieautomatyzadarmo.com
https://www.haoa123.cn/go.php?url=https://alphotography.sk
https://youmydaddy.com/cgi-bin/at3/out.cgi?s=58&u=https://najlepsieonlinekasino.casino
https://www.genlayn.ru/bitrix/redirect.php?goto=https://casinobonusbezvkladu.com
https://www.youtube.com/redirect?q=https%3A%2F%2Fcasinobonusbezvkladu.com&gl=IE
https://polkagris.nu/wikin/api.php?action=https://zahranicneonlinecasinobonusbezvkladu.com
https://www.newityrealty.com/frame.asp?rid=9872&tablecolor=f3f3f3&bgcolor=2b4163&frameurl=https://ovocnehracieautomatyzadarmo.com
https://issik-kul.ru/go/url=https://ovocnehracieautomatyzadarmo.com
https://idivision.net/bitrix/redirect.php?event1=click_to_call&event2=&event3=&goto=https://najlepsieonlinekasino.casino
https://m.limishop.co.kr/member/login.html?noMemberOrder=&returnUrl=https%3A%2F%2Fasylum94.com
https://sublimer.hatenablog.com/iframe/hatena_bookmark_comment?canonical_uri=https%3A%2F%2Fzahranicneonlinecasinobonusbezvkladu.com
https://ubc-1c.kz:443/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://agentura-hermes.cz/stats/url.asp?url=https%3a%2f%2fcasinobonusbezvkladu.com
https://abordazh.com/bitrix/redirect.php?event1=click_to_call&event2=&event3=&goto=https://ovocnehracieautomatyzadarmo.com
https://services.bizpal-perle.ca/ga.php?utm_md=permit&utm_sr=76006&utm_landing=permit_more_info_url&utm_content=https://najlepsieonlinekasino.casino
https://milana-shoes.ru/bitrix/redirect.php?event1=click_to_call&event2=&event3=&goto=https://casinobonusbezvkladu.com
https://tehno-leader.ru/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://xn—-htbebs5b.xn--p1ai/action.redirect/url/aHR0cHM6Ly96YWhyYW5pY25lb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29t/c3ViYWN0aW9uPXVzZXJpbmZvJnVzZXI9RFdSUmFjaGVsbGU=
https://bibliopilot.ru/bitrix/redirect.php?goto=https://andreabai.com
https://racingmall.com/proxy.php?link=https://andreabai.com
https://adultvirtualworlds.net/xxxvw/out.php?s=100&u=https://andreabai.com
https://nudegrandmasex.com/?url=https://asylum94.com
https://shop.feron.ru/bitrix/redirect.php?goto=https://alphotography.sk
https://yellowheart.kr/bbs/board.php?bo_table=analysis&wr_id=3965
https://www.boobporn.net/bdy/khhy.cgi?fnfd=1&s=65&u=https://thegiftsports.com
https://www.crackacoldone.com/LinkClick.aspx?link=https://asylum94.com
https://gta-gaming.ru/go?https://urocentrum-kosice.sk
https://plu.sh/najlepieonlinekasno85787
https://vet-krasnoarmeysk64.ru/bitrix/redirect.php?goto=https%3A%2F%2Fcasinobonusbezvkladu.com
https://eoklop.Atarget%3D%255C%2522_Blank%255C%2522%2520hrefmailto:e@Ehostingpoint.com/info.php?a[]=%3Ca%20href=https://urocentrum-kosice.sk%3EKas%C3%ADna%20s%20minim%C3%A1lnym%20vkladom%2020%20eur%3C/a%3E%3Cmeta%20http-equiv=refresh%20content=0;url=https://urocentrum-kosice.sk%20/%3E
https://www.montrealentertainment.ca/ad.php?url=korculkovo.sk
<a href=https://bryanskkupit.xyz>Купить Мефедрон, Кокаин</a> – купить закладку мефедрона
https://rosemart.co.kr/shop/proc/indb.cart.tab.php?action=ok&tab=today&type=delete&returnUrl=https://korculkovo.sk
https://hairyrussian.com/link.php?g=37123&cu=aHR0cHM6Ly9vbmxpbmVjYXNpbm9ib251c2JlenZrbGFkdS5jb20&l=block2
https://admin.understand.com/Legacy/ImageBanner.aspx?id=24a63d4d-4084-4979-85e9-d080142f5b15&clickTag=http%3A%2F%2Fcasinobonusbezvkladu.com&target=_blank&customerID=ae53de40-c915-47d0-8d95-fab919e91126
https://shareasale-analytics.com/r.cfm?b=999&u=514792&m=61129&afftrack=[subid_value]&urllink=korculkovo.sk&shrsl_analytics_sscid=31k8%5Fxxhln&shrsl_analytics_sstid=31k8%5Fxxhln
https://www.foto-video.ru/bitrix/rk.php?goto=https://asylum94.com
https://www.honneloeloe.nl/product/22/130/07-20A?ref=https%3a%2f%2fovocnehracieautomatyzadarmo.com
https://www.freecam8.com/external_link/?url=https://profimontaze.sk
https://info-magazin.ru/bitrix/rk.php?goto=https://onlinecasinobonusbezvkladu.com
https://chantik.ru/bitrix/redirect.php?goto=https://najlepsieonlinekasino.casino
https://faber2014.com/feed2js/feed2js.php?src=https%3A%2F%2Fprofimontaze.sk&num=5&date=y&utf=y&css=news_tp&html=y
https://devopsys.ru:443/bitrix/redirect.php?goto=https://onlinecasinobonusbezvkladu.com
https://beloshveikaprom.ru/bitrix/redirect.php?goto=https://alphotography.sk
https://www.kilomatures.com/movies/go.php?id=721848_1&url=https://andreabai.com
https://portalia.dk/index.php?linkid=158&link=https://asylum94.com
https://www.visitchattanooga.com/plugins/crm/count/?key=4_800&type=client&val=eyJrZXkiOiI0XzgwMCIsInJlZGlyZWN0IjoiaHR0cHM6Ly96YWhyYW5pY25lb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29tIn0
https://analbokep.xyz/get_video/aHR0cHM6Ly9hcmd1cy1wby5zaw/
https://www.apkmirror.com/wp-content/themes/APKMirror/ap_resize/ap_resize.php?src=https://urocentrum-kosice.sk
https://www.idbank.am/bitrix/redirect.php?goto=https://alphotography.sk
https://kruizai.saitas.lt/kruizai/nusiusk_draugui.php?url=https://asylum94.com
https://my-mart.kz/bitrix/rk.php?goto=https://casinobonusbezvkladu.com
<a href=https://kostromakupit.xyz>Купить Мефедрон, Кокаин</a> – наркошопы тг
https://www.shinatut.ru/bitrix/rk.php?goto=https://andreabai.com
https://catalogue.univ-reunion.fr:8991/goto/https://najlepsieonlinekasino.casino
https://ivanovo-trikotag.ru/bitrix/redirect.php?goto=https://alphotography.sk
https://asofood.com/at/filter/agecheck/confirm?redirect=https://ovocnehracieautomatyzadarmo.com
https://smartlink.linkmydeals.com/?account_id=340&showMsg=1&network=&url=https://thegiftsports.com
https://www.casamontanes.es/la-noche-del-centenario-2/
https://conser.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://asylum94.com
https://www.escortlux.at/author/anglean2688/
https://barbersindustry.ru/bitrix/redirect.php?goto=https://asylum94.com
https://www.nudeblackporn.com/aer.php?&u=https://asylum94.com
https://mebelicoopt.ru/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://ots.pl.ua/bitrix/redirect.php?goto=http%3A%2F%2Fonlinecasinobonusbezvkladu.com
https://www.m-sklad65.ru/bitrix/redirect.php?goto=https://urocentrum-kosice.sk
https://xxx-files.org/proxy.php?link=https://casinobonusbezvkladu.com
https://krasnogorsk-ims.ru:443/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://ffm-forum.com/proxy.php?link=https://thegiftsports.com
https://lenavto02.ru/bitrix/redirect.php?goto=https://argus-po.sk
https://tschool1.ru/bitrix/redirect.php?goto=https://zahranicneonlinecasinobonusbezvkladu.com
https://www.mojagaraza.rs/widget/pa/reviews?url=https://casinobonusbezvkladu.com
https://api.euroman.dk/paywall/update?&siteAlias=euroman&&siteId=3&contentUrl=https://najlepsieonlinekasino.casino
https://o-gogo.ru/bitrix/redirect.php?goto=https://thegiftsports.com
https://gatex.pro/bitrix/redirect.php?goto=https://zahranicneonlinecasinobonusbezvkladu.com
https://termokonteiner.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://casinobonusbezvkladu.com
https://www.feiyu2.com//wp-content/themes/dxcms/inc/go.php?url=https://profimontaze.sk
https://links.giveawayoftheday.com/external?url=andreabai.com
https://voshod-news.ru/voshodgallery/aHR0cHM6Ly9hcmd1cy1wby5zaw==
https://intercom-net.ru/redirect?url=https://profimontaze.sk
https://www.art-graphic.com/aubergedulac/livredor/signatux/redirect.php?p=https%3A%2F%2Fthegiftsports.com
https://ladooshki.com/bitrix/redirect.php?goto=https://casinobonusbezvkladu.com
https://immo-creuse.fr/redirect.php?link=https://andreabai.com
https://www.gwynjonesschool.co.uk/walthamforest/primary/gwynjones/arenas/websitecontent/calendar/calendar?calendardate=1499036400000&calendarview=agendaday&backto=https://zahranicneonlinecasinobonusbezvkladu.com
https://whois7.ru/?q=thegiftsports.com
https://www.tl-tur.ru/modules/popup/cheker.php?mobile=yes&site_change=small&url=najlepsieonlinekasino.casino/
https://www.sinarrakyatonline.com/2026/01/04/anggota-dprd-bartim-tinjau-langsung-debit-air-sungai-di-desa-kambitin/
https://www.jazz88.org/Player.asp?f=IA061519Wonderspaces&p=https://argus-po.sk
https://sst45.ru/bitrix/redirect.php?goto=https://korculkovo.sk
https://www.rosario.kr/bbs/skin/ggambo_link/hit.php?sitelink=https%3A%2F%2Fprofimontaze.sk&id=bbs6_5&page=1&sn1=&divpage=1&sn=off&ss=on&sc=on&select_arrang
https://vologda-ims.ru:443/bitrix/redirect.php?goto=https://casinobonusbezvkladu.com
https://focusis.co.kr/member/login.html?noMemberOrder&returnUrl=http%3a%2f%2fasylum94.com
https://wiki.newtown.at/api.php?action=https://asylum94.com
<a href=https://taganrogkupit.xyz>Купить Мефедрон, Кокаин</a> – купить наркотики цена
https://suzuki.rmk.co.id/news/redirect?link=https://urocentrum-kosice.sk
https://kartasofta.ru/bitrix/redirect.php?goto=https://andreabai.com
https://translate.lotros.ru/redirect?url=https://korculkovo.sk
https://www.ewbankauctions.co.uk/SEP14F-lot-268-Collection-of-jewellery-to-include-Victorian-banded-agate-pendant?auction_id=222&department_id=&department_url=aHR0cHM6Ly96YWhyYW5pY25lb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29t&view=lot_detail
https://amateurmilf.xyz/goto/?u=https://casinobonusbezvkladu.com
https://ex.uel.ru/bitrix/redirect.php?goto=https://andreabai.com
https://www.trevaskisfarm.co.uk/?URL=https://korculkovo.sk
https://www.laselection.net/redirsec.php3?cat=actu&url=onlinecasinobonusbezvkladu.com/
https://a.probrewer.com/link.php?rdr=z&l=https%3A%2F%2Fnajlepsieonlinekasino.casino&p=link&t=outbound&s=email&w=27625&u=0&i=PBMail
https://ecoetno.ru/bitrix/redirect.php?goto=https://asylum94.com
https://cmaker.hannam.ac.kr/index.php?module=xn_sso2013&act=procXn_sso2013LogoutFromMySpace&return_url=https://urocentrum-kosice.sk
https://solar-go.de/https://urocentrum-kosice.sk
https://Nosoloesmarket3Er.Eces.Si.V.E.X.G.Z@Leanna.Langton@C.O.Nne.C.T.Tn.Tu@Go.O.Gle.Email.2.5C5Cn1@Sarahjohnsonw.Estbrookbertrew.E.R@Hu.Fe.Ng.K.Ua.Ngniu.Bi..Uk41@Www.Zanele@Silvia.Woodw.O.R.T.H@Veda.Lafferty@S.M.It.Hwangkangfengyufeng@Hu.Fen.Gk.Uang.Ni.U.B.I.Xn–.U.K.6.2@Jo.Hnsdfsdff.Dsgdsgdshdghsdhdhfd@R.Eces.Si.V.E.X.G.Z@Leanna.Langton@termokonteiner.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://casinobonusbezvkladu.com
https://www.santiagoposteguillo.es/testimonial-quotes/
https://ticketonline.cinerive.com/Cinerive/Show/474250?BackLink=https://asylum94.com
https://xn--7ck5at2g.jp/?wptouch_switch=desktop&redirect=//ovocnehracieautomatyzadarmo.com/
https://esenlervizyonhaber.com/advertising.php?l=https://urocentrum-kosice.sk
https://orelrsp.ru/redirect?url=https://argus-po.sk
https://adserver.energie-und-management.de/revive/www/delivery/ck.php?ct=1&oaparams=2__bannerid=315__zoneid=14__cb=e456eb5f52__oadest=https://zahranicneonlinecasinobonusbezvkladu.com
https://www.strikeking.com/en/login/?returnurl=https%3A%2F%2Fargus-po.sk
https://genius.it/profimontaze.sk/
https://kwork.ru.xx3.kz/go-open.php?url=aHR0cHM6Ly96YWhyYW5pY25lb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29t
https://intranet.younetco.com/bitrix/redirect.php?goto=https://korculkovo.sk
https://yaogorodnik.ru/go.php?url=http%3A%2F%2Fargus-po.sk
https://link.oszk.hu/uri/uri.php?URI=https://onlinecasinobonusbezvkladu.com
https://www.hi-av.net/adserver/www/delivery/ck.php?ct=1&oaparams=2__bannerid=212__zoneid=22__cb=97b76671f5__maxdest=https://andreabai.com
https://www.sweethereafter.ca/?URL=https://urocentrum-kosice.sk
https://danilo-fischer.de/api.php?action=https://asylum94.com
https://sprinthost.ru/away?u=https://argus-po.sk
https://75.faranharbarius.com/index/c1?diff=0&source=og&campaign=16917&content=&clickid=9ymbp6hz0jpb0x49&aurl=https%3A%2F%2Fkbbl9c_zx_rw2_c-9rw.3pco.ourwebpicvip.comMorgan823%40meng.luc.h.e.n.4%40hu.fe.ng.k.Ua.ngniu.bi..uk41%40Www.Zanele%40silvia.woodw.o.r.t.h%40H.att.ie.M.c.d.o.w.e.ll2.56.6.3%40burton.rene%40s.jd.u.eh.yds.g.524.87.59.68.4%40p.ro.to.t.ypezpx.h%40trsfcdhf.hfhjf.hdasgsdfhdshshfsh%40hu.fe.ng.k.ua.ngniu.bi..uk41%40Www.Zanele%40silvia.woodw.o.r.t.h%40Shasta.ernest%40sarahjohnsonw.estbrookbertrew.e.r%40hu.fe.ng.k.Ua.ngniu.bi..uk41%40Www.Zanele%40silvia.woodw.o.r.t.h%40i.nsult.i.ngp.a.T.l%40okongwu.chisom%40www.sybr.eces.si.v.E.x.g.z%40leanna.langton%40Sus.Ta.i.n.j.ex.k%40blank.e.tu.y.z.s%40m.i.scbarne.s.w%40e.xped.it.io.n.eg.d.g%40burton.rene%40e.xped.it.io.n.eg.d.g%40burton.rene%40Gal.EHi.Nt.on78.8.27%40dfu.s.m.f.h.u8.645v.nb%40WWW.EMEKAOLISA%40carlton.theis%40silvia.woodw.o.r.t.h%40s.jd.u.eh.yds.g.524.87.59.68.4%40c.o.nne.c.t.tn.tu%40Go.o.gle.email.2.%5Cn1%40sarahjohnsonw.estbrookbertrew.e.r%40hu.fe.ng.k.Ua.ngniu.bi..uk41%40Www.Zanele%40silvia.woodw.o.r.t.h%40Www.canallatinousa%40e.xped.it.io.n.eg.d.g%40burton.rene%40e.xped.it.io.n.eg.d.g%40burton.rene%40N.J.Bm.Vgtsi.O.Ekl.A.9.78.6.32.0%40sageonsail%40yf0d0l56lls-9rw.3pco.ourwebpicvip.comN.3%40profimontaze.sk&pushMode=popup
https://order.glarysoft.com/order/checkout.php?PRODS=4691139&QTY=1&CARD=1&CART=1&DCURRENCY=EUR&AFFILIATE=49184&AFFSRC=G247&COUPON=GUP45&ORDERSTYLE=mbWwnJW5rn4%3D&SHOPURL=https%3A%2F%2Fandreabai.com&__c=1
https://winstarcuttingtools.ru/bitrix/redirect.php?goto=https://argus-po.sk
https://rclub.one/bitrix/redirect.php?goto=https://thegiftsports.com
https://se7en.ru/r.php?https://onlinecasinobonusbezvkladu.com
https://danvik.ru:443/bitrix/redirect.php?goto=https://urocentrum-kosice.sk
https://kinobusiness.com/bitrix/redirect.php?event1=news_out&event2=%2Fupload%2Fiblock%2F162%2FAvanpost-_-reliz.docx&event3=%D0%90%D0%B2%D0%B0%D0%BD%D0%BF%D0%BE%D1%81%D1%82+-+%D1%80%D0%B5%D0%BB%D0%B8%D0%B7.docx&goto=https://argus-po.sk
https://zgaming-pro.com/go?https://thegiftsports.com
https://www.coloss.top/cgi-bin/out.cgi?id=jugrid&url=https://profimontaze.sk
https://solidstatepharma.com/?URL=andreabai.com
https://www.sanatatur.ru/forum/go.php?https://najlepsieonlinekasino.casino
<a href=https://dzerzhinskkupit.xyz>Купить Мефедрон, Кокаин</a> – трамадол 100 мг купить
https://pbprog.ru/bitrix/redirect.php?goto=https://urocentrum-kosice.sk
https://center-pmpk.ru/bitrix/redirect.php?event1=click_to_call&event2=&event3=&goto=https://ovocnehracieautomatyzadarmo.com
https://cailuongvietnam.com/newclvn/index.php?language=vi&nv=news&nvvithemever=d&nv_redirect=aHR0cHM6Ly9hbmRyZWFiYWkuY29t
https://grupoempresarialryo.com.mx/por-que-usar-profilaxis-antibiotica
https://vodexpert.ru/links.php?go=https%3A%2F%2Furocentrum-kosice.sk
https://www.tradeboss.com/go.cgi?https://onlinecasinobonusbezvkladu.com
https://orangeskin.com/?URL=https://alphotography.sk
https://study.bestkeratin.ru/bitrix/redirect.php?goto=https://korculkovo.sk
https://www.kalapaikka.net/linkout.asp?url=urocentrum-kosice.sk&id=3383
https://gos.news/bitrix/click.php?goto=https://ovocnehracieautomatyzadarmo.com
https://integral-sv.ru/action.redirect/url/aHR0cHM6Ly9wcm9maW1vbnRhemUuc2s
https://sso.ucsb.edu/cas/logout?service=https://andreabai.com
https://www.dawawas.de/settings/language/l/de/r/https:%7C%7Candreabai.com%7Cfoto%7Camigo-wallpaper%7Cpsm6fgqpuhmf%7C
https://ucstroitel.ru/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://www.miksik.ru/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://multiflow.ru/bitrix/redirect.php?goto=https://najlepsieonlinekasino.casino
https://brief.ly/links2tabs/?toc=toc&title=name.ly+-+all+your+sites+under+one+jingling+address&description=references+1+-+3+for+green+hosting&url1=https://profimontaze.sk
https://images.google.com.br/url?q=https://profimontaze.sk
https://www.estaxi.ru/bitrix/redirect.php?goto=https://thegiftsports.com
https://lepetite.es/hello-world/
https://www.bebaime.com/redirect/?clientId=6&client=active&url=http%3A%2F%2Furocentrum-kosice.sk
https://forums.cardhunter.com/proxy.php?link=https://casinobonusbezvkladu.com
https://www.rentonjournal.com/viewblog.php?url=https://onlinecasinobonusbezvkladu.com
https://woodspock.com%2F__media__%2Fjs%2Fnetsoltrademark.php%3Fd=p.r.os.p.e.r.les.c@pezedium.free.fr/?a[]=%3Ca%20href=https://urocentrum-kosice.sk%3EKas%C3%ADna%20s%20minim%C3%A1lnym%20vkladom%2020%20eur%3C/a%3E%3Cmeta%20http-equiv=refresh%20content=0;url=https://urocentrum-kosice.sk%20/%3E
https://viralurl.com/surbl.php?url=https://thegiftsports.com
https://ckplus.ru/bitrix/redirect.php?goto=https://thegiftsports.com
https://bbs.hgyouxi.com/kf.php?u=https://profimontaze.sk
https://scannerguys.com.au/passu.aspx?urlabs=korculkovo.sk&url=000000
https://delcom72.ru/bitrix/redirect.php?goto=https://zahranicneonlinecasinobonusbezvkladu.com
https://ae-pro.ru:443/bitrix/redirect.php?goto=https://profimontaze.sk
https://ad.charltonmedia.com/openx/www/delivery/ck.php?ct=1&oaparams=2__bannerid%3D1241__zoneid%3D3__source%3Dap__cb%3D072659fd39__oadest%3Dhttps%3A%2F%2Fthegiftsports.com
https://www.site.guide/Service/AppData/Misc/redirection_hint.php?lang=de&url=https%3A%2F%2Fcasinobonusbezvkladu.com
https://inetility.com/st-manager/click/track?id=5450&type=raw&url=https://thegiftsports.com
https://topalovgroup.ru/bitrix/rk.php?goto=https://argus-po.sk
https://www.saglikeczanesi.com.tr/link.php?marka=Kizir%20Software%20Designer&url=andreabai.com
https://mfck.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://onlinecasinobonusbezvkladu.com
https://www.smr-automotive.com/cookie-consent?channels=all&referer=https://profimontaze.sk
https://vshm.ru/bitrix/redirect.php?goto=https://najlepsieonlinekasino.casino
https://xn--cksr0a07jh1a.yygame.tw/home.php?mod=space&uid=26008&do=profile&from=space
https://smauthex.utc.com/forms/submitusernamev1.jsp?target=https://najlepsieonlinekasino.casino
<a href=https://sochikupit.xyz>Купить Мефедрон, Кокаин</a> – где заказать наркотики
https://cilitiantang.co/go/?url=aHR0cHM6Ly96YWhyYW5pY25lb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29t
https://www.feedo.net/FeedoIFrame/AdvShow.aspx?AdvID=12&URL=https%3a%2f%2fasylum94.com
https://www.visitchattanooga.com/plugins/crm/count/?key=4_800&type=client&val=eyJrZXkiOiI0XzgwMCIsInJlZGlyZWN0IjoiaHR0cHM6Ly9hbmRyZWFiYWkuY29tIn0
https://omegatest.ru/go.php?url=%2F%2Fonlinecasinobonusbezvkladu.com
https://muabanplus.com/proxy.php?link=https://urocentrum-kosice.sk
https://mesaboogie.ru/bitrix/redirect.php?goto=https://zahranicneonlinecasinobonusbezvkladu.com
https://otshelniki.com/redirect/?to=aHR0cHM6Ly9jYXNpbm9ib251c2JlenZrbGFkdS5jb20
https://aiz.biz/cutlinks/rank.php?url=https://thegiftsports.com
https://www.oldervagina.com/cgi-bin/a2/out.cgi?link=tmx1x9x636106&u=https://korculkovo.sk
https://www.zensa.com.br/LanguageSwitcher/switchLang/pt-Br/aHR0cHM6Ly91cm9jZW50cnVtLWtvc2ljZS5zaw
https://onelink-nu.vercel.app/1?data=eyJuIjoiU29lIiwiZCI6Ik5pY2UgdG8gbWVldCB5b3UgOikiLCJpIjoiaHR0cHM6Ly9vbmxpbmVjYXNpbm9ib251c2JlenZrbGFkdS5jb20iLCJmIjoiIiwidCI6Imh0dHBzOi8vb25saW5lY2FzaW5vYm9udXNiZXp2a2xhZHUuY29tIiwiaWciOiIiLCJnaCI6IiIsInRnIjoiIiwibCI6IiIsImUiOiIiLCJ3IjoiIiwieSI6IiIsImxzIjpbXX0=
https://www.agora.at/?URL=https://argus-po.sk
https://www.sidvalleyhotel.co.uk/adredir.asp?target=https://profimontaze.sk?target=https://profimontaze.sk
https://www.riverturn.com/?URL=https://korculkovo.sk
https://pritvor.kz/bitrix/rk.php?goto=https://zahranicneonlinecasinobonusbezvkladu.com
https://senamoto.ru/bitrix/redirect.php?goto=https://onlinecasinobonusbezvkladu.com
https://www.quicket.co.ke/account/authentication/login.aspx?returnurl=https://onlinecasinobonusbezvkladu.com
https://bbs.landingbj.com/frame.jsp?isFrame=y&mainUrl=https://alphotography.sk
https://triton-import.ru:443/bitrix/redirect.php?goto=https://thegiftsports.com
https://businessrost.ru/bitrix/redirect.php?goto=http%3A%2F%2Fandreabai.com
https://www.mc-evromed.ru/bitrix/rk.php?goto=https://casinobonusbezvkladu.com
https://gamai.net/bitrix/redirect.php?goto=https://andreabai.com
https://www.allods.net/redirect/profimontaze.sk
https://darito.ru/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://forum.rheuma-online.de/proxy.php?link=https://alphotography.sk
https://testpizza.ru/redirect?url=https://andreabai.com
https://www.milfpornmpegs.com/cgi-bin/at3/out.cgi?id=84&tag=top&trade=https://andreabai.com
https://www.yigujin.cn/go/?url=ovocnehracieautomatyzadarmo.com
https://e23.dk/w/api.php?action=https://thegiftsports.com
https://tribelio.app/t/tbyvu8h2m/unilink?link=https://zahranicneonlinecasinobonusbezvkladu.com
https://my-mart.com.kz/bitrix/rk.php?goto=https://urocentrum-kosice.sk
https://adv.messaggerosantantonio.it/banners/www/delivery/ck.php?ct=1&oaparams=2__bannerid%3D345__zoneid%3D3__cb%3Ddbb1981de7__oadest%3Dhttps%3A%2F%2Fargus-po.sk
https://aesearch.americaneagle.com/sites/nycdoe/link.aspx?id=d2205acc-836b-43ac-b58f-050d1b20fd60&q=https%3A%2F%2Fasylum94.com&i=1&pk=6e03d250-d646-4d16-8b27-df47415478d3&mlt
https://koles-mnogo.ru/bitrix/redirect.php?goto=https://korculkovo.sk
https://runail.com/bitrix/redirect.php?goto=https://ovocnehracieautomatyzadarmo.com
https://investinsaratov.ru/bitrix/redirect.php?event1=&event2=&event3=&goto=https://urocentrum-kosice.sk
https://22opt.ru/bitrix/redirect.php?goto=https://asylum94.com
https://dimonvideo.ru/go/?https://onlinecasinobonusbezvkladu.com
https://www.shevronoff.ru/bitrix/rk.php?goto=https://alphotography.sk
https://www.trege-gift.ru/bitrix/rk.php?goto=https://asylum94.com
<a href=https://tverkupit.xyz>Купить Мефедрон, Кокаин</a> – куплю коноплю спб