Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hudbt] (testing) Exception (hudbt): Relogin failed: Parse error #15304

Closed
3 tasks done
Aicnal opened this issue May 11, 2024 · 25 comments
Closed
3 tasks done

[hudbt] (testing) Exception (hudbt): Relogin failed: Parse error #15304

Aicnal opened this issue May 11, 2024 · 25 comments
Assignees

Comments

@Aicnal
Copy link

Aicnal commented May 11, 2024

Have you checked our Troubleshooting page for your issue?

  • I have checked the Troubleshooting page

Is there already an issue for your problem?

  • I have checked older issues, open and closed

Have you read our Contributing Guidelines?

  • I have read the Contributing Guidelines

Environment

05-12 08:53:24 Info Starting Jackett v0.21.2580
05-12 08:53:25 Info Environment version: 6.0.29 (C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\)
05-12 08:53:25 Info OS version: Microsoft Windows NT 10.0.22635.0 (64bit OS)
05-12 08:53:25 Info Jackett variant: CoreWindows
05-12 08:53:25 Info Running in Docker: No
05-12 08:53:25 Info ThreadPool MaxThreads: 1023 workerThreads, 1000 completionPortThreads
05-12 08:53:25 Info App config/log directory: C:\ProgramData\Jackett
05-12 08:53:25 Info Using proxy: Disabled
05-12 08:53:25 Info Using FlareSolverr: No
05-12 08:53:25 Info Using HTTP Client: HttpWebClient2

Description

I try to write a new yaml for HUDBT(蝴蝶).However, after the first time I log in successfully, it can't search.When the next time I rewrited the yaml, it even couldn't login on.
Blow is the yaml for HUDBT.

hudbt
---
id: hudbt
name: HUDBT(蝴蝶)
description: "HUDBT is a CHINESE Private Torrent Tracker for HD MOVIES / TV"
language: zh-CN
type: private
encoding: UTF-8
links:
  - https://hudbt.hust.edu.cn/

caps:
  categorymappings:
    - {id: 401, cat: Movies, desc: "Movies/电影"}
    - {id: 402, cat: TV, desc: "TV Series/剧集"}
    - {id: 403, cat: TV, desc: "TV Shows/综艺"}
    - {id: 404, cat: TV/Documentary, desc: "Documentaries/纪录片"}
    - {id: 405, cat: TV/Anime, desc: "Animations/动漫"}
    - {id: 406, cat: Audio/Video, desc: "Music Videos/音乐"}
    - {id: 407, cat: TV/Sport, desc: "Sports/体育"}
    - {id: 408, cat: PC, desc: "Software/软件"}
    - {id: 409, cat: PC/Games, desc: "Games/游戏"}
    - {id: 411, cat: Books, desc: "Books/纪录片"}
    - {id: 410, cat: Other, desc: "Other/其他"}

  modes:
    search: [q]
    tv-search: [q, season, ep, imdbid, doubanid]
    movie-search: [q, imdbid, doubanid]
    music-search: [q]

settings:
  - name: username
    type: text
    label: Username
  - name: password
    type: password
    label: Password
  - name: freeleech
    type: checkbox
    label: Search freeleech only
    default: false
  - name: sort
    type: select
    label: Sort requested from site
    default: 4
    options:
      4: created
      7: seeders
      5: size
      1: title
  - name: type
    type: select
    label: Order requested from site
    default: desc
    options:
      desc: desc
      asc: asc
  - name: info_tpp
    type: info
    label: Results Per Page
    default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
  - name: info_activity
    type: info
    label: Account Inactivity
    default: "Account retention rules:<ol><li>Veteran User and above will be retained forever</li><li>Elite User and above will not be deleted after parking (in the control panel)</li><li>Users with a parked account who do not log in for 240 consecutive days will be deleted</li><li>Users with non-parked account will be deleted if they do not log in for 120 consecutive days</li><li>Users with no traffic (that is, upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days, or if the registration time reaches 60 days.</li></ol>"

login:
  path: login.php
  method: form
  form: form[action="takelogin.php"]
  captcha:
    type: image
    selector: img[alt="CAPTCHA"]
    input: imagestring
  inputs:
    secret: ""
    username: "{{ .Config.username }}"
    password: "{{ .Config.password }}"
    logout: ""
    securelogin: ""
    ssl: yes
    trackerssl: yes
  error:
    - selector: td.embedded:has(h2:contains("失败"))
  test:
    path: index.php

search:
  paths:
    # https://tjupt.org/torrents.php?incldead=0&spstate=0&picktype=0&inclbookmarked=0&search=&search_area=0&search_mode=0
    - path: torrents.php
  inputs:
    $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
    # currently supports only one query id at one time.
    search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }} {{ else }}{{ .Keywords }}{{ end }}{{ if .Query.DoubanID }}{{ .Query.DoubanID }}{{ else }}{{ end }}"
    # 0 incldead, 1 active, 2 dead
    incldead: 0
    # 0 all, 1 normal, 2 popular, 3 classic, 4 recomended, 5 0day, 6 imdb top 250
    picktype: 0
    # 0 all, 1 normal, 2 free, 3 2x, 4 2xfree, 5 50%, 6 2x50%, 7 30%, 8 special offer, 9 all promotions
    spstate: "{{ if .Config.freeleech }}9{{ else }}0{{ end }}"
    # 0 title, 1 descr, 2 subtitltes, 3 uploader, 4 imdburl
    search_area: "{{ if .Query.IMDBID }}4{{ else }}{{ end }}{{ if .Query.DoubanID }}1{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }}{{ else }}0{{ end }}"
    # 0 AND, 1 OR, 2 exact
    search_mode: 0
    sort: "{{ .Config.sort }}"
    type: "{{ .Config.type }}"
    notnewword: 1

  rows:
    selector: table.torrents > tbody > tr:has(table.torrentname)

  fields:
    category:
      selector: a[href*="cat="]
      attribute: href
      filters:
        - name: querystring
          args: cat
    title_default:
      selector: a[href^="details.php?id="]
    title:
      selector: a[title][href^="details.php?id="]
      attribute: title
      optional: true
      default: "{{ .Result.title_default }}"
      filters:
        - name: re_replace
          args: ["^\\[([^\\]]+)\\]\\[([^\\]]+)\\]\\[([^\\]]+)\\](.*)$", "$3 [$1][$2]$4"]
    details:
      selector: a[href^="details.php?id="]
      attribute: href
    download:
      selector: a[href^="download.php?id="]
      attribute: href
    imdbid:
      selector: a[href*="imdb.com/title/tt"]
      attribute: href
    date_elapsed:
      # time type: time elapsed (default)
      selector: td:nth-child(4) > span[title]
      attribute: title
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-dd HH:mm:ss zzz"
    date_added:
      # time added
      selector: td:nth-child(4):not(:has(span))
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-ddHH:mm:ss zzz"
    date:
      text: "{{ if or .Result.date_elapsed .Result.date_added }}{{ or .Result.date_elapsed .Result.date_added }}{{ else }}now{{ end }}"
    size:
      selector: td:nth-child(5)
    seeders:
      selector: td:nth-child(6)
    leechers:
      selector: td:nth-child(7)
    grabs:
      selector: td:nth-child(8)
    downloadvolumefactor:
      case:
        font.free: 0
        font.twoupfree: 0
        font.halfdown: 0.5
        font.twouphalfdown: 0.5
        font.thirtypercent: 0.3
        "*": 1
    uploadvolumefactor:
      case:
        font.twouphalfdown: 2
        font.twoupfree: 2
        font.twoup: 2
        "*": 1
    minimumratio:
      text: 0.8
    description:
      selector: td:nth-child(2)
      remove: a, b, font, img, span
# NexusPHP HUDBT自优化版本 2013-05-13

Logged Error Messages

05-11 23:21:29 Info Starting Jackett v0.21.2580
05-11 23:21:30 Info Environment version: 6.0.29 (C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\)
05-11 23:21:30 Info OS version: Microsoft Windows NT 10.0.22635.0 (64bit OS)
05-11 23:21:30 Info Jackett variant: CoreWindows
05-11 23:21:30 Info Running in Docker: No
05-11 23:21:30 Info ThreadPool MaxThreads: 1023 workerThreads, 1000 completionPortThreads
05-11 23:21:30 Info App config/log directory: C:\ProgramData\Jackett
05-11 23:21:30 Info Using proxy: Disabled
05-11 23:21:30 Info Using FlareSolverr: No
05-11 23:21:30 Info Using HTTP Client: HttpWebClient2
05-11 23:21:30 Info Loading Native indexers ...
05-11 23:21:30 Info Loaded 72 Native indexers.
05-11 23:21:30 Info Loading Cardigann indexers from: C:\ProgramData\Jackett\cardigann\definitions\, C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\Definitions
05-11 23:21:30 Info Loaded 540 Cardigann indexers.
05-11 23:21:30 Info Loaded 612 indexers in total
05-11 23:21:30 Info Adding aggregate indexer ('all' indexer) ...
05-11 23:21:31 Info Adding filter indexer ('type:public' indexer) ...
05-11 23:21:31 Info Adding filter indexer ('type:private' indexer) ...
05-11 23:21:31 Info Adding filter indexer ('type:semi-public' indexer) ...
05-11 23:21:31 Info Jackett startup finished in 1.683 s
Hosting environment: Production
Content root path: C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\Content
Now listening on: http://127.0.0.1:9117
Application started. Press Ctrl+C to shut down.
05-11 23:21:36 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:21:36 Info CardigannIndexer(hudbt): Relogin required
05-11 23:21:37 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
05-11 23:21:37 Error Error on 20240511232137 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





05-11 23:21:37 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

05-11 23:22:23 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:22:23 Info CardigannIndexer(hudbt): Relogin required
05-11 23:22:24 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
05-11 23:22:24 Error Error on 20240511232224 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





05-11 23:22:24 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

05-11 23:23:50 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:23:50 Info CardigannIndexer(hudbt): Relogin required
05-11 23:23:50 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
05-11 23:23:50 Error Error on 20240511232350 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





05-11 23:23:50 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

05-11 23:24:38 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:24:38 Info CardigannIndexer(hudbt): Relogin required
05-11 23:24:39 Info Test search in HUDBT(蝴蝶) => Found 0 releases [418ms]
05-11 23:24:39 Error System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.

[v0.21.2580.0] System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 330
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

05-11 23:24:52 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:24:52 Info CardigannIndexer(hudbt): Relogin required
05-11 23:24:52 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
05-11 23:24:52 Error Error on 20240511232452 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





05-11 23:24:52 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

05-11 23:24:54 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:24:54 Info CardigannIndexer(hudbt): Relogin required
05-11 23:24:54 Info Test search in HUDBT(蝴蝶) => Found 0 releases [369ms]
05-11 23:24:54 Error System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.

[v0.21.2580.0] System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 330
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 61

05-11 23:25:46 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:25:46 Info CardigannIndexer(hudbt): Relogin required
05-11 23:25:46 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
05-11 23:25:46 Error Error on 20240511232546 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





05-11 23:25:46 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 61

05-11 23:25:48 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
05-11 23:25:48 Info CardigannIndexer(hudbt): Relogin required
05-11 23:25:48 Info Test search in HUDBT(蝴蝶) => Found 0 releases [410ms]
05-11 23:25:48 Error System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.

[v0.21.2580.0] System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 330
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 61

Screenshots

No response

@Aicnal
Copy link
Author

Aicnal commented May 11, 2024

When it loged successfully, the urls showed redirected error.
image

@garfield69
Copy link
Contributor

The indexer recognises that the search query was redirected to the login page and attempts an automatic login, however, the indexer then recognises that the login page contains a captcha request, and thus aborts the automatic login.
You need to use your jackett dashboard to edit the hudbt config and fill in the captcha text (assuming that the config page successfully presents a captcha image).
Then you should be good to go.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

The indexer recognises that the search query was redirected to the login page and attempts an automatic login, however, the indexer then recognises that the login page contains a captcha request, and thus aborts the automatic login. You need to use your jackett dashboard to edit the hudbt config and fill in the captcha text (assuming that the config page successfully presents a captcha image). Then you should be good to go.

Thanks for your answer. However, the first time I login in, the test is passed and I turely filled the captche text.
As you can see, the next time you try to rewrite the captche text, the status of the test turned to wrong.
41ae7e7fd3240e2e408a2ea5e846ee7
b57fd709d0053a39dcb7ecacd920047
96e9531d6c61701b1c003798faf8923

@garfield69
Copy link
Contributor

your example shows that you entered the wrong captcha text, you entered F3N2A2 instead of F3N2A7
when that happens, you need to close the config and edit afresh, in order to load a new captcha image.

@ilike2burnthing
Copy link
Contributor

If the indexer accepted the wrong captcha, then it seems the test path and error selector need updated.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

your example shows that you entered the wrong captcha text, you entered F3N2A2 instead of F3N2A7 when that happens, you need to close the config and edit afresh, in order to load a new captcha image.

Sorry, to replay the error, I del the json of HUDBT.
b2a7e9bb641ac76b0b502e70caddf06
As you can see, the first time when I added HUDBT as a new indexer. The Jackett showed that the test is passed.
b18386884edb76fcc03ce7ec400ff7b
But the next time when I tried to test the connection by hand, the doc showed Parse error.
5e5fb9127b396b4ce42fb33f5025152
If you tried another times, it showed Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.
And that made me really confused.
4ac7b9101cc5037a71aceb7f7b8ce71

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

If the indexer accepted the wrong captcha, then it seems the test path and error selector need updated.

Thanks. To be honest, I tried for many times.
:)sad

@ilike2burnthing
Copy link
Contributor

Delete the indexer, restart Jackett, enabled enhanced logging, add the indexer, perform a test, provide us with the enhanced log - https://github.com/Jackett/Jackett/wiki/Troubleshooting#how-to-provide-a-jackett-enhanced-log-for-a-ticket

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

Here is the enchanced logging.
As you can see, I am afraid that the logging process of my yaml has promble.

log
2024-05-12 10:20:28.2732 Info Starting Jackett v0.21.2580
2024-05-12 10:20:28.6604 Info Environment version: 6.0.29 (C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\)
2024-05-12 10:20:28.6655 Info OS version: Microsoft Windows NT 10.0.22635.0 (64bit OS)
2024-05-12 10:20:28.6655 Info Jackett variant: CoreWindows
2024-05-12 10:20:28.6655 Info Running in Docker: No
2024-05-12 10:20:28.6655 Info ThreadPool MaxThreads: 1023 workerThreads, 1000 completionPortThreads
2024-05-12 10:20:28.6655 Info App config/log directory: C:\ProgramData\Jackett
2024-05-12 10:20:28.6655 Info Using proxy: Disabled
2024-05-12 10:20:28.6655 Info Using FlareSolverr: No
2024-05-12 10:20:28.6655 Info Using HTTP Client: HttpWebClient2
2024-05-12 10:20:28.6655 Info Loading Native indexers ...
2024-05-12 10:20:28.6936 Info Loaded 72 Native indexers.
2024-05-12 10:20:28.6963 Info Loading Cardigann indexers from: C:\ProgramData\Jackett\cardigann\definitions\, C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\Definitions
2024-05-12 10:20:29.5771 Info Loaded 540 Cardigann indexers.
2024-05-12 10:20:29.5771 Info Loaded 612 indexers in total
2024-05-12 10:20:29.5771 Info Adding aggregate indexer ('all' indexer) ...
2024-05-12 10:20:29.5771 Info Adding filter indexer ('type:public' indexer) ...
2024-05-12 10:20:29.5771 Info Adding filter indexer ('type:private' indexer) ...
2024-05-12 10:20:29.5885 Info Adding filter indexer ('type:semi-public' indexer) ...
2024-05-12 10:20:29.7303 Info Jackett startup finished in 1.948 s
2024-05-12 10:20:44.1037 Info Adding aggregate indexer ('all' indexer) ...
2024-05-12 10:20:44.1037 Info Adding filter indexer ('type:public' indexer) ...
2024-05-12 10:20:44.1037 Info Adding filter indexer ('type:private' indexer) ...
2024-05-12 10:20:44.1037 Info Adding filter indexer ('type:semi-public' indexer) ...
2024-05-12 10:20:44.6141 Info Restarting webhost due to configuration change
2024-05-12 10:20:44.6141 Info Restart of the web application host (not process) initiated
2024-05-12 10:20:44.6261 Info Jackett stopped
2024-05-12 10:20:44.6416 Info Environment version: 6.0.29 (C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\)
2024-05-12 10:20:44.6416 Info OS version: Microsoft Windows NT 10.0.22635.0 (64bit OS)
2024-05-12 10:20:44.6416 Info Jackett variant: CoreWindows
2024-05-12 10:20:44.6416 Info Running in Docker: No
2024-05-12 10:20:44.6416 Info ThreadPool MaxThreads: 1023 workerThreads, 1000 completionPortThreads
2024-05-12 10:20:44.6416 Info App config/log directory: C:\ProgramData\Jackett
2024-05-12 10:20:44.6416 Info Using proxy: Disabled
2024-05-12 10:20:44.6416 Info Using FlareSolverr: No
2024-05-12 10:20:44.6416 Info Using HTTP Client: HttpWebClient2
2024-05-12 10:20:44.6416 Info Loading Native indexers ...
2024-05-12 10:20:44.6537 Info Loaded 72 Native indexers.
2024-05-12 10:20:44.6537 Info Loading Cardigann indexers from: C:\ProgramData\Jackett\cardigann\definitions\, C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\Definitions
2024-05-12 10:20:45.1547 Info Loaded 540 Cardigann indexers.
2024-05-12 10:20:45.1547 Info Loaded 612 indexers in total
2024-05-12 10:20:45.1547 Info Adding aggregate indexer ('all' indexer) ...
2024-05-12 10:20:45.1547 Info Adding filter indexer ('type:public' indexer) ...
2024-05-12 10:20:45.1547 Info Adding filter indexer ('type:private' indexer) ...
2024-05-12 10:20:45.1547 Info Adding filter indexer ('type:semi-public' indexer) ...
2024-05-12 10:20:45.1680 Info Jackett startup finished in 17.388 s
2024-05-12 10:20:55.1319 Info Executing JsonResult, writing value of type 'Jackett.Common.Models.Config.ServerConfig'.
2024-05-12 10:20:55.1408 Debug The response will be compressed with 'br'.
2024-05-12 10:20:55.1408 Info Executed endpoint 'Jackett.Server.Controllers.ServerConfigurationController.UpdateConfig (JackettConsole)'
2024-05-12 10:20:55.1408 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:00.1683 Info Request starting HTTP/1.1 GET http://127.0.0.1:9117/UI/Dashboard - -
2024-05-12 10:21:00.1683 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/UI/Dashboard
2024-05-12 10:21:00.1683 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/UI/Dashboard
2024-05-12 10:21:00.1683 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/UI/Dashboard
2024-05-12 10:21:00.1683 Debug The request path /UI/Dashboard does not match a supported file type
2024-05-12 10:21:00.1683 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:00.1683 Debug 1 candidate(s) found for the request path '/UI/Dashboard'
2024-05-12 10:21:00.1683 Debug Endpoint 'Jackett.Server.Controllers.WebUIController.Dashboard (JackettConsole)' with route pattern 'UI/Dashboard' is valid for the request path '/UI/Dashboard'
2024-05-12 10:21:00.1683 Debug Request matched endpoint 'Jackett.Server.Controllers.WebUIController.Dashboard (JackettConsole)'
2024-05-12 10:21:00.1683 Info Executing endpoint 'Jackett.Server.Controllers.WebUIController.Dashboard (JackettConsole)'
2024-05-12 10:21:00.1683 Info Route matched with {action = "Dashboard", controller = "WebUI"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Dashboard() on controller Jackett.Server.Controllers.WebUIController (JackettConsole).
2024-05-12 10:21:00.1812 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:00.1812 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:00.1812 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter
2024-05-12 10:21:00.1812 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:00.1812 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:00.1812 Debug Authorization was successful.
2024-05-12 10:21:00.1812 Debug Executing controller factory for controller Jackett.Server.Controllers.WebUIController (JackettConsole)
2024-05-12 10:21:00.1812 Debug Executed controller factory for controller Jackett.Server.Controllers.WebUIController (JackettConsole)
2024-05-12 10:21:00.1812 Info Executing PhysicalFileResult, sending file 'C:\Users\cxyzl\Desktop\Jackett.Binaries.Windows\Jackett\Content/index.html' with download name '' ...
2024-05-12 10:21:00.1812 Debug The file result has not been enabled for processing range requests. To enable it, set the EnableRangeProcessing property on the result to 'true'.
2024-05-12 10:21:00.1812 Debug The response will be compressed with 'br'.
2024-05-12 10:21:00.1812 Info Executed action Jackett.Server.Controllers.WebUIController.Dashboard (JackettConsole) in 5.3627ms
2024-05-12 10:21:00.1812 Info Executed endpoint 'Jackett.Server.Controllers.WebUIController.Dashboard (JackettConsole)'
2024-05-12 10:21:00.1812 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:00.1812 Info Request finished HTTP/1.1 GET http://127.0.0.1:9117/UI/Dashboard - - - 200 - text/html 26.7199ms
2024-05-12 10:21:00.2562 Info Request starting HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/server/config?_=1715480460229 - -
2024-05-12 10:21:00.2589 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/server/config?_=1715480460229
2024-05-12 10:21:00.2589 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/server/config?_=1715480460229
2024-05-12 10:21:00.2589 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/server/config?_=1715480460229
2024-05-12 10:21:00.2589 Debug The request path /api/v2.0/server/config does not match a supported file type
2024-05-12 10:21:00.2589 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:00.2589 Debug 1 candidate(s) found for the request path '/api/v2.0/server/config'
2024-05-12 10:21:00.2589 Debug Endpoint 'Jackett.Server.Controllers.ServerConfigurationController.Config (JackettConsole)' with route pattern 'api/v2.0/server/Config' is valid for the request path '/api/v2.0/server/config'
2024-05-12 10:21:00.2589 Debug Request matched endpoint 'Jackett.Server.Controllers.ServerConfigurationController.Config (JackettConsole)'
2024-05-12 10:21:00.2589 Info Executing endpoint 'Jackett.Server.Controllers.ServerConfigurationController.Config (JackettConsole)'
2024-05-12 10:21:00.2589 Info Route matched with {action = "Config", controller = "ServerConfiguration"}. Executing controller action with signature Jackett.Common.Models.DTO.ServerConfig Config() on controller Jackett.Server.Controllers.ServerConfigurationController (JackettConsole).
2024-05-12 10:21:00.2589 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:00.2589 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:00.2589 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter
2024-05-12 10:21:00.2589 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:00.2589 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:00.2589 Debug Authorization was successful.
2024-05-12 10:21:00.2589 Debug Executing controller factory for controller Jackett.Server.Controllers.ServerConfigurationController (JackettConsole)
2024-05-12 10:21:00.2589 Debug Executed controller factory for controller Jackett.Server.Controllers.ServerConfigurationController (JackettConsole)
2024-05-12 10:21:00.2589 Debug List of registered output formatters, in the following order: Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter
2024-05-12 10:21:00.2589 Debug No information found on request to perform content negotiation.
2024-05-12 10:21:00.2589 Debug Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2024-05-12 10:21:00.2589 Debug Attempting to select the first formatter in the output formatters list which can write the result.
2024-05-12 10:21:00.2748 Debug Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter' and content type 'application/json' to write the response.
2024-05-12 10:21:00.2748 Info Executing ObjectResult, writing value of type 'Jackett.Common.Models.DTO.ServerConfig'.
2024-05-12 10:21:00.2748 Debug The response will be compressed with 'br'.
2024-05-12 10:21:00.2748 Info Executed action Jackett.Server.Controllers.ServerConfigurationController.Config (JackettConsole) in 8.517ms
2024-05-12 10:21:00.2748 Info Executed endpoint 'Jackett.Server.Controllers.ServerConfigurationController.Config (JackettConsole)'
2024-05-12 10:21:00.2748 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:00.2748 Info Request finished HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/server/config?_=1715480460229 - - - 200 - application/json;+charset=utf-8 23.1212ms
2024-05-12 10:21:00.3060 Info Request starting HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460230 - -
2024-05-12 10:21:00.3060 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460230
2024-05-12 10:21:00.3060 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460230
2024-05-12 10:21:00.3060 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460230
2024-05-12 10:21:00.3060 Debug The request path /api/v2.0/indexers does not match a supported file type
2024-05-12 10:21:00.3060 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:00.3060 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers'
2024-05-12 10:21:00.3060 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)' with route pattern 'api/v2.0/indexers' is valid for the request path '/api/v2.0/indexers'
2024-05-12 10:21:00.3060 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:00.3060 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:00.3060 Info Route matched with {action = "Indexers", controller = "IndexerApi"}. Executing controller action with signature System.Collections.Generic.IEnumerable`1[Jackett.Common.Models.DTO.Indexer] Indexers(Boolean) on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:00.3060 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:00.3060 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:00.3060 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter
2024-05-12 10:21:00.3060 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:00.3060 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:00.3060 Debug Authorization was successful.
2024-05-12 10:21:00.3060 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:00.3060 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:00.3208 Debug Attempting to bind parameter 'configured' of type 'System.Boolean' ...
2024-05-12 10:21:00.3208 Debug Attempting to bind parameter 'configured' of type 'System.Boolean' using the name 'configured' in request data ...
2024-05-12 10:21:00.3208 Debug Could not find a value in the request with name 'configured' for binding parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:00.3208 Debug Done attempting to bind parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:00.3208 Debug Done attempting to bind parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:00.3208 Debug Attempting to validate the bound parameter 'configured' of type 'System.Boolean' ...
2024-05-12 10:21:00.3208 Debug Done attempting to validate the bound parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:00.3208 Debug List of registered output formatters, in the following order: Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter
2024-05-12 10:21:00.3208 Debug No information found on request to perform content negotiation.
2024-05-12 10:21:00.3208 Debug Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2024-05-12 10:21:00.3208 Debug Attempting to select the first formatter in the output formatters list which can write the result.
2024-05-12 10:21:00.3208 Debug Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter' and content type 'application/json' to write the response.
2024-05-12 10:21:00.3208 Info Executing ObjectResult, writing value of type 'System.Linq.Enumerable+SelectListIterator`2[[Jackett.Common.Indexers.IIndexer, Jackett.Common, Version=0.21.2580.0, Culture=neutral, PublicKeyToken=(removed) Jackett.Common, Version=0.21.2580.0, Culture=neutral, PublicKeyToken=(removed)
2024-05-12 10:21:00.3989 Debug The response will be compressed with 'br'.
2024-05-12 10:21:00.4220 Info Executed action Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole) in 103.2185ms
2024-05-12 10:21:00.4220 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:00.4220 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:00.4220 Info Request finished HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460230 - - - 200 - application/json;+charset=utf-8 117.7406ms
2024-05-12 10:21:20.7863 Info Request starting HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config?_=1715480460231 - -
2024-05-12 10:21:20.7863 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config?_=1715480460231
2024-05-12 10:21:20.7863 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config?_=1715480460231
2024-05-12 10:21:20.7863 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config?_=1715480460231
2024-05-12 10:21:20.7863 Debug The request path /api/v2.0/indexers/hudbt/config does not match a supported file type
2024-05-12 10:21:20.7896 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:20.7896 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers/hudbt/config'
2024-05-12 10:21:20.7896 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.Config (JackettConsole)' with route pattern 'api/v2.0/indexers/{indexerId?}/Config' is valid for the request path '/api/v2.0/indexers/hudbt/config'
2024-05-12 10:21:20.7896 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.Config (JackettConsole)'
2024-05-12 10:21:20.7896 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.Config (JackettConsole)'
2024-05-12 10:21:20.7896 Info Route matched with {action = "Config", controller = "IndexerApi"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Config() on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:20.7896 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:20.7896 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:20.7896 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter, Jackett.Server.Controllers.RequiresIndexer
2024-05-12 10:21:20.7896 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:20.7896 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:20.7896 Debug Authorization was successful.
2024-05-12 10:21:20.7896 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:20.8064 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:20.8064 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/login.php)
2024-05-12 10:21:21.7045 Debug WebClient(HttpWebClient2): Returning OK => 7818 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT  登录</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li class="selected"><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<form method="post" action="takelogin.php">
<div class="hints center"><ul>
<li>[<b>1000</b>] 次连续登录失败将导致你的IP地址被禁用!</li>
<li>你还有 <b>980</b> 次尝试机会</li></ul></div>
<div id="sns" class="minor-list text center"><ul><li><a target="_blank" href="http://page.renren.com/601062154">人人网</a></li><li><a target="_blank" href="http://weibo.com/hudbter">新浪微博</a></li><li><a target="_blank" href="http://t.qq.com/hudbter">腾讯微博</a></li><li><a target="_blank" href="http://tieba.baidu.com/f?kw=hudbt">百度贴吧</a></li><li><a target="_blank" href="http://www.douban.com/group/301869/">豆瓣小组</a></li><li><a target="_blank" href="http://wp.qq.com/wpa/qunwpa?idkey=5457c38fbefd6adbfb5f9b5058bde3f10a75302f40f673d542066608183058a8" title="点击加入">客服QQ群105548142<br/>验证消息: HUDBT, 请勿求邀请</a></li></ul></div><table border="0" cellpadding="5" style="margin:0 auto;">
<tr><td class="rowhead">用户名:</td><td class="rowfollow" align="left"><input type="text" name="username" style="width: 180px; border: 1px solid gray" /></td></tr>
<tr><td class="rowhead">密码:</td><td class="rowfollow" align="left"><input type="password" name="password" style="width: 180px; border: 1px solid gray"/></td></tr>
<tr><td class="rowhead">验证图片:</td><td align="left"><img src="image.php?action=regimage&amp;imagehash=26e2feba7cb7f1396c670ac5120fcdea" border="0" alt="CAPTCHA" /></td></tr><tr><td class="rowhead">验证码:</td><td align="left"><input type="text" autocomplete="off" style="width: 180px; border: 1px solid gray" name="imagestring" value="" /><input type="hidden" name="imagehash" value="26e2feba7cb7f1396c670ac5120fcdea" /></td></tr><tr><td class="toolbox" colspan="2" align="left">高级选项:</td></tr>
<tr><td class="rowhead">自动登出:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="logout" value="yes" /> 关闭浏览器后自动登出</label></td></tr>
<tr><td class="rowhead">限制IP:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="securelogin" value="yes" /> <span title="若IP变更,则需重新登陆">限制只能使用本IP登录</span></label></td></tr>
<tr><td class="rowhead">SSL (HTTPS):</td><td class="rowfollow" align="left"><label title="蝴蝶娘交不起保护费,所以浏览器菌们默认不信任蝴蝶娘..资助蝴蝶娘请猛击右上角的捐赠~蝴蝶娘谢谢大家啦~"><input class="checkbox" type="checkbox" name="ssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议浏览网站(浏览器)</label><br /><label><input class="checkbox" type="checkbox" name="trackerssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议连接Tracker(BT客户端)</label></td></tr>
<tr><td class="toolbox" colspan="2" align="right"><input type="submit" value="登录" class="btn" /> <input type="reset" value="重置" class="btn" /></td></tr>
</table>
</form>
<div class="hints center"><ul>
<li>还没有账号? 马上<a href="signup.php" class="index">注册</a>!</li>
<li>忘记了密码? 通过邮件来<a href="recover.php" class="index">找回密码</a></li>
<li>没有收到验证邮件或验证链接无法打开? <a href="confirm_resend.php" class="index">重新发送验证邮件</a></li>
</ul></div>
      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.017353057861328 @ 0.069492101669312 </b> sec with <b>3</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:21.7347 Debug updating Cookies  => 
2024-05-12 10:21:21.9022 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/image.php?action=regimage&imagehash=26e2feba7cb7f1396c670ac5120fcdea)
2024-05-12 10:21:22.1313 Debug WebClient(HttpWebClient2): Returning OK => 3448 bytes <BINARY>
2024-05-12 10:21:22.1313 Debug WebClient(HttpWebClient2): HexDump20:  (FFFD)P(50)N(4E)G(47)
(0D)
(0A)�(1A)
(0A) (00) (00) (00)
(0D)I(49)H(48)D(44)R(52) (00) (00) (00) (FFFD)
2024-05-12 10:21:22.1407 Debug List of registered output formatters, in the following order: Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter
2024-05-12 10:21:22.1407 Debug No information found on request to perform content negotiation.
2024-05-12 10:21:22.1407 Debug Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2024-05-12 10:21:22.1407 Debug Attempting to select the first formatter in the output formatters list which can write the result.
2024-05-12 10:21:22.1407 Debug Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter' and content type 'application/json' to write the response.
2024-05-12 10:21:22.1407 Info Executing OkObjectResult, writing value of type 'Newtonsoft.Json.Linq.JArray'.
2024-05-12 10:21:22.1407 Debug The response will be compressed with 'br'.
2024-05-12 10:21:22.1407 Info Executed action Jackett.Server.Controllers.IndexerApiController.Config (JackettConsole) in 1341.5973ms
2024-05-12 10:21:22.1407 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.Config (JackettConsole)'
2024-05-12 10:21:22.1407 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:22.1491 Info Request finished HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config?_=1715480460231 - - - 200 - application/json;+charset=utf-8 1362.8289ms
2024-05-12 10:21:40.4570 Info Request starting HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config application/json 399
2024-05-12 10:21:40.4570 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config
2024-05-12 10:21:40.4570 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config
2024-05-12 10:21:40.4570 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config
2024-05-12 10:21:40.4570 Debug POST requests are not supported
2024-05-12 10:21:40.4570 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:40.4618 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers/hudbt/config'
2024-05-12 10:21:40.4618 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.UpdateConfig (JackettConsole)' with route pattern 'api/v2.0/indexers/{indexerId?}/Config' is valid for the request path '/api/v2.0/indexers/hudbt/config'
2024-05-12 10:21:40.4618 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.UpdateConfig (JackettConsole)'
2024-05-12 10:21:40.4618 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.UpdateConfig (JackettConsole)'
2024-05-12 10:21:40.4618 Info Route matched with {action = "UpdateConfig", controller = "IndexerApi"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] UpdateConfig(Jackett.Common.Models.DTO.ConfigItem[]) on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:40.4618 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:40.4618 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:40.4618 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter, Jackett.Server.Controllers.RequiresIndexer
2024-05-12 10:21:40.4618 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:40.4618 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:40.4618 Debug Authorization was successful.
2024-05-12 10:21:40.4618 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:40.4618 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:40.4618 Debug Attempting to bind parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]' ...
2024-05-12 10:21:40.4618 Debug Attempting to bind parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]' using the name '' in request data ...
2024-05-12 10:21:40.4618 Debug Rejected input formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonPatchInputFormatter' for content type 'application/json'.
2024-05-12 10:21:40.4618 Debug Selected input formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonInputFormatter' for content type 'application/json'.
2024-05-12 10:21:40.4618 Debug Connection id "0HN3I58CRCGK7", Request id "0HN3I58CRCGK7:0000000A": started reading request body.
2024-05-12 10:21:40.4618 Debug Connection id "0HN3I58CRCGK7", Request id "0HN3I58CRCGK7:0000000A": done reading request body.
2024-05-12 10:21:40.4769 Debug Done attempting to bind parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]'.
2024-05-12 10:21:40.4769 Debug Done attempting to bind parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]'.
2024-05-12 10:21:40.4769 Debug Attempting to validate the bound parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]' ...
2024-05-12 10:21:40.4769 Debug Done attempting to validate the bound parameter 'config' of type 'Jackett.Common.Models.DTO.ConfigItem[]'.
2024-05-12 10:21:40.4769 Debug CACHE CleanIndexerCache / Indexer: hudbt
2024-05-12 10:21:40.4769 Debug CACHE PruneCacheByTtl / Pruned queries: 0
2024-05-12 10:21:40.4769 Debug CACHE Status / Total cached results: 0
2024-05-12 10:21:40.5111 Debug WebClient(HttpWebClient2).GetResultAsync(Method: POST Url: https://hudbt.hust.edu.cn/takelogin.php PostData: {username=(removed) password=(removed) imagestring=BG7RAR, imagehash=26e2feba7cb7f1396c670ac5120fcdea, secret=, logout=, securelogin=, ssl=yes, trackerssl=yes} RawBody: )
2024-05-12 10:21:41.3908 Debug WebClient(HttpWebClient2): Returning OK => 4632 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<div id="stderr"><h2>登录失败!</h2><div class="table td frame"><b>错误</b>: 用户名或密码不正确!或者你还没有通过验证<br /><br />忘记了密码?<b><a href=recover.php>找回</a></b>你的密码?</div></div>      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.012679100036621 @ 0.71180605888367 </b> sec with <b>7</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:41.4123 Debug CardigannIndexer (hudbt): Cookies after login: 
2024-05-12 10:21:41.4123 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/index.php)
2024-05-12 10:21:41.6153 Debug WebClient(HttpWebClient2): Returning Redirect => https://hudbt.hust.edu.cn/login.php 0 bytes
2024-05-12 10:21:41.6206 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/login.php)
2024-05-12 10:21:41.8543 Debug WebClient(HttpWebClient2): Returning OK => 7818 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT  登录</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li class="selected"><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<form method="post" action="takelogin.php">
<div class="hints center"><ul>
<li>[<b>1000</b>] 次连续登录失败将导致你的IP地址被禁用!</li>
<li>你还有 <b>979</b> 次尝试机会</li></ul></div>
<div id="sns" class="minor-list text center"><ul><li><a target="_blank" href="http://page.renren.com/601062154">人人网</a></li><li><a target="_blank" href="http://weibo.com/hudbter">新浪微博</a></li><li><a target="_blank" href="http://t.qq.com/hudbter">腾讯微博</a></li><li><a target="_blank" href="http://tieba.baidu.com/f?kw=hudbt">百度贴吧</a></li><li><a target="_blank" href="http://www.douban.com/group/301869/">豆瓣小组</a></li><li><a target="_blank" href="http://wp.qq.com/wpa/qunwpa?idkey=5457c38fbefd6adbfb5f9b5058bde3f10a75302f40f673d542066608183058a8" title="点击加入">客服QQ群105548142<br/>验证消息: HUDBT, 请勿求邀请</a></li></ul></div><table border="0" cellpadding="5" style="margin:0 auto;">
<tr><td class="rowhead">用户名:</td><td class="rowfollow" align="left"><input type="text" name="username" style="width: 180px; border: 1px solid gray" /></td></tr>
<tr><td class="rowhead">密码:</td><td class="rowfollow" align="left"><input type="password" name="password" style="width: 180px; border: 1px solid gray"/></td></tr>
<tr><td class="rowhead">验证图片:</td><td align="left"><img src="image.php?action=regimage&amp;imagehash=ddce55708dbbc6d897a7a7a6903d50a1" border="0" alt="CAPTCHA" /></td></tr><tr><td class="rowhead">验证码:</td><td align="left"><input type="text" autocomplete="off" style="width: 180px; border: 1px solid gray" name="imagestring" value="" /><input type="hidden" name="imagehash" value="ddce55708dbbc6d897a7a7a6903d50a1" /></td></tr><tr><td class="toolbox" colspan="2" align="left">高级选项:</td></tr>
<tr><td class="rowhead">自动登出:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="logout" value="yes" /> 关闭浏览器后自动登出</label></td></tr>
<tr><td class="rowhead">限制IP:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="securelogin" value="yes" /> <span title="若IP变更,则需重新登陆">限制只能使用本IP登录</span></label></td></tr>
<tr><td class="rowhead">SSL (HTTPS):</td><td class="rowfollow" align="left"><label title="蝴蝶娘交不起保护费,所以浏览器菌们默认不信任蝴蝶娘..资助蝴蝶娘请猛击右上角的捐赠~蝴蝶娘谢谢大家啦~"><input class="checkbox" type="checkbox" name="ssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议浏览网站(浏览器)</label><br /><label><input class="checkbox" type="checkbox" name="trackerssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议连接Tracker(BT客户端)</label></td></tr>
<tr><td class="toolbox" colspan="2" align="right"><input type="submit" value="登录" class="btn" /> <input type="reset" value="重置" class="btn" /></td></tr>
</table>
</form>
<div class="hints center"><ul>
<li>还没有账号? 马上<a href="signup.php" class="index">注册</a>!</li>
<li>忘记了密码? 通过邮件来<a href="recover.php" class="index">找回密码</a></li>
<li>没有收到验证邮件或验证链接无法打开? <a href="confirm_resend.php" class="index">重新发送验证邮件</a></li>
</ul></div>
      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.015909910202026 @ 0.066842079162598 </b> sec with <b>3</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:41.9764 Debug Saving new config file: C:\ProgramData\Jackett\Indexers\hudbt.json.0d5dda8ddd4a4669ab3dd34f88f9ee7d.tmp
2024-05-12 10:21:41.9796 Info Executing StatusCodeResult, setting HTTP status code 204
2024-05-12 10:21:41.9796 Info Executed action Jackett.Server.Controllers.IndexerApiController.UpdateConfig (JackettConsole) in 1510.4863ms
2024-05-12 10:21:41.9796 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.UpdateConfig (JackettConsole)'
2024-05-12 10:21:41.9796 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:41.9796 Info Request finished HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/config application/json 399 - 204 - - 1524.9796ms
2024-05-12 10:21:41.9796 Info Request starting HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460232 - -
2024-05-12 10:21:41.9796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460232
2024-05-12 10:21:41.9796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460232
2024-05-12 10:21:41.9796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460232
2024-05-12 10:21:41.9796 Debug The request path /api/v2.0/indexers does not match a supported file type
2024-05-12 10:21:41.9796 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:41.9796 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers'
2024-05-12 10:21:41.9796 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)' with route pattern 'api/v2.0/indexers' is valid for the request path '/api/v2.0/indexers'
2024-05-12 10:21:41.9796 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:41.9796 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:41.9796 Info Route matched with {action = "Indexers", controller = "IndexerApi"}. Executing controller action with signature System.Collections.Generic.IEnumerable`1[Jackett.Common.Models.DTO.Indexer] Indexers(Boolean) on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:41.9796 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:41.9796 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:41.9796 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter
2024-05-12 10:21:41.9927 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:41.9927 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:41.9927 Debug Authorization was successful.
2024-05-12 10:21:41.9927 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:41.9927 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:41.9927 Debug Attempting to bind parameter 'configured' of type 'System.Boolean' ...
2024-05-12 10:21:41.9927 Debug Attempting to bind parameter 'configured' of type 'System.Boolean' using the name 'configured' in request data ...
2024-05-12 10:21:41.9927 Debug Could not find a value in the request with name 'configured' for binding parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:41.9927 Debug Done attempting to bind parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:41.9927 Debug Done attempting to bind parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:41.9927 Debug Attempting to validate the bound parameter 'configured' of type 'System.Boolean' ...
2024-05-12 10:21:41.9927 Debug Done attempting to validate the bound parameter 'configured' of type 'System.Boolean'.
2024-05-12 10:21:41.9927 Debug List of registered output formatters, in the following order: Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter, Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter
2024-05-12 10:21:41.9927 Debug No information found on request to perform content negotiation.
2024-05-12 10:21:41.9927 Debug Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2024-05-12 10:21:41.9927 Debug Attempting to select the first formatter in the output formatters list which can write the result.
2024-05-12 10:21:41.9927 Debug Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonOutputFormatter' and content type 'application/json' to write the response.
2024-05-12 10:21:41.9927 Info Executing ObjectResult, writing value of type 'System.Linq.Enumerable+SelectListIterator`2[[Jackett.Common.Indexers.IIndexer, Jackett.Common, Version=0.21.2580.0, Culture=neutral, PublicKeyToken=(removed) Jackett.Common, Version=0.21.2580.0, Culture=neutral, PublicKeyToken=(removed)
2024-05-12 10:21:42.0690 Debug The response will be compressed with 'br'.
2024-05-12 10:21:42.0972 Info Executed action Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole) in 103.5402ms
2024-05-12 10:21:42.0972 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.Indexers (JackettConsole)'
2024-05-12 10:21:42.0972 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:42.0972 Info Request finished HTTP/1.1 GET http://127.0.0.1:9117/api/v2.0/indexers?_=1715480460232 - - - 200 - application/json;+charset=utf-8 114.4176ms
2024-05-12 10:21:44.2796 Info Request starting HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test - 0
2024-05-12 10:21:44.2796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:44.2796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:44.2796 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:44.2796 Debug POST requests are not supported
2024-05-12 10:21:44.2796 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:44.2796 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers/hudbt/test'
2024-05-12 10:21:44.2796 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)' with route pattern 'api/v2.0/indexers/{indexerid}/Test' is valid for the request path '/api/v2.0/indexers/hudbt/test'
2024-05-12 10:21:44.2796 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:44.2796 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:44.2796 Info Route matched with {action = "Test", controller = "IndexerApi"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Test() on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:44.2900 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:44.2900 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:44.2900 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter, Jackett.Server.Controllers.RequiresIndexer
2024-05-12 10:21:44.2900 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:44.2900 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:44.2900 Debug Authorization was successful.
2024-05-12 10:21:44.2900 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:44.2900 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:44.2900 Debug CACHE PruneCacheByTtl / Pruned queries: 0
2024-05-12 10:21:44.2900 Debug CACHE Status / Total cached results: 0
2024-05-12 10:21:44.3319 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/torrents.php?incldead=0&picktype=0&spstate=0&search_area=0&search_mode=0&sort=4&type=desc&notnewword=1)
2024-05-12 10:21:44.6424 Debug WebClient(HttpWebClient2): Returning Redirect => https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1 0 bytes
2024-05-12 10:21:44.6424 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
2024-05-12 10:21:44.6424 Info CardigannIndexer(hudbt): Relogin required
2024-05-12 10:21:44.6424 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/login.php)
2024-05-12 10:21:44.9463 Debug WebClient(HttpWebClient2): Returning OK => 7818 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT  登录</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li class="selected"><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<form method="post" action="takelogin.php">
<div class="hints center"><ul>
<li>[<b>1000</b>] 次连续登录失败将导致你的IP地址被禁用!</li>
<li>你还有 <b>979</b> 次尝试机会</li></ul></div>
<div id="sns" class="minor-list text center"><ul><li><a target="_blank" href="http://page.renren.com/601062154">人人网</a></li><li><a target="_blank" href="http://weibo.com/hudbter">新浪微博</a></li><li><a target="_blank" href="http://t.qq.com/hudbter">腾讯微博</a></li><li><a target="_blank" href="http://tieba.baidu.com/f?kw=hudbt">百度贴吧</a></li><li><a target="_blank" href="http://www.douban.com/group/301869/">豆瓣小组</a></li><li><a target="_blank" href="http://wp.qq.com/wpa/qunwpa?idkey=5457c38fbefd6adbfb5f9b5058bde3f10a75302f40f673d542066608183058a8" title="点击加入">客服QQ群105548142<br/>验证消息: HUDBT, 请勿求邀请</a></li></ul></div><table border="0" cellpadding="5" style="margin:0 auto;">
<tr><td class="rowhead">用户名:</td><td class="rowfollow" align="left"><input type="text" name="username" style="width: 180px; border: 1px solid gray" /></td></tr>
<tr><td class="rowhead">密码:</td><td class="rowfollow" align="left"><input type="password" name="password" style="width: 180px; border: 1px solid gray"/></td></tr>
<tr><td class="rowhead">验证图片:</td><td align="left"><img src="image.php?action=regimage&amp;imagehash=9182dc99cac0dd049b029d9a25fd6662" border="0" alt="CAPTCHA" /></td></tr><tr><td class="rowhead">验证码:</td><td align="left"><input type="text" autocomplete="off" style="width: 180px; border: 1px solid gray" name="imagestring" value="" /><input type="hidden" name="imagehash" value="9182dc99cac0dd049b029d9a25fd6662" /></td></tr><tr><td class="toolbox" colspan="2" align="left">高级选项:</td></tr>
<tr><td class="rowhead">自动登出:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="logout" value="yes" /> 关闭浏览器后自动登出</label></td></tr>
<tr><td class="rowhead">限制IP:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="securelogin" value="yes" /> <span title="若IP变更,则需重新登陆">限制只能使用本IP登录</span></label></td></tr>
<tr><td class="rowhead">SSL (HTTPS):</td><td class="rowfollow" align="left"><label title="蝴蝶娘交不起保护费,所以浏览器菌们默认不信任蝴蝶娘..资助蝴蝶娘请猛击右上角的捐赠~蝴蝶娘谢谢大家啦~"><input class="checkbox" type="checkbox" name="ssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议浏览网站(浏览器)</label><br /><label><input class="checkbox" type="checkbox" name="trackerssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议连接Tracker(BT客户端)</label></td></tr>
<tr><td class="toolbox" colspan="2" align="right"><input type="submit" value="登录" class="btn" /> <input type="reset" value="重置" class="btn" /></td></tr>
</table>
</form>
<div class="hints center"><ul>
<li>还没有账号? 马上<a href="signup.php" class="index">注册</a>!</li>
<li>忘记了密码? 通过邮件来<a href="recover.php" class="index">找回密码</a></li>
<li>没有收到验证邮件或验证链接无法打开? <a href="confirm_resend.php" class="index">重新发送验证邮件</a></li>
</ul></div>
      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.018210887908936 @ 0.073644876480103 </b> sec with <b>3</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:44.9663 Debug updating Cookies  => 
2024-05-12 10:21:44.9663 Debug Saving new config file: C:\ProgramData\Jackett\Indexers\hudbt.json.4963d52b11134899b2bf87a9571a06ed.tmp
2024-05-12 10:21:44.9663 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/image.php?action=regimage&imagehash=9182dc99cac0dd049b029d9a25fd6662)
2024-05-12 10:21:45.1960 Debug WebClient(HttpWebClient2): Returning OK => 3426 bytes <BINARY>
2024-05-12 10:21:45.1960 Debug WebClient(HttpWebClient2): HexDump20:  (FFFD)P(50)N(4E)G(47)
(0D)
(0A)�(1A)
(0A) (00) (00) (00)
(0D)I(49)H(48)D(44)R(52) (00) (00) (00) (FFFD)
2024-05-12 10:21:45.1960 Error CardigannIndexer (hudbt): Found captcha during automatic login, aborting
2024-05-12 10:21:45.2306 Error Error on 20240512102145 for HUDBT(蝴蝶).txtSystem.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735





2024-05-12 10:21:45.2306 Debug Saving new config file: C:\ProgramData\Jackett\Indexers\hudbt.json.b944a449ec7741efae86b04f21b233d6.tmp
2024-05-12 10:21:45.2306 Info Executed action Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole) in 944.1581ms
2024-05-12 10:21:45.2306 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:45.2306 Error Jackett.Common.IndexerException: Exception (hudbt): Relogin failed

[v0.21.2580.0] Jackett.Common.IndexerException: Exception (hudbt): Relogin failed
 ---> System.Exception: Parse error
 ---> System.Exception: Relogin failed
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1735
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseWebIndexer.OnParseError(String results, Exception ex) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 798
   at Jackett.Common.Indexers.CardigannIndexer.PerformQuery(TorznabQuery query) in ./Jackett.Common/Indexers/CardigannIndexer.cs:line 1892
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 365
   --- End of inner exception stack trace ---
   at Jackett.Common.Indexers.BaseIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 386
   at Jackett.Common.Indexers.BaseWebIndexer.ResultsForQuery(TorznabQuery query, Boolean isMetaIndexer) in ./Jackett.Common/Indexers/BaseIndexer.cs:line 772
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 322
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

2024-05-12 10:21:45.2928 Debug The response will be compressed with 'br'.
2024-05-12 10:21:45.2928 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:45.2928 Info Request finished HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test - 0 - 500 - application/json 1014.3853ms
2024-05-12 10:21:47.5298 Info Request starting HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test - 0
2024-05-12 10:21:47.5298 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:47.5298 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:47.5298 Debug Request is continuing in applying rules. Current url is http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test
2024-05-12 10:21:47.5298 Debug POST requests are not supported
2024-05-12 10:21:47.5298 Debug AuthenticationScheme: Cookies was successfully authenticated.
2024-05-12 10:21:47.5298 Debug 1 candidate(s) found for the request path '/api/v2.0/indexers/hudbt/test'
2024-05-12 10:21:47.5298 Debug Endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)' with route pattern 'api/v2.0/indexers/{indexerid}/Test' is valid for the request path '/api/v2.0/indexers/hudbt/test'
2024-05-12 10:21:47.5298 Debug Request matched endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:47.5298 Info Executing endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:47.5298 Info Route matched with {action = "Test", controller = "IndexerApi"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Test() on controller Jackett.Server.Controllers.IndexerApiController (JackettConsole).
2024-05-12 10:21:47.5298 Debug Execution plan of authorization filters (in the following order): Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter
2024-05-12 10:21:47.5298 Debug Execution plan of resource filters (in the following order): None
2024-05-12 10:21:47.5298 Debug Execution plan of action filters (in the following order): Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter (Order: -2147483648), Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000), Microsoft.AspNetCore.Mvc.Filters.ResponseCacheFilter, Jackett.Server.Controllers.RequiresIndexer
2024-05-12 10:21:47.5298 Debug Execution plan of exception filters (in the following order): None
2024-05-12 10:21:47.5394 Debug Execution plan of result filters (in the following order): None
2024-05-12 10:21:47.5394 Debug Authorization was successful.
2024-05-12 10:21:47.5394 Debug Executing controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:47.5394 Debug Executed controller factory for controller Jackett.Server.Controllers.IndexerApiController (JackettConsole)
2024-05-12 10:21:47.5394 Debug CACHE PruneCacheByTtl / Pruned queries: 0
2024-05-12 10:21:47.5394 Debug CACHE Status / Total cached results: 0
2024-05-12 10:21:47.5394 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/torrents.php?incldead=0&picktype=0&spstate=0&search_area=0&search_mode=0&sort=4&type=desc&notnewword=1)
2024-05-12 10:21:47.7696 Debug WebClient(HttpWebClient2): Returning Redirect => https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1 0 bytes
2024-05-12 10:21:47.7696 Error Redirected to: https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1
2024-05-12 10:21:47.7696 Info CardigannIndexer(hudbt): Relogin required
2024-05-12 10:21:47.7696 Debug WebClient(HttpWebClient2).GetResultAsync(Method: POST Url: https://hudbt.hust.edu.cn/takelogin.php PostData: {username=(removed) password=(removed) imagestring=, imagehash=9182dc99cac0dd049b029d9a25fd6662, secret=, logout=, securelogin=, ssl=yes, trackerssl=yes} RawBody: )
2024-05-12 10:21:48.0052 Debug WebClient(HttpWebClient2): Returning OK => 4565 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<div id="stderr"><h2>失败</h2><div class="table td frame">图片代码输错啦!<br /><br />点击<a href="login.php"><b>这里这里这里</b></a>返回。</div></div>      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.012512922286987 @ 0.0692298412323 </b> sec with <b>6</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:48.0209 Debug CardigannIndexer (hudbt): Cookies after login: 
2024-05-12 10:21:48.0209 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/index.php)
2024-05-12 10:21:48.2475 Debug WebClient(HttpWebClient2): Returning Redirect => https://hudbt.hust.edu.cn/login.php 0 bytes
2024-05-12 10:21:48.2475 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/login.php)
2024-05-12 10:21:48.4777 Debug WebClient(HttpWebClient2): Returning OK => 7818 bytes
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="HUDBT,HUST,PT,IPv6,高速下载" /><meta name="description" content="HUDBT,教育网高速IPv6BT下载站." /><meta name="generator" content="NexusPHP" />
  <title>蝴蝶-HUDBT  登录</title>
  <link rel="shortcut icon" href="//hudbt.hust.edu.cn/favicon.ico" type="image/x-icon" />
  <link rel="apple-touch-icon" href="//hudbt.hust.edu.cn/pic/icon.png" />
  <link rel="search" type="application/opensearchdescription+xml" title="蝴蝶-HUDBT Torrents" href="//hudbt.hust.edu.cn/opensearch.php" />
  <script type="text/javascript">
    //<![CDATA[
    hb={}
    //]]>
  </script>
  
  <link rel="stylesheet" href="//hudbt.hust.edu.cn/cache/css-chs-cat1-theme6.css" type="text/css" media="screen" />
  <script type="text/javascript" src="//hudbt.hust.edu.cn/cache/js-common-chs.js"></script>
  
  <!--[if lt IE 9]>
  <script type="text/javascript" src="//hudbt.hust.edu.cn/load.php?name=html5shiv.js"></script>
  <![endif]-->
</head>
<body>
  <div id="wrap">
    <header>
            <div><a href="//hudbt.hust.edu.cn/index.php"><img id="logo-img" src="//hudbt.hust.edu.cn/pic/logo.png" alt="蝴蝶-HUDBT" title="蝴蝶-HUDBT - " /></a></div>
                  <div id="donate">
	    </div></header>
    <div id="page">
       
      <div id="nav-reg-signup" class="big minor-list list-seperator minor-nav"><ul><li class="selected"><a href="//hudbt.hust.edu.cn/login.php">登录</a></li><li><a href="//hudbt.hust.edu.cn/signup.php">注册</a></li><li><a href="//hudbt.hust.edu.cn/rules.php">规则</a></li></ul></div>
            <div id="outer">
<form method="post" action="takelogin.php">
<div class="hints center"><ul>
<li>[<b>1000</b>] 次连续登录失败将导致你的IP地址被禁用!</li>
<li>你还有 <b>978</b> 次尝试机会</li></ul></div>
<div id="sns" class="minor-list text center"><ul><li><a target="_blank" href="http://page.renren.com/601062154">人人网</a></li><li><a target="_blank" href="http://weibo.com/hudbter">新浪微博</a></li><li><a target="_blank" href="http://t.qq.com/hudbter">腾讯微博</a></li><li><a target="_blank" href="http://tieba.baidu.com/f?kw=hudbt">百度贴吧</a></li><li><a target="_blank" href="http://www.douban.com/group/301869/">豆瓣小组</a></li><li><a target="_blank" href="http://wp.qq.com/wpa/qunwpa?idkey=5457c38fbefd6adbfb5f9b5058bde3f10a75302f40f673d542066608183058a8" title="点击加入">客服QQ群105548142<br/>验证消息: HUDBT, 请勿求邀请</a></li></ul></div><table border="0" cellpadding="5" style="margin:0 auto;">
<tr><td class="rowhead">用户名:</td><td class="rowfollow" align="left"><input type="text" name="username" style="width: 180px; border: 1px solid gray" /></td></tr>
<tr><td class="rowhead">密码:</td><td class="rowfollow" align="left"><input type="password" name="password" style="width: 180px; border: 1px solid gray"/></td></tr>
<tr><td class="rowhead">验证图片:</td><td align="left"><img src="image.php?action=regimage&amp;imagehash=1120c0e70b9c9d9cc63ac9990f5cfb41" border="0" alt="CAPTCHA" /></td></tr><tr><td class="rowhead">验证码:</td><td align="left"><input type="text" autocomplete="off" style="width: 180px; border: 1px solid gray" name="imagestring" value="" /><input type="hidden" name="imagehash" value="1120c0e70b9c9d9cc63ac9990f5cfb41" /></td></tr><tr><td class="toolbox" colspan="2" align="left">高级选项:</td></tr>
<tr><td class="rowhead">自动登出:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="logout" value="yes" /> 关闭浏览器后自动登出</label></td></tr>
<tr><td class="rowhead">限制IP:</td><td class="rowfollow" align="left"><label><input class="checkbox" type="checkbox" name="securelogin" value="yes" /> <span title="若IP变更,则需重新登陆">限制只能使用本IP登录</span></label></td></tr>
<tr><td class="rowhead">SSL (HTTPS):</td><td class="rowfollow" align="left"><label title="蝴蝶娘交不起保护费,所以浏览器菌们默认不信任蝴蝶娘..资助蝴蝶娘请猛击右上角的捐赠~蝴蝶娘谢谢大家啦~"><input class="checkbox" type="checkbox" name="ssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议浏览网站(浏览器)</label><br /><label><input class="checkbox" type="checkbox" name="trackerssl" value="yes" checked="checked" disabled="disabled" /> 使用SSL数据加密协议连接Tracker(BT客户端)</label></td></tr>
<tr><td class="toolbox" colspan="2" align="right"><input type="submit" value="登录" class="btn" /> <input type="reset" value="重置" class="btn" /></td></tr>
</table>
</form>
<div class="hints center"><ul>
<li>还没有账号? 马上<a href="signup.php" class="index">注册</a>!</li>
<li>忘记了密码? 通过邮件来<a href="recover.php" class="index">找回密码</a></li>
<li>没有收到验证邮件或验证链接无法打开? <a href="confirm_resend.php" class="index">重新发送验证邮件</a></li>
</ul></div>
      </div>
      <a href="#" id="back-to-top" title="回到页首" style="display:none;"></a>
      <div style="display: none;" id="lightbox" class="lightbox"></div><div style="display: none;" id="curtain" class="curtain"></div>
    </div>
    <footer>
            <div style="margin-top: 10px; text-align:center;" id="ad_footer"><script language="javascript" type="text/javascript"> 
/*给管理组发信息时的提示*/
function ContactstaffNotice(){ 
if(window.location.pathname=="/contactstaff.php"){
        var r=confirm("你确定要给管理组发信息吗?关于ut、上传下载等问题请前往客服区发帖询问或客服QQ群 105548142  验证消息: HUDBT~");
        if(r==false){history.back();}
}}
ContactstaffNotice();

/*上传字幕时选择语言精简*/
function SubtitleLanguage(){
     if(window.location.pathname=="/subtitles.php"){
      var option=document.getElementById("outer").getElementsByTagName("option");
      for(var j=0;j<option.length;j++){
       if(j>3&&j!=20)  option[j].style.display="none";
       }
    }
}
SubtitleLanguage();

/*关闭VIP购买*/
function Hide_vip(){ 
if(window.location.pathname=="/mybonus.php"){
    var ali=document.getElementById("bonuses").getElementsByTagName("li");
    ali[12].style.display="none";
}
}
Hide_vip();

/*联系客服链接QQ群*/
function helplink(){ 
   if(window.location.pathname=="/staff.php"){
      var aa=document.getElementById("outer").getElementsByTagName("a");
      aa[0].href="http://jq.qq.com/?_wv=1027&k=2Il6hcg";
   }
}
helplink();

</script></div>
            <div style="margin-top: 10px; margin-bottom: 30px; text-align: center;" id="tech-stats">
	(c) <a href="https://hudbt.hust.edu.cn" target="_self">蝴蝶-HUDBT</a>2009-2024 <br /><br />
      
	[page created in <b> 0.012676000595093 @ 0.063463926315308 </b> sec with <b>3</b> db queries, <b>2</b> reads and <b>1 </b> writes of memcached and <b>4.50 MiB</b> ram]
      </div>
            
      
      <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=(removed)"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-109928995-1');
</script>

<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id=(removed) src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1270796792' type='text/javascript'%3E%3C/script%3E"));</script>
      
    </footer>
  </div>
  </body>
</html>
2024-05-12 10:21:48.4959 Debug WebClient(HttpWebClient2).GetResultAsync(Method: GET Url: https://hudbt.hust.edu.cn/torrents.php?incldead=0&picktype=0&spstate=0&search_area=0&search_mode=0&sort=4&type=desc&notnewword=1)
2024-05-12 10:21:48.6948 Debug WebClient(HttpWebClient2): Returning Redirect => https://hudbt.hust.edu.cn/login.php?returnto=%2Ftorrents.php%3Fincldead%3D0%26picktype%3D0%26spstate%3D0%26search_area%3D0%26search_mode%3D0%26sort%3D4%26type%3Ddesc%26notnewword%3D1 0 bytes
2024-05-12 10:21:48.6998 Info Test search in HUDBT(蝴蝶) => Found 0 releases [1157ms]
2024-05-12 10:21:48.6998 Debug Saving new config file: C:\ProgramData\Jackett\Indexers\hudbt.json.2139ca31942f4ceca4c545879b98329c.tmp
2024-05-12 10:21:48.6998 Info Executed action Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole) in 1162.7701ms
2024-05-12 10:21:48.6998 Info Executed endpoint 'Jackett.Server.Controllers.IndexerApiController.Test (JackettConsole)'
2024-05-12 10:21:48.6998 Error System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.

[v0.21.2580.0] System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.
   at Jackett.Common.Services.IndexerManagerService.TestIndexer(String name) in ./Jackett.Common/Services/IndexerManagerService.cs:line 330
   at Jackett.Server.Controllers.IndexerApiController.Test() in ./Jackett.Server/Controllers/IndexerApiController.cs:line 132
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeInnerFilterAsync>g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker)
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker)
   at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in ./Jackett.Server/Middleware/CustomExceptionHandler.cs:line 26

2024-05-12 10:21:48.7293 Debug The response will be compressed with 'br'.
2024-05-12 10:21:48.7293 Debug Connection id "0HN3I58CRCGK7" completed keep alive response.
2024-05-12 10:21:48.7293 Info Request finished HTTP/1.1 POST http://127.0.0.1:9117/api/v2.0/indexers/hudbt/test - 0 - 500 - application/json 1201.5536ms

@ilike2burnthing
Copy link
Contributor

ilike2burnthing commented May 12, 2024

The login error block needs to be changed to:

  error:
    - selector: div#stderr:has(h2:contains("失败"))

Also remove the secret login input, save the file, delete the indexer, restart Jackett, and try adding the indexer again. If that doesn't work, remove all inputs apart from username, password, and the captcha's imagestring.

The login test needs a selector as well, probably something like below, but you can play around with that after:

  test:
    path: index.php
    selector: a[href="logout.php"]

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

The login error block needs to be changed to:

  error:
    - selector: div#stderr:has(h2:contains("失败"))
    - selector: div#stderr:has(h2:contains("登录失败"))

Also remove the secret login input, save the file, delete the indexer, restart Jackett, and try adding the indexer again. If that doesn't work, remove all inputs apart from username, password, and the captcha's imagestring.

The login test needs a selector as well, probably something like below, but you can play around with that after:

  test:
    path: index.php
    selector: a[href="logout.php"]

I followed your suggestion and changed my yaml. And this time I am sure that the indexer could login successfully due to the error when I typed the worry password.
The changed config is below. Because of the selector of selector: a[href="logout.php"] can't match of HUDBT like <li><form action="//hudbt.hust.edu.cn/logout.php" method="post"><input type="submit" class="a" value="退出" /></form></li> So, I changed it.

error:
  - selector: div#stderr:has(h2:contains("失败"))
  - selector: div#stderr:has(h2:contains("登录失败"))
  test:
    path: index.php
    selector: form[action="//hudbt.hust.edu.cn/logout.php"]

But the same erorr occured.

05-12 11:15:43 Error System.Exception: Test search in HUDBT(蝴蝶) => Found no results while trying to browse this tracker. This may be an issue with the indexer, or other indexer settings such as search freeleech only etc.

@ilike2burnthing
Copy link
Contributor

ilike2burnthing commented May 12, 2024

Use:

form[action$="logout.php"]

If that doesn't work, provide both your new YAML code and a new enhanced log.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

Use:

form[action$="logout.php"]

If that doesn't work, provide both your new YAML code and a new enhanced log.

The yaml for HUDBT:
---
id: hudbt
name: HUDBT(蝴蝶)
description: "HUDBT is a CHINESE Private Torrent Tracker for HD MOVIES / TV"
language: zh-CN
type: private
encoding: UTF-8
links:
  - https://hudbt.hust.edu.cn/

caps:
  categorymappings:
    - {id: 401, cat: Movies, desc: "Movies/电影"}
    - {id: 402, cat: TV, desc: "TV Series/剧集"}
    - {id: 403, cat: TV, desc: "TV Shows/综艺"}
    - {id: 404, cat: TV/Documentary, desc: "Documentaries/纪录片"}
    - {id: 405, cat: TV/Anime, desc: "Animations/动漫"}
    - {id: 406, cat: Audio/Video, desc: "Music Videos/音乐"}
    - {id: 407, cat: TV/Sport, desc: "Sports/体育"}
    - {id: 408, cat: PC, desc: "Software/软件"}
    - {id: 409, cat: PC/Games, desc: "Games/游戏"}
    - {id: 411, cat: Books, desc: "Books/纪录片"}
    - {id: 410, cat: Other, desc: "Other/其他"}

  modes:
    search: [q]
    tv-search: [q, season, ep, imdbid, doubanid]
    movie-search: [q, imdbid, doubanid]
    music-search: [q]

settings:
  - name: username
    type: text
    label: Username
  - name: password
    type: password
    label: Password
  - name: freeleech
    type: checkbox
    label: Search freeleech only
    default: false
  - name: sort
    type: select
    label: Sort requested from site
    default: 4
    options:
      4: created
      7: seeders
      5: size
      1: title
  - name: type
    type: select
    label: Order requested from site
    default: desc
    options:
      desc: desc
      asc: asc
  - name: info_tpp
    type: info
    label: Results Per Page
    default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
  - name: info_activity
    type: info
    label: Account Inactivity
    default: "Account retention rules:<ol><li>Veteran User and above will be retained forever</li><li>Elite User and above will not be deleted after parking (in the control panel)</li><li>Users with a parked account who do not log in for 240 consecutive days will be deleted</li><li>Users with non-parked account will be deleted if they do not log in for 120 consecutive days</li><li>Users with no traffic (that is, upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days, or if the registration time reaches 60 days.</li></ol>"

login:
  path: login.php
  method: form
  form: form[action="takelogin.php"]
  captcha:
    type: image
    selector: img[alt="CAPTCHA"]
    input: imagestring
  inputs:
    secret: ""
    username: "{{ .Config.username }}"
    password: "{{ .Config.password }}"
    logout: ""
    securelogin: ""
    ssl: yes
    trackerssl: yes
  error:
  - selector: div#stderr:has(h2:contains("失败"))
  - selector: div#stderr:has(h2:contains("登录失败"))
  test:
    path: index.php
    selector: form[action$="logout.php"]


search:
  paths:
    - path: torrents.php
  inputs:
    $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
    # currently supports only one query id at one time.
    search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }} {{ else }}{{ .Keywords }}{{ end }}{{ if .Query.DoubanID }}{{ .Query.DoubanID }}{{ else }}{{ end }}"
    # 0 incldead, 1 active, 2 dead
    incldead: 0
    # 0 all, 1 normal, 2 popular, 3 classic, 4 recomended, 5 0day, 6 imdb top 250
    picktype: 0
    # 0 all, 1 normal, 2 free, 3 2x, 4 2xfree, 5 50%, 6 2x50%, 7 30%, 8 special offer, 9 all promotions
    spstate: "{{ if .Config.freeleech }}9{{ else }}0{{ end }}"
    # 0 title, 1 descr, 2 subtitltes, 3 uploader, 4 imdburl
    search_area: "{{ if .Query.IMDBID }}4{{ else }}{{ end }}{{ if .Query.DoubanID }}1{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }}{{ else }}0{{ end }}"
    # 0 AND, 1 OR, 2 exact
    search_mode: 0
    sort: "{{ .Config.sort }}"
    type: "{{ .Config.type }}"
    notnewword: 1

  rows:
    selector: table.torrents > tbody > tr:has(table.torrentname)

  fields:
    category:
      selector: a[href*="cat="]
      attribute: href
      filters:
        - name: querystring
          args: cat
    title_default:
      selector: a[href^="details.php?id="]
    title:
      selector: a[title][href^="details.php?id="]
      attribute: title
      optional: true
      default: "{{ .Result.title_default }}"
      filters:
        - name: re_replace
          args: ["^\\[([^\\]]+)\\]\\[([^\\]]+)\\]\\[([^\\]]+)\\](.*)$", "$3 [$1][$2]$4"]
    details:
      selector: a[href^="details.php?id="]
      attribute: href
    download:
      selector: a[href^="download.php?id="]
      attribute: href
    imdbid:
      selector: a[href*="imdb.com/title/tt"]
      attribute: href
    date_elapsed:
      # time type: time elapsed (default)
      selector: td:nth-child(4) > span[title]
      attribute: title
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-dd HH:mm:ss zzz"
    date_added:
      # time added
      selector: td:nth-child(4):not(:has(span))
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-ddHH:mm:ss zzz"
    date:
      text: "{{ if or .Result.date_elapsed .Result.date_added }}{{ or .Result.date_elapsed .Result.date_added }}{{ else }}now{{ end }}"
    size:
      selector: td:nth-child(5)
    seeders:
      selector: td:nth-child(6)
    leechers:
      selector: td:nth-child(7)
    grabs:
      selector: td:nth-child(8)
    downloadvolumefactor:
      case:
        font.free: 0
        font.twoupfree: 0
        font.halfdown: 0.5
        font.twouphalfdown: 0.5
        font.thirtypercent: 0.3
        "*": 1
    uploadvolumefactor:
      case:
        font.twouphalfdown: 2
        font.twoupfree: 2
        font.twoup: 2
        "*": 1
    minimumratio:
      text: 0.8
    description:
      selector: td:nth-child(2)
      remove: a, b, font, img, span
# NexusPHP HUDBT自优化版本 2013-05-13

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

Use:

form[action$="logout.php"]

If that doesn't work, provide both your new YAML code and a new enhanced log.

The enchanced log:
log.txt

@garfield69
Copy link
Contributor

the good news is that you are now able to login in successfully and are able to access the torrents.php page.

what remains to do now is to update the indexer to process the torrents.php page correctly.

stand by for an updated indexer for you to try soon.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

assigned

So, I should update the search part of the YAML or just close the issues

@ilike2burnthing
Copy link
Contributor

I'll post an update for you to check shortly. I'll close the issue once we're done.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

I'll post an update for you to check shortly. I'll close the issue once we're done.

Thanks a lot. 谢谢兄弟

@ilike2burnthing
Copy link
Contributor

ilike2burnthing commented May 12, 2024

hudbt.yml
---
id: hudbt
name: HUDBT (蝴蝶)
description: "HUDBT (蝴蝶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL"
language: zh-CN
type: private
encoding: UTF-8
links:
  - https://hudbt.hust.edu.cn/

caps:
  categorymappings:
    - {id: 401, cat: Movies, desc: "大陆电影"}
    - {id: 413, cat: Movies, desc: "港台电影"}
    - {id: 414, cat: Movies, desc: "亚洲电影"}
    - {id: 415, cat: Movies, desc: "欧美电影"}
    - {id: 430, cat: PC/Mobile-iOS, desc: "iPad"}
    - {id: 433, cat: Movies, desc: "抢先视频"}
    - {id: 402, cat: TV, desc: "大陆剧集"}
    - {id: 417, cat: TV, desc: "港台剧集"}
    - {id: 416, cat: TV, desc: "亚洲剧集"}
    - {id: 418, cat: TV, desc: "欧美剧集"}
    - {id: 404, cat: TV/Documentary, desc: "纪录片"}
    - {id: 407, cat: TV/Sport, desc: "体育"}
    - {id: 403, cat: TV, desc: "大陆综艺"}
    - {id: 419, cat: TV, desc: "港台综艺"}
    - {id: 420, cat: TV, desc: "亚洲综艺"}
    - {id: 421, cat: TV, desc: "欧美综艺"}
    - {id: 408, cat: Audio, desc: "华语音乐"}
    - {id: 422, cat: Audio, desc: "日韩音乐"}
    - {id: 423, cat: Audio, desc: "欧美音乐"}
    - {id: 424, cat: Audio, desc: "古典音乐"}
    - {id: 425, cat: Audio, desc: "原声音乐"}
    - {id: 406, cat: Audio/Video, desc: "音乐MV"}
    - {id: 409, cat: Other/Misc, desc: "其他"}
    - {id: 432, cat: Books/EBook, desc: "电子书"}
    - {id: 405, cat: TV/Anime, desc: "完结动漫"}
    - {id: 427, cat: TV/Anime, desc: "连载动漫"}
    - {id: 428, cat: TV/Anime, desc: "剧场OVA"}
    - {id: 429, cat: TV/Anime, desc: "动漫周边"}
    - {id: 410, cat: PC/Games, desc: "游戏"}
    - {id: 431, cat: Console, desc: "游戏视频"}
    - {id: 411, cat: PC/0day, desc: "软件"}
    - {id: 412, cat: Books, desc: "学习"}
    - {id: 426, cat: PC/Mac, desc: "MAC"}
    - {id: 1037, cat: Other, desc: "HUST"}

  modes:
    search: [q]
    tv-search: [q, season, ep, imdbid, doubanid]
    movie-search: [q, imdbid, doubanid]
    music-search: [q]
    book-search: [q]

settings:
  - name: username
    type: text
    label: Username
  - name: password
    type: password
    label: Password
  - name: freeleech
    type: checkbox
    label: Search freeleech only
    default: false
  - name: sort
    type: select
    label: Sort requested from site
    default: 4
    options:
      4: created
      7: seeders
      5: size
      1: title
  - name: type
    type: select
    label: Order requested from site
    default: desc
    options:
      desc: desc
      asc: asc
  - name: info_tpp
    type: info
    label: Results Per Page
    default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
  - name: info_activity
    type: info
    label: Account Inactivity
    default: "Account retention rules:<ol><li>Veteran User and above will be retained forever</li><li>Elite User and above will not be deleted after parking (in the control panel)</li><li>Users with a parked account who do not log in for 240 consecutive days will be deleted</li><li>Users with non-parked account will be deleted if they do not log in for 120 consecutive days</li><li>Users with no traffic (that is, upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days, or if the registration time reaches 60 days.</li></ol>"

login:
  path: login.php
  method: form
  form: form[action="takelogin.php"]
  captcha:
    type: image
    selector: img[alt="CAPTCHA"]
    input: imagestring
  inputs:
    username: "{{ .Config.username }}"
    password: "{{ .Config.password }}"
    logout: ""
    securelogin: ""
    ssl: yes
    trackerssl: yes
  error:
    - selector: div#stderr:has(h2:contains("失败"))
  test:
    path: index.php
    selector: form[action$="logout.php"]

search:
  paths:
    - path: torrents.php
  inputs:
    $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
    # currently supports only one query id at one time.
    search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }} {{ else }}{{ .Keywords }}{{ end }}{{ if .Query.DoubanID }}{{ .Query.DoubanID }}{{ else }}{{ end }}"
    # 0 incldead, 1 active, 2 dead
    incldead: 0
    # 0 no limit, 3 3days, 7 1week, 30 1month, 90 3months
    indate: 0
    # 0 all, 1 normal, 2 free, 3 2x, 4 2xfree, 5 50%, 6 2x50%, 7 30%, 8 special offer, 9 all promotions
    spstate: "{{ if .Config.freeleech }}2{{ else }}0{{ end }}"
    # 0 title, 1 descr, 3 uploader, 4 imdburl
    search_area: "{{ if .Query.IMDBID }}4{{ else }}{{ end }}{{ if .Query.DoubanID }}1{{ else }}{{ end }}{{ if or .Query.IMDBID .Query.DoubanID }}{{ else }}0{{ end }}"
    sort: "{{ .Config.sort }}"
    type: "{{ .Config.type }}"
    notnewword: 1

  rows:
    selector: table.torrents > tbody > tr:has(div.torrent-title)

  fields:
    category:
      selector: a[href*="cat="]
      attribute: href
      filters:
        - name: querystring
          args: cat
    title_default:
      selector: a[href*="details.php?id="]
    title:
      selector: a[title][href*="details.php?id="]
      attribute: title
      optional: true
      default: "{{ .Result.title_default }}"
    details:
      selector: a[href*="details.php?id="]
      attribute: href
    download:
      selector: a[href*="download.php?id="]
      attribute: href
    date_elapsed:
      # time type: time elapsed (default)
      selector: td:nth-child(4) > span[title]
      attribute: title
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-dd HH:mm:ss zzz"
    date_added:
      # time added
      selector: td:nth-child(4):not(:has(span))
      optional: true
      filters:
        - name: append
          args: " +08:00" # CST
        - name: dateparse
          args: "yyyy-MM-ddHH:mm:ss zzz"
    date:
      text: "{{ if or .Result.date_elapsed .Result.date_added }}{{ or .Result.date_elapsed .Result.date_added }}{{ else }}now{{ end }}"
    size:
      selector: td:nth-child(5)
    seeders:
      selector: td:nth-child(6)
    leechers:
      selector: td:nth-child(7)
    grabs:
      selector: td:nth-child(8)
    downloadvolumefactor:
      case:
        img.free: 0
        img.twoupfree: 0
        img.halfdown: 0.5
        img.twouphalfdown: 0.5
        img.thirtypercent: 0.3
        "*": 1
    uploadvolumefactor:
      case:
        img.twouphalfdown: 2
        img.twoupfree: 2
        img.twoup: 2
        "*": 1
    minimumratio:
      text: 0.8
    description:
      selector: td:nth-child(2) div.torrent-title h3
# NexusPHP HUDBT自优化版本 2013-05-13

As well as just getting results, you should check that:

  • categories, size, seeders, titles, dates, download volume factor (e.g. freeleech = 0), etc. are all displayed and correct for results
  • description appears when hovering mouse over result's name
  • torrents can be downloaded
  • you can search by single and multiple categories
  • you can enable the 'search freeleech only' setting for the indexer and get back only freeleech results

I can't see anything in the rules about a minimum ratio of 0.8. Is this in the FAQ instead? Is there a minimum seed time for torrents or a hit & run (HnR) requirement?

On the website, search for tt9208876, with IMDb链接 selected as the search area (second dropdown menu under the category list). This should return only results for The Falcon and the Winter Soldier.

Similarly, search for 30367642 with IMDb链接 selected. If this doesn't work, select 简介 instead.

Check if IMDB, Douban, or any other information can be enabled to be displayed in your user control panel on the website.

@Aicnal
Copy link
Author

Aicnal commented May 12, 2024

hudbt.yml
As well as just getting results, you should check that:

  • categories, size, seeders, titles, dates, download volume factor (e.g. freeleech = 0), etc. are all displayed and correct for results
  • description appears when hovering mouse over result's name
  • torrents can be downloaded
  • you can search by single and multiple categories
  • you can enable the 'search freeleech only' setting for the indexer and get back only freeleech results

I can't see anything in the rules about a minimum ratio of 0.8. Is this in the FAQ instead? Is there a minimum seed time for torrents or a hit & run (HnR) requirement?

On the website, search for tt9208876, with IMDb链接 selected as the search area (second dropdown menu under the category list). This should return only results for The Falcon and the Winter Soldier.

Similarly, search for 30367642 with IMDb链接 selected. If this doesn't work, select 简介 instead.

Check if IMDB, Douban, or any other information can be enabled to be displayed in your user control panel on the website.

I have tested the new YAML and it worked pretty well.
You are right, there is no rules about a minimun ratio of 0.8. And there is no asking of H&R.
The info_activity for HUDBT is:

*什么情况下帐号(ID)会被警告或禁止(BAN)?*
1.下载量和上传量都为0且连续30天没有登录的用户将被删除帐号;
2.有流量的用户: 未Park的用户120天不登录将被删除帐号, Park的用户240天不登录将被删除帐号, Elite User及以上用户Park后不会被删除帐号;
3.翩跹(Veteran User)及以上用户会永远保留账号;
4.系统会向所有不活跃用户发送帐号删除提示。
其他详情请参看 蝴蝶-HUDBT 奖惩方案

If possible, I hope we could update this YAML into the next version of Jackett.

@ilike2burnthing
Copy link
Contributor

Can you reply to these as well? Then I can get the last changes added:

On the website, search for tt9208876, with IMDb链接 selected as the search area (second dropdown menu under the category list). This should return only results for The Falcon and the Winter Soldier.

Similarly, search for 30367642 with IMDb链接 selected. If this doesn't work, select 简介 instead.

Check if IMDB, Douban, or any other information can be enabled to be displayed in your user control panel on the website.

@Aicnal
Copy link
Author

Aicnal commented May 13, 2024

Can you reply to these as well? Then I can get the last changes added:

On the website, search for tt9208876, with IMDb链接 selected as the search area (second dropdown menu under the category list). This should return only results for The Falcon and the Winter Soldier.
Similarly, search for 30367642 with IMDb链接 selected. If this doesn't work, select 简介 instead.
Check if IMDB, Douban, or any other information can be enabled to be displayed in your user control panel on the website.

Yes, I have tried it.
I tested it as 流浪地球 or the tt13539646, the indexer both could return the right result.
Also, I noticed that in the last update of Jackett. The support of HUDBT had been added.

屏幕截图 2024-05-13 124932 3bc6757c30e4fc4705c0c67a8c0d731

The enhanced logging :
log.txt

@ilike2burnthing
Copy link
Contributor

Those questions are about testing on the website itself, not Jackett.

@Aicnal
Copy link
Author

Aicnal commented May 13, 2024

Those questions are about testing on the website itself, not Jackett.

Sorry for the misunderstanding.
0db1ddc0fa55c8ab0b4d102182ea78c
ae267f9cc5cf231d804f52c581f0942
c199fd4aff968350ca6ef3d418ccacf
2560c3da3e8c9d5e2698449176e4a36
Anything works well.

@ilike2burnthing
Copy link
Contributor

No worries! Thanks, I'll add the last changes and then close the issue. They'll be available in the next release, in ~18hrs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants