mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 09:43:07 -07:00
- Better checking of based32 encoded Magnet Links to increase robustness
This commit is contained in:
parent
b1126556c0
commit
e2c3e6dbaa
1 changed files with 1 additions and 1 deletions
|
@ -283,7 +283,7 @@ public:
|
||||||
pos = regBase32.indexIn(magnet_uri);
|
pos = regBase32.indexIn(magnet_uri);
|
||||||
if(pos > -1) {
|
if(pos > -1) {
|
||||||
QString found = regBase32.cap(1);
|
QString found = regBase32.cap(1);
|
||||||
if(found.length() > 20) {
|
if(found.length() > 20 && (found.length()*5)%40 == 0) {
|
||||||
sha1_hash sha1;
|
sha1_hash sha1;
|
||||||
sha1.assign(base32decode(regBase32.cap(1).toStdString()));
|
sha1.assign(base32decode(regBase32.cap(1).toStdString()));
|
||||||
hash = misc::toQString(sha1);
|
hash = misc::toQString(sha1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue