diff --git a/src/source/HDHub4u.test.ts b/src/source/HDHub4u.test.ts new file mode 100644 index 0000000..a6478e6 --- /dev/null +++ b/src/source/HDHub4u.test.ts @@ -0,0 +1,28 @@ +import { createTestContext } from '../test'; +import { FetcherMock, ImdbId } from '../utils'; +import { HDHub4u } from './HDHub4u'; + +const ctx = createTestContext(); + +describe('HDHub4u', () => { + let source: HDHub4u; + + beforeEach(() => { + source = new HDHub4u(new FetcherMock(`${__dirname}/__fixtures__/HDHub4u`)); + }); + + test('handle superman 2025', async () => { + const streams = await source.handle(ctx, 'movie', new ImdbId('tt5950044', undefined, undefined)); + expect(streams).toMatchSnapshot(); + }); + + test('handle stranger things s05e01', async () => { + const streams = await source.handle(ctx, 'series', new ImdbId('tt4574334', 5, 1)); + expect(streams).toMatchSnapshot(); + }); + + test('handle stranger things s05e08', async () => { + const streams = await source.handle(ctx, 'series', new ImdbId('tt4574334', 5, 8)); + expect(streams).toMatchSnapshot(); + }); +}); diff --git a/src/source/HDHub4u.ts b/src/source/HDHub4u.ts new file mode 100644 index 0000000..793fbbb --- /dev/null +++ b/src/source/HDHub4u.ts @@ -0,0 +1,120 @@ +import * as cheerio from 'cheerio'; +import { ContentType } from 'stremio-addon-sdk'; +import { Context, CountryCode, Meta } from '../types'; +import { Fetcher, findCountryCodes, getImdbId, Id, ImdbId } from '../utils'; +import { resolveRedirectUrl } from './hd-hub-helper'; +import { Source, SourceResult } from './Source'; + +interface SearchResponsePartial { + hits: { + document: { + imdb_id: string; + permalink: string; + post_title: string; + }; + }[]; +} + +export class HDHub4u extends Source { + public readonly id = 'hdhub4u'; + + public readonly label = 'HDHub4u'; + + public readonly contentTypes: ContentType[] = ['movie', 'series']; + + public readonly countryCodes: CountryCode[] = [CountryCode.multi, CountryCode.gu, CountryCode.hi, CountryCode.ml, CountryCode.pa, CountryCode.ta, CountryCode.te]; + + public readonly baseUrl = 'https://new5.hdhub4u.fo'; + + private readonly searchUrl = 'https://search.pingora.fyi'; + + private readonly fetcher: Fetcher; + + public constructor(fetcher: Fetcher) { + super(); + + this.fetcher = fetcher; + } + + public async handleInternal(ctx: Context, _type: string, id: Id): Promise { + const imdbId = await getImdbId(ctx, this.fetcher, id); + + const pageUrls = await this.fetchPageUrls(ctx, imdbId); + + return (await Promise.all( + pageUrls.map(async (pageUrl) => { + return await this.handlePage(ctx, pageUrl, imdbId); + }), + )).flat(); + }; + + private readonly handlePage = async (ctx: Context, pageUrl: URL, imdbId: ImdbId): Promise => { + const html = await this.fetcher.text(ctx, pageUrl); + + const $ = cheerio.load(html); + + const meta = { + countryCodes: [CountryCode.multi, ...findCountryCodes($('div:contains("Language"):not(:has(div)):first').text())], + }; + + if (!imdbId.episode) { + return [ + ...this.extractHubDriveUrlResults(html, meta), + ...(await Promise.all( + $('a[href*="gadgetsweb"]').map((_i, el) => this.handleHubLinks(ctx, new URL($(el).attr('href') as string), pageUrl, meta)), + )).flat(), + ]; + } + + return [ + ...(await Promise.all( + $(`a:contains("EPiSODE ${imdbId.episode}"), a:contains("EPiSODE ${String(imdbId.episode).padStart(2, '0')}")`) + .map(async (_i, el) => this.handleHubLinks(ctx, new URL($(el).attr('href') as string), pageUrl, meta)), + )).flat(), + ...this.extractHubDriveUrlResults( + $(`h4:contains("EPiSODE ${imdbId.episode}"), h4:contains("EPiSODE ${String(imdbId.episode).padStart(2, '0')}")`) + .first() + .nextUntil('hr') + .map((_i, el) => $.html(el)) + .get() + .join(''), + meta, + ), + ]; + }; + + private readonly handleHubLinks = async (ctx: Context, redirectUrl: URL, refererUrl: URL, meta: Meta): Promise => { + const hubLinksUrl = await resolveRedirectUrl(ctx, this.fetcher, redirectUrl); + const hubLinksHtml = await this.fetcher.text(ctx, hubLinksUrl, { headers: { Referer: refererUrl.href } }); + + return [ + ...this.extractHubDriveUrlResults(hubLinksHtml, { ...meta, referer: hubLinksUrl.href }), + ]; + }; + + private readonly extractHubDriveUrlResults = (html: string, meta: Meta): SourceResult[] => { + console.log(html); + const $ = cheerio.load(html); + + return $('a[href*="hubdrive"]') + .map((_i, el) => ({ url: new URL($(el).attr('href') as string), meta })) + .toArray(); + }; + + private readonly fetchPageUrls = async (ctx: Context, imdbId: ImdbId): Promise => { + const searchUrl = new URL(`/collections/post/documents/search?query_by=imdb_id&q=${encodeURIComponent(imdbId.id)}`, this.searchUrl); + const searchResponse = await this.fetcher.json(ctx, searchUrl, { headers: { Referer: this.baseUrl } }) as SearchResponsePartial; + + return searchResponse.hits + .filter(hit => + hit.document.imdb_id === imdbId.id + && ( + !imdbId.season + || hit.document.post_title.includes(`Season ${imdbId.season}`) + || hit.document.post_title.includes(`S${String(imdbId.season)}`) + || hit.document.post_title.includes(`S${String(imdbId.season).padStart(2, '0')}`) + ), + ) + .map(hit => new URL(hit.document.permalink, this.baseUrl)); + }; +} diff --git a/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob0xsTnVZSXpQZHV2blJMVGphOWtWQ2RwUlVvTVY2aFdWZ2JmNU9KYVNtN0E9 b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob0xsTnVZSXpQZHV2blJMVGphOWtWQ2RwUlVvTVY2aFdWZ2JmNU9KYVNtN0E9 new file mode 100644 index 0000000..d5b4944 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob0xsTnVZSXpQZHV2blJMVGphOWtWQ2RwUlVvTVY2aFdWZ2JmNU9KYVNtN0E9 @@ -0,0 +1,20 @@ + + +Redirecting ... + + + + + + + + + +Redirecting .. + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob1k2endGNEZ1OG52dllqNGtCeFVDeVBqV2hDTU9mS3JXZlpIS3lBVVYxNUk9 b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob1k2endGNEZ1OG52dllqNGtCeFVDeVBqV2hDTU9mS3JXZlpIS3lBVVYxNUk9 new file mode 100644 index 0000000..b01f6db --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob1k2endGNEZ1OG52dllqNGtCeFVDeVBqV2hDTU9mS3JXZlpIS3lBVVYxNUk9 @@ -0,0 +1,20 @@ + + +Redirecting ... + + + + + + + + + +Redirecting .. + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2VncWFyUWlUSC9hazNyN2VPa0tVSFZmZ2Z2amg4a3BRYnRVVEJhd1cwaWc9 b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2VncWFyUWlUSC9hazNyN2VPa0tVSFZmZ2Z2amg4a3BRYnRVVEJhd1cwaWc9 new file mode 100644 index 0000000..c3558ca --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2VncWFyUWlUSC9hazNyN2VPa0tVSFZmZ2Z2amg4a3BRYnRVVEJhd1cwaWc9 @@ -0,0 +1,20 @@ + + +Redirecting ... + + + + + + + + + +Redirecting .. + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2ZYeEs5QzYxeDZTdDJTblFKaUF0RUZWRzlGRWo3TXRZdjNxblJMUUZNLzg9 b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2ZYeEs5QzYxeDZTdDJTblFKaUF0RUZWRzlGRWo3TXRZdjNxblJMUUZNLzg9 new file mode 100644 index 0000000..c2550a8 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidOXRTYkYxajl6b09RSTBZbnh5Z0ZxUTIyL04vVG05ajBTZytSbHpVZzlpNVZrdFdBdXRNc3RYZUo0YmJiOEZob2ZYeEs5QzYxeDZTdDJTblFKaUF0RUZWRzlGRWo3TXRZdjNxblJMUUZNLzg9 @@ -0,0 +1,20 @@ + + +Redirecting ... + + + + + + + + + +Redirecting .. + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidekt3a0x3c0pnVUpVTXZKVWhVZTR5cWtPQ2RobDlST2tBUzdUMUVjbkVYTEVaWXA1SzRsYlBZZzZ3QXBJaWc4VExwZUVablVKRjRONVRnNUFMdERmS2htVE5DTWlEcHRJVHVXSTdZbmxjUEU9 b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidekt3a0x3c0pnVUpVTXZKVWhVZTR5cWtPQ2RobDlST2tBUzdUMUVjbkVYTEVaWXA1SzRsYlBZZzZ3QXBJaWc4VExwZUVablVKRjRONVRnNUFMdERmS2htVE5DTWlEcHRJVHVXSTdZbmxjUEU9 new file mode 100644 index 0000000..329f1b6 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:gadgetsweb.xyzidekt3a0x3c0pnVUpVTXZKVWhVZTR5cWtPQ2RobDlST2tBUzdUMUVjbkVYTEVaWXA1SzRsYlBZZzZ3QXBJaWc4VExwZUVablVKRjRONVRnNUFMdERmS2htVE5DTWlEcHRJVHVXSTdZbmxjUEU9 @@ -0,0 +1,20 @@ + + +Redirecting ... + + + + + + + + + +Redirecting .. + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives102319 b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives102319 new file mode 100644 index 0000000..f044240 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives102319 @@ -0,0 +1,373 @@ + + + + + + + + +Stranger Things S05-E08 – HUBLinks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + +
+
+
+
+ + + + + + + +
+
+ + +
+ + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95882 b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95882 new file mode 100644 index 0000000..6ca02c2 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95882 @@ -0,0 +1,365 @@ + + + + + + + + +Superman (2025) 1080p DS4K – HUBLinks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + +
+
+
+
+ + + +
+ +
+

Note: Use Chrome / iDM /ADM For better Downloading Experience.

+
+
+

+
+

+
+

+
+

+
+ +
+ +
+ + + +
+
+ + +
+ + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95883 b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95883 new file mode 100644 index 0000000..960b4c2 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95883 @@ -0,0 +1,365 @@ + + + + + + + + +Superman (2025) 1080p 10Bit DS4K – HUBLinks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + +
+
+
+
+ + + +
+ +
+

Note: Use Chrome / iDM /ADM For better Downloading Experience.

+
+
+

+
+

+
+

+
+

+
+ +
+ +
+ + + +
+
+ + +
+ + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95884 b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95884 new file mode 100644 index 0000000..be0c1e5 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95884 @@ -0,0 +1,365 @@ + + + + + + + + +Superman (2025) 720p DS4K – HUBLinks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + +
+
+
+
+ + + +
+ +
+

Note: Use Chrome / iDM /ADM For better Downloading Experience.

+
+
+

+
+

+
+

+
+

+
+ +
+ +
+ + + +
+
+ + +
+ + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95885 b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95885 new file mode 100644 index 0000000..b73fce4 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:hblinks.dadarchives95885 @@ -0,0 +1,365 @@ + + + + + + + + +Superman (2025) 720p 10Bit DS4K – HUBLinks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + +
+
+
+
+ + + +
+ +
+

Note: Use Chrome / iDM /ADM For better Downloading Experience.

+
+
+

+
+

+
+

+
+

+
+ +
+ +
+ + + +
+
+ + +
+ + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-hindi-webrip-all-episodes b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-hindi-webrip-all-episodes new file mode 100644 index 0000000..df126e9 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-hindi-webrip-all-episodes @@ -0,0 +1,5343 @@ + Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-1 Added] – HDHub4u Official +
+
+
+
ร— + +Avoid FAKE Copies of + +HDHub4u + +on Google, + + +Always use + +HDHub4u.Tv + +With VPN to get Official Domain & Follow us on + + +Discord + + + For Latest Updates.


+ + +Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-1 Added]


Download Stranger Things (Season 5) Hindi DD5.1 WEB-DL 2160p 1080p 720p & 480p Dual Audio Free Download.
+Stranger Things S05 All Episodes [Hindi (DD5.1) & English] | Watch Stranger Things (Season 5) NF Series Online !

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series


Stranger Things (Season 5)

iMDB Rating: 8.6/10
Genre: Action | Adventure | Mystery | Fantasy | Sci-Fi
Stars: Millie Bobby Brown, Finn Wolfhard, Winona Ryder
Creator: Matt Duffer, Ross Duffer
No. of Episodes: 4 [VOL-1]
Language: Dual Audio [Hindi (DD5.1) + English] / ESubs
Quality: WEB-DL 4K | 1080p | 720p | 480p

: Screen-Shots :

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h29m08s395.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h30m26s089.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h32m17s223.th.jpg


Download Stranger Things S05 [Hindi Dubbed] All Episodes HD !

: DOWNLOAD LINKS :



: Single Episode x264 Links :


EPiSODE 1

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


EPiSODE 2

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


EPiSODE 3

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


EPiSODE 4

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


Index of Stranger Things S05 Hindi



Stranger Things (Season 5) Hindi Dubbed [DD5.1] | NetFlix | Watch Online

DESCRIPTION: : Stranger Things (Season 5) Dual Audio [Hindi (DD5.1) + English] 720p HDRip x264 1GB Watch Online [G-Drive] 9xmovies, world4ufree, world4free, Khatrimaza 123Movies fmovies Gomovies gostream 300Mb Dual Audio Hindi Dubbed | Stranger Things 720p WEBRip x264 AC3 ESub Dual Audio [Hindi (ORG 5.1) + English] DD5.1 Download Google Drive links Free on HDHub4u | Latest Movies & Series Free Download & Watch Online | AMAZON PRIME | NETFLIX Free Download .


Download Stranger Things (Season 5) Hindi ALL Episodes โ€“ Storyline:

Download Stranger Things S05 Hindi Dubbed 720p HDRip: In 1980s Indiana, a group of young friends witness supernatural forces and secret government exploits. As they search for answers, the children unravel a series of extraordinary mysteries.

Download Stranger Things S05 Hindi HDRip Review :

Stranger Things is absolutely as good as everyone says it is. When a show is as talked about about as much as this one has been it’s hard to live up to expectations. Stranger Things has not only met those expectations but has surpassed them in every way. This is the show that our Netflix on the map as far as original shows go as this was not only one of their first but their biggest. As much as I love this show it’s probably time for it for end and it is. This upcoming season is going to be the last. We have literally watched this cast grow up, they were children when this show first started and now they’re all in their 20’s. I can’t wait for this last season and going to miss it when it’s gone!

Stranger Things (Season 5) streaming: Watch online and Download | Free Downloadย Stranger Things S05ย All Episodes in Hindi 480p 720p 1080p HDRip HD x264 HEVC 10bit NETFLIX Action Sci-Fi Series | Index Of Stranger Things S05ย | WEBRip Watch Online on HDHub4u

Did you Like it?
1.5K Reactions
Excellent
Excellent
1.2K
Loved
Loved
115
Thanks
Thanks
63
Wow
Wow
19
Sad
Sad
102
+ Subscribe +
Notify of
+
+
+
+guest
+
+
+312 Comments
+Newest +
+Oldest
Inline Feedbacks
View all comments
+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] - Movieshome
+ +16 days ago

[…] VOL โ€“ 1 HERE […]

+trackback
+Download Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 | EP-08 Added] – Moviemitra
+ +1 month ago

[…] VOL โ€“ 1 [E01-04] HERE […]

+trackback
+Download Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] – Moviemitra
+ +1 month ago

[…] VOL โ€“ 1 HERE […]

+Asaif
+Asaif
+ +2 months ago

Vol 3 kb ayega mai wait kr raha hu

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 Added] | Khatrimaza
+ +2 months ago

[…] VOL โ€“ 1 [E01-04] HERE […]

+Sohil khan
+Sohil khan
+ +2 months ago

Guy’s mujhe koi btayega Total 8 episode hai ya 7 episode hai

+Gajendra
+Gajendra
+ +2 months ago

Diablo 4 movie

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] - Hubflix4u
+ +2 months ago

[…] VOL โ€“ 1 HERE […]

+Sagar
+Sagar
+ +2 months ago

Volume 1 kaise download karu

+RAJ GAMER
+RAJ GAMER
+ +2 months ago

I KINDLY REQUEST YOU TO HDHUB4U PRODUCTION TEAM SHOULD YOU PLEASE UPLOAD A MASTER CLASS MOVIE NAME AMERICAN PHYCHO MILLION OF FANโ€™S EXCITED FOR WATCHING THIS MOVIE IN HINDI DUBBED VERSION UNFORTUNATELY IS NOT AVAILABILE IN AMAZON PRIME EVEN NETFLIX YOUR HINDI DUBBED TEAM IS SO ACCURATE AND BEST DUBBED ARTIST EVEN I SEEN MANY MOVIE YOU DUBBED VERSION IS AMAZING IS BETTER THAN ORIGINAL SHOULD PLEASE PLEASE UPLOAD โ€œAMARICAN PHYCHOโ€ MOVIE IN HINDI DUBBED VERSION PLEASE HDHUB4U TEAM ๐Ÿ˜ญ

Kindly request to you available soon!!! โค๏ธ๐Ÿ’ซ

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] - HDHub4u
+ +2 months ago

[…] VOL โ€“ 1 HERE […]

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] - Movies Counter
+ +2 months ago

[…] VOL โ€“ 1 HERE […]

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] | Khatrimaza
+ +2 months ago

[…] VOL โ€“ 1 HERE […]

+diyan anjani
+diyan anjani
+ +2 months ago

where is volume 02 session 5

+Dhruv
+Dhruv
+ +2 months ago

Bhai volume 2 yaha per hab aayega

+Saantnu
+Saantnu
+ +2 months ago

Volume 2 when???

+Mahesh
+Mahesh
+ +2 months ago

Bro vol2 ka episode 5 upload kar do please

+Asaas
+Asaas
+ +2 months ago

Upload vol2 fast

+Mohsin
+Mohsin
+ +2 months ago

One season more

+Prince
+Prince
+ +2 months ago

Bro upload volume 2 fast

+Somesh
+Somesh
+ +2 months ago

Where is vol. 2

+Hdhub4u
+Hdhub4u
+ +2 months ago

All episodes will be available by 1 pm.

+Jiya Rathore
+Jiya Rathore
+ +2 months ago
+ +Reply to  + +Hdhub4u +

Last time we got episodes till 8am

+Mohit
+Mohit
+ +2 months ago
+ +Reply to  + +Jiya Rathore +

Yes I think adim will upload on 8 am

+Ujjwal
+Ujjwal
+ +2 months ago

Volume 2 kab ayyega yaar

+roy
+roy
+ +2 months ago

vol 2 nahi aa bhai

+Ajuu
+Ajuu
+ +2 months ago

Bhai volume2 kab dalega yaar

+Fan of Team Hdhub4u
+Fan of Team Hdhub4u
+ +2 months ago

Episodes are On th Way (Wait till 8 am ) 1080p

+Sachin singh
+Sachin singh
+ +2 months ago
+ +Reply to  + +Fan of Team Hdhub4u +

Official news h

+Vijay
+Vijay
+ +2 months ago

Volume 2 bro

+MLone
+MLone
+ +2 months ago

vol 2?

+Ashish
+Ashish
+ +2 months ago

Hlo brother stranger things season 5 volume 2 add kar do jaldi

+Prajay
+Prajay
+ +2 months ago

Ep 5-7
+Kab aayega ?

+Prince
+Prince
+ +2 months ago

Vol 2 abhi tak kyu nhi aaya

+Alex
+Alex
+ +2 months ago

Volume 2 kab add hoga I am waiting for it please add it asap

+Tasif
+Tasif
+ +2 months ago

Hey hdhub4u community. Where is volume 2 of stranger things season 5? And when it will uploaded in your website?

+Sachin singh
+Sachin singh
+ +2 months ago

Kam se kam ek time bta do please control nahi ho rha ek time likh do please

+Hdhubdishant
+Hdhubdishant
+ +2 months ago

Guys can i stream 1080p or hd quality on my laptop directly without download??

+MLone
+MLone
+ +2 months ago

How many hours until Volume 2 is released here in 4K?

+Sachin singh
+Sachin singh
+ +2 months ago

Kab daloge volume 2 please jldi kro

+Krishna
+Krishna
+ +2 months ago

Bro are you listening plz vol2 upload

+Krishna
+Krishna
+ +2 months ago

Plaz upload vol2

+Krishna
+Krishna
+ +2 months ago

Plz upload bro vol2

+Shubham Singh
+Shubham Singh
+ +2 months ago

Volume 2 bro

+Parth
+Parth
+ +2 months ago

Bro when ?
+Upload vol 2 faster please

+Nikn
+Nikn
+ +2 months ago

Volume 2 kab ayega ?

+MAX
+MAX
+ +2 months ago

upload Volume 2

+Krishna
+Krishna
+ +2 months ago

Plzzz plzzz please ๐Ÿฅบ volume 2 add plz๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป

+UMANG
+UMANG
+ +2 months ago

Volume 2?

+Parth
+Parth
+ +2 months ago

Bro please add volume 2 faster

+Princexd56
+Princexd56
+ +2 months ago

Vol 2 daal do

+Sachin
+Sachin
+ +2 months ago

Volume 2 kab aayega Bhai

+Saddy
+Saddy
+ +2 months ago

Episode 5 to end kbtk ayega?

+Sameer
+Sameer
+ +2 months ago

Part 2 wen?

+Kunal Raghav
+Kunal Raghav
+ +2 months ago

Please post 5,6,7 episodes. Thanks a ton!

+Hari
+Hari
+ +2 months ago

By when will you add Volume 2. ( Hindi )
+Date & time please ?

+meow
+meow
+ +2 months ago

vol 2 please

+vedmapuran
+vedmapuran
+ +2 months ago

bhai live with an actress ka movie kyun nai ari hai use dhekho jara please

+Pradeep
+Pradeep
+ +2 months ago

Stranger things seasons 5 volume 2 Upload in 4K DV HDR FIRST

+DJ ๐Ÿ”ฅ
+DJ ๐Ÿ”ฅ
+ +2 months ago

Bhai Netflix pe air ho gaya hai ap kab upload karo ga?

+DJ ๐Ÿ”ฅ
+DJ ๐Ÿ”ฅ
+ +2 months ago

Bhai vol 2 kab upload karo ga?

+Sahil
+Sahil
+ +2 months ago

Aj to vol.2 ana tha

+Moxil
+Moxil
+ +2 months ago

When vol 3 comes

+Kaushal desai
+Kaushal desai
+ +2 months ago

Waiting for vol 2

+Agyar39
+Agyar39
+ +2 months ago

Volume 2 kab daloge?

+Anmol
+Anmol
+ +2 months ago
+ +Reply to  + +Agyar39 +

netflix pe kal 6.30am pe aayega

+Fardeeen
+Fardeeen
+ +2 months ago
+ +Reply to  + +Agyar39 +

Brother 7 hu bj gyekab daloge 6 ka tha time

+Mayank
+Mayank
+ +2 months ago
+ +Reply to  + +Agyar39 +

Inki maa rahi hai dene mai

+Sumit
+Sumit
+ +2 months ago

Vol 2 kab tk aa jayega

+Daku
+Daku
+ +2 months ago

bhai vol2 25dec ko drop hoga kya kyunki india me 26 ko hone wala hai is it ppssible

+Anonymous
+Anonymous
+ +2 months ago

Please upload next episodes

+Rocky
+Rocky
+ +3 months ago

Hey hdhub4u owner thank you for season 5 but I request Korean drama island web series please upload HDhub4u ๐Ÿ™

+Raaj
+Raaj
+ +3 months ago

5 apesod kab เค†เคเค—เคพ 5 เคธเฅ€เคœเคจ เค•เคพ 5 ma เคธเฅ€เคœเคจ เค•เคฌ เคคเค• เค†เคเค—เคพ ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ๐Ÿฅบ

+Sudhanshu
+Sudhanshu
+ +3 months ago

5episode kab ayega

+Alamsaab
+Alamsaab
+ +3 months ago

Bhai jaan vol 2 kab uplod hoga

+Strange
+Strange
+ +3 months ago

5-8 episode kaha hai

+Pawan
+Pawan
+ +3 months ago

error is occurring while playing the video

+Devesh
+Devesh
+ +3 months ago

1plus

+Papun
+Papun
+ +3 months ago

Papun

+Upendra
+Upendra
+ +3 months ago

Or episode dalde bhai

+Upendra
+Upendra
+ +3 months ago

Or episode dalo brother

+Antaryami
+Antaryami
+ +3 months ago

Season 5 ka episode 5 nhi he ?

+har
+har
+ +3 months ago

why hubdrive links are not clickable

+Shree
+Shree
+ +3 months ago

Bro upload Akhanda 2 as soon as possible

+Alma
+Alma
+ +3 months ago

Ep 5?

+Tanvir
+Tanvir
+ +3 months ago

Arcane in hindi

+Kayu
+Kayu
+ +3 months ago

Arcane in hindi

+Uday
+Uday
+ +3 months ago

Arcane in hindi

+Rahul
+Rahul
+ +3 months ago

Arcane in hindi

+Vijay
+Vijay
+ +3 months ago

Arcane in hindi

+Austin
+Austin
+ +3 months ago

Unable to Unzip the 1080p Zip file after downloading. Error Currupted File. For all seasons of Stranger Thimgs

+Sahil raja
+Sahil raja
+ +3 months ago
+ +Reply to  + +Austin +

Zip master download it

+King Baldwin
+King Baldwin
+ +3 months ago

Bro also add single episodes in 480p

+Dhyan
+Dhyan
+ +3 months ago

This is a goddamn shit! !! โค๏ธ

+Sufiyan
+Sufiyan
+ +3 months ago

Volume 2 kab aayega

+Shahrukh
+Shahrukh
+ +3 months ago

Next episode kab tak milega

+sim
+sim
+ +3 months ago

what about ep 5 whn you upload

+Riduu
+Riduu
+ +3 months ago

Yr next episodes kb aaye gi

+Sai
+Sai
+ +3 months ago

Episode 5 upload karona bhai

+Sardraj
+Sardraj
+ +3 months ago

Episode 5 kab upload hoga

+Lucky
+Lucky
+ +3 months ago

44 GB wali 4K file me Hindi audio work nahi kar rha please fix this issue

+Sonu
+Sonu
+ +3 months ago

Sab season 4k mein kab tak aayenge

+surya
+surya
+ +3 months ago

upload also the first shadow of stranger thing documentry

+Rajan ray
+Rajan ray
+ +3 months ago

Plz upload the running man

+Saurabh
+Saurabh
+ +3 months ago

Hindi audio not working

+Pardeep
+Pardeep
+ +3 months ago

Perfect femily S01 2025

+mukhtar tarar
+mukhtar tarar
+ +3 months ago

love you

+Noman
+Noman
+ +3 months ago

Bro ye season pora to nhe hai bas 4 apisodes han ๐Ÿ˜ฅ Why

+harman
+harman
+ +3 months ago

bhai mai toh 1 january ko dakhu ga full season

+Ersad
+Ersad
+ +3 months ago

Please season 6

+Ersad
+Ersad
+ +3 months ago

Next part

+Holly
+Holly
+ +3 months ago

good

+Holly
+Holly
+ +3 months ago

bro upload episode 5 and 6

Edit: ohh sorry that is not Realesed yet

+Amrit
+Amrit
+ +3 months ago

Bro can you give me the file which contain 4K and dolby atmos with 7.1.4 channels

+pranjal
+pranjal
+ +3 months ago

relise ep 5-6-7-8 pleez

+Rased
+Rased
+ +3 months ago

Is there any more episode only 4 episodes

+Amir
+Amir
+ +3 months ago

Volume 2 sir plz

+Adnan Ali
+Adnan Ali
+ +3 months ago

Upload season 4 please

+Max
+Max
+ +3 months ago

Vol 2

+Divesh sahu
+Divesh sahu
+ +3 months ago

Thanku ๐Ÿฅฐ

+Aniruddh
+Aniruddh
+ +3 months ago

Wait for episode 5

+Akash
+Akash
+ +3 months ago

Upload Season 4

+Prathmesh
+Prathmesh
+ +3 months ago

Hindi audio nahi aa rahi bhai

+sudeep
+sudeep
+ +3 months ago

im not able to downloading it
+anyone!!! can help mee to solve this problem

+ramdhyankumar
+ramdhyankumar
+ +3 months ago

Full episode hai episode 4 ending

+Aditya Rajawat
+Aditya Rajawat
+ +3 months ago

HDR not supported

+Md Aamir
+Md Aamir
+ +3 months ago

Thanku admin for sharing such contents

+Yogesh
+Yogesh
+ +3 months ago

Bro please upload 1080p x264 file size in 19 GB In Tamil and Multi Audio Please

+David
+David
+ +3 months ago

Yo Yo Working Like Rocket, Thanks Bro ๐Ÿ™‚

+Ayan
+Ayan
+ +3 months ago

I downloaded DV around 44.50 GB but there’s no Hindi audio, please check The problem.

+Luck
+Luck
+ +3 months ago
+ +Reply to  + +Ayan +

Mr too

+mr mack
+mr mack
+ +3 months ago

thanks for uplaod stranger things season 5

+Vishnu jat
+Vishnu jat
+ +3 months ago

When i downloaded 4k hdr 44 gb zip file it is playing in tamil not in hindi. I selected all the languages but hindi is not working other are working.

+Sam
+Sam
+ +3 months ago

Man you’re so good thank you so much for this top notch quality everytime I download I deliberately click on ads to get you more revenue thanks man

+Rajesh Narale
+Rajesh Narale
+ +3 months ago

โค๏ธ for the person bcoz of whome I started watching this series.

+DILNAWAZ KHAN
+DILNAWAZ KHAN
+ +3 months ago

4k Quality mei Hindi audio gayab hai bhai

+Vishnu bhojak
+Vishnu bhojak
+ +3 months ago

Hindi m nhi hai audio not working HDhub4u

+EDDY
+EDDY
+ +3 months ago

Use comet browser otherwise you will be face issues like link not loading or too many ads

+Mahipal
+Mahipal
+ +3 months ago

I have downloaded 13 gb and 16 gb files but I can’t able to open it why?

+Sai
+Sai
+ +3 months ago
+ +Reply to  + +Mahipal +

I think you have downloaded the zip file tap on it and then extract the files you will get the episodes

+Suraj
+Suraj
+ +3 months ago

House of David season 2 upload karo Bhai

+Minakshi
+Minakshi
+ +3 months ago

Koi mujhe bataega isko download kaise karte h mai to online bhi nahi dekh pa rahi hu

+Sai
+Sai
+ +3 months ago
+ +Reply to  + +Minakshi +

Click on the drive which is under the episode and then hub cloud server then Generate Download link and then download it

+King
+King
+ +3 months ago

1080pร—264 5.9gb k baad wla koi sahi nhi chal rha h . Check

+Faiz ali
+Faiz ali
+ +3 months ago

Or episode kab aayge

+Billi
+Billi
+ +3 months ago

Thank You Team HDHUB โค๏ธ

+somil
+somil
+ +3 months ago

bhai pls upload season1,2,3,4

+Logan
+Logan
+ +3 months ago

Hi

+Priyan
+Priyan
+ +3 months ago

Lalo upload karo gujrati movie

+Priyan
+Priyan
+ +3 months ago

Lalo gujarati movie please

+Kashan Ali
+Kashan Ali
+ +3 months ago

4k epwise mein audio problem hai hindi audio nhi hai 2nd epi mein 1st epi ka voice aara

+Bhaskar Barman
+Bhaskar Barman
+ +3 months ago

Taxi Driver 1976 hindi dubbed 720p 10bit please

+Bhaskar Barman
+Bhaskar Barman
+ +3 months ago

Taxi Driver 1976 hindi dubbed 720p 10bit please ๐Ÿ™

+Satya
+Satya
+ +3 months ago

Only 4 episode

+Adarsh raj
+Adarsh raj
+ +3 months ago
+ +Reply to  + +Satya +

Only 4 episode…!
+Next episodes kb kroge bhai upload yrr aise nah tadpaoe

+Londa
+Londa
+ +3 months ago
+ +Reply to  + +Satya +

5 kaha hai bro ep?

+Homelander
+Homelander
+ +3 months ago

Arey bsdk hindi audio nahi aa rha hai kya chuaap kia hai 30 gb ki file ki maa chod diii

+Pusssy
+Pusssy
+ +3 months ago
+ +Reply to  + +Homelander +

๐Ÿฅฒ

+Suraj
+Suraj
+ +3 months ago
+ +Reply to  + +Homelander +

Ha bhai mere me hindi audio support nai kar raha hai

+Himanshu yadav
+Himanshu yadav
+ +3 months ago

The 4k does not have hindi track, they showing hindi but playing in kannada

+Israil
+Israil
+ +3 months ago

Thank u admin for upload this

+Duronto
+Duronto
+ +3 months ago

Please Upload Suriya Kanguva Movie Original Hindi Dub

+Ankit
+Ankit
+ +3 months ago

link not working

+Lucky
+Lucky
+ +3 months ago

Upload in 2k also please

+name
+name
+ +3 months ago

4k mai hindi audio ki dikkat hai, maybe mismatched please fix as soon as possible

+Asif
+Asif
+ +3 months ago

Files extract nhi ho pa rhi admin bhai

+Farhan
+Farhan
+ +3 months ago

Isme season 5 complete hai n??

And thanks admin bhaii, you r gem!!

+Ashik
+Ashik
+ +3 months ago

Lot of thanks

+Imran
+Imran
+ +3 months ago

1080p hevc please

+Keshwar
+Keshwar
+ +3 months ago

Admin Single Episode 1080 HEVC 10Bite B Upload Kar Kro Full Episodes Aik Bar Mein Download Nhi Hotain Jis Wajah Sy Muj Ko Katmovesi Sy Jar Kar Single Episodes Karne Padtay Hain Tum Single Episodes 265 Ki Quality Mein Dalte Ho Jo MB Zayed Latain Hain Toh Sare Episodes Aik File Mein Extract K Bijaye Single Single 1080 HEVC 10 bite Dala Kro

+Lucifer
+Lucifer
+ +3 months ago

Bhai 60 ya 120FPS me available ho aesi koi website h aapki?

+Jason
+Jason
+ +3 months ago

When will you upload 1080p 10bit ST5

+Phantom
+Phantom
+ +3 months ago

Sir pls upload the all seasons your old season 3 2 part is not available pls upload.

+khalid
+khalid
+ +3 months ago

what happen to ep 4?

+Lucifer
+Lucifer
+ +3 months ago

Bro hindi audio kaha hai??

+RamNaresh Pandit
+RamNaresh Pandit
+ +3 months ago

Upload Movie: King Arthur Legend Of The Sword (2017) in 4K 2K 1080p60fps HD Quality.

+dev
+dev
+ +3 months ago

bro on 4khdhub DoVi-HDR stranger things 5.1 is not playing in hindi – size 42.47 gb……showing track but not playing
+Instead of hindi track it playing Tamil audio….

+Foxy
+Foxy
+ +3 months ago
+ +Reply to  + +dev +

use vlc media player

+Nitin
+Nitin
+ +3 months ago
+ +Reply to  + +Foxy +

Nai ho raha ha

+Preetu
+Preetu
+ +3 months ago
+ +Reply to  + +dev +

Bhai mx player pe try Karo uss pe run kar jayegi
+Uss par language change karne ka bhi option h

+Logan
+Logan
+ +3 months ago
+ +Reply to  + +dev +

On Which Platform you are tyring to play Android/PC/Laptop????

+dexter
+dexter
+ +3 months ago

4k mai hindi dalo bhai missing h hindi audio bhkk 44gb bekar gya h jaldi thik krooooooooooo

+Irfan
+Irfan
+ +3 months ago

4k kab uploaded ho ha

+Irfan
+Irfan
+ +3 months ago

Thanks u

+Rahul
+Rahul
+ +3 months ago

Bro jo 4k me hai usme hindi dub nhi aa raha hai hindi select Kiya toh bhi Tamil ya telgu me bol rahe hai 44 gb ka download Kiya tha file ye dekhne kaliye ? Hindi dub dalo 4k me

+Nitin
+Nitin
+ +3 months ago
+ +Reply to  + +Rahul +

๐Ÿฅฒ๐Ÿ˜ญ

+dexter
+dexter
+ +3 months ago
+ +Reply to  + +Rahul +

same bhai

+Rdrajput
+Rdrajput
+ +3 months ago

Laalo gujarati movie upload karo bro please

+Obed
+Obed
+ +3 months ago

Zootopia 2 download

+aryan
+aryan
+ +3 months ago

ravi bhai loat aoo\

+arjun
+arjun
+ +3 months ago

voice problem

+dash
+dash
+ +3 months ago

Hindi audio missing in 4k repack zip

+dexter
+dexter
+ +3 months ago
+ +Reply to  + +dash +

same bro

+JEET
+JEET
+ +3 months ago

where is 4k?!?!?!

+dev
+dev
+ +3 months ago

upload 4k please……….

+Skr
+Skr
+ +3 months ago

Bhai taarak mehta ka ulta chasma ke bhi episode dalo please

+dexter
+dexter
+ +3 months ago

hindi audio mai koi dusra language aarha ha fix it in 4k

+Ankit gill
+Ankit gill
+ +3 months ago

Not working bro

+Vishal
+Vishal
+ +3 months ago

4k????

+Nazmul
+Nazmul
+ +3 months ago

4K quality kab aaega

+Alone boy
+Alone boy
+ +3 months ago

Thanks

+khalid
+khalid
+ +3 months ago

vai ki koro?

+Muffle
+Muffle
+ +3 months ago

Only ep 1 downloading rest not working

+Noob gaming
+Noob gaming
+ +3 months ago

Please 720p

+Faizan
+Faizan
+ +3 months ago

Link open he nhi ho rahi hai

+Darm
+Darm
+ +3 months ago

Yr 2 3 4 ep add kro fast

+Yogesh
+Yogesh
+ +3 months ago

Single episode link not working

+Sudesh Mahto
+Sudesh Mahto
+ +3 months ago

Sirf Episode 1 hi upload hua hai๐Ÿ˜‘

+Download karna nahi mil rah hey jaldi dal dye
+Download karna nahi mil rah hey jaldi dal dye
+ +3 months ago

Vsdk

+Sahil
+Sahil
+ +3 months ago

4k quality please

+manvi
+manvi
+ +3 months ago

not working

+random
+random
+ +3 months ago

Thanks! Best Website ever. Expecting in 4k soon.

+Exophine
+Exophine
+ +3 months ago

Thankyou soo much man, ๐Ÿ”ฅ

+khalid
+khalid
+ +3 months ago

4 ep at ones not downloding

+Yah
+Yah
+ +3 months ago

4k me dedo bhai

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Yah +

bhai koi batayega main inki 4k resolution movie kis phone main smoothly dekh sakta hu kyunki mere phone main 4k movie download to ho jati hai par smoothly play nhi karti please koi iska solution bataye

+Ram
+Ram
+ +3 months ago

Upload kro bhai other quality

+Doreamon
+Doreamon
+ +3 months ago

720 single episode please

+Rashid Ahmad
+Rashid Ahmad
+ +3 months ago

Upload the running man & now you see me Hindi please

+Lve
+Lve
+ +3 months ago

4k me nhi hai season 5

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Lve +

bhai koi batayega main inki 4k resolution movie kis phone main smoothly dekh sakta hu kyunki mere phone main 4k movie download to ho jati hai par smoothly play nhi karti please koi iska solution bataye

+Yash
+Yash
+ +3 months ago

4k quality
+Fast

+Dev
+Dev
+ +3 months ago

4k quality upload please

+Rafid
+Rafid
+ +3 months ago

Raise a donation for the admin

+Biki
+Biki
+ +3 months ago

Why am unable hear the audio in 4k download

+Zulqarnain
+Zulqarnain
+ +3 months ago

All episode drive fix please

+Zulqarnain
+Zulqarnain
+ +3 months ago

2 episode ke drive bhijo

+Annniiii
+Annniiii
+ +3 months ago

ep 1 upload hogya?

+Anik
+Anik
+ +3 months ago

720?

+Jjjjj
+Jjjjj
+ +3 months ago

Legend never die
+Ravi bhai. And
+Hdhub4u owner

+Maxx
+Maxx
+ +3 months ago

you guys are deserve 21 topo ki salami

+soham
+soham
+ +3 months ago

single episode link jldi upload karo bhao

+Aslain
+Aslain
+ +3 months ago

4K link not working

+Tkdon
+Tkdon
+ +3 months ago

Brother upload in 4k plzz

+Karan sen
+Karan sen
+ +3 months ago

Laajavaabโค๏ธ

+Rishi
+Rishi
+ +3 months ago

Brother upload in 4k

+Manoj Chaudhary
+Manoj Chaudhary
+ +3 months ago

Fastest website ever

+Anurag
+Anurag
+ +3 months ago

Jaldi daal be

+swastik
+swastik
+ +3 months ago

more qualities upload krdo.

+Abhi
+Abhi
+ +3 months ago

Pura to upload kr bhai

+Shivam
+Shivam
+ +3 months ago
+ +Reply to  + +Abhi +

Three parts me ayega dec 25 then finale episode in 31 dec

+Prince
+Prince
+ +3 months ago
+ +Reply to  + +Shivam +

26 Dec Official date he pr India me 27 Rakh ke chalo

+Pradyumna
+Pradyumna
+ +3 months ago

When I get to download

+Sharjeel
+Sharjeel
+ +3 months ago

Bas 4 episodes baki episodes kab aye gy?

+Tanvir
+Tanvir
+ +3 months ago
+ +Reply to  + +Sharjeel +

Next month

+Himanshu
+Himanshu
+ +3 months ago

Links are not available yet

+Sharjeel
+Sharjeel
+ +3 months ago

Bas 4 episodes baki episodes kab aye gy ?

+Tanvir
+Tanvir
+ +3 months ago
+ +Reply to  + +Sharjeel +

Next month

+sgdgd
+sgdgd
+ +3 months ago

It has started downloading

+Jor
+Jor
+ +3 months ago

Hello Admin, watch link are not open??

+Ai Guru
+Ai Guru
+ +3 months ago

Thank you โค๏ธ

+Mava
+Mava
+ +3 months ago

Bro Telugu audio

+Risher
+Risher
+ +3 months ago

Shukriya bhaiiii itni jaldi li aaye tum

+Aryan
+Aryan
+ +3 months ago

How much time more

+Raman Kumar
+Raman Kumar
+ +3 months ago

Jaldi upload karo sir ji please

+Mostafijur Rahaman
+Mostafijur Rahaman
+ +3 months ago

4k quality kab aiyga?

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Mostafijur Rahaman +

1bhai koi batayega main inki 4k resolution movie kis phone main smoothly dekh sakta hu kyunki mere phone main 4k movie download to ho jati hai par smoothly play nhi karti please koi iska solution bataye

+uzair
+uzair
+ +3 months ago
+ +Reply to  + +Oon +

vlc plyer me chalao

+Gaurav
+Gaurav
+ +3 months ago

4k me ayega abhi ya nhi ?

+Arun
+Arun
+ +3 months ago

Download link not working niggers

+Aloo
+Aloo
+ +3 months ago
+ +Reply to  + +Arun +

Exactly bhai

+Zamir
+Zamir
+ +3 months ago
+ +Reply to  + +Aloo +

Ya i can’t download Ep02

+Arun
+Arun
+ +3 months ago
+ +Reply to  + +Aloo +

Ikr man them shitty ass mfs just listed that to show that they got the series before other sites but irl they don’t have it.

+sgdgd
+sgdgd
+ +3 months ago

It is not downloading.

+Bhargov
+Bhargov
+ +3 months ago
+ +Reply to  + +sgdgd +

Same here

+Tutahuasamosa
+Tutahuasamosa
+ +3 months ago

Bro kab upload hoga?

+Ai Guru
+Ai Guru
+ +3 months ago

Thank you โค๏ธโค๏ธ

+imran
+imran
+ +3 months ago
+ +Reply to  + +Ai Guru +

03403425154

+sgdgd
+sgdgd
+ +3 months ago

It is not downloading

+keshav
+keshav
+ +3 months ago

jaldi daal de bhai

+Aryan
+Aryan
+ +3 months ago

Admin you are too good I visited every site but you are the fastest one

+Kuldeep
+Kuldeep
+ +3 months ago

Thank you admin for upload stranger things season 5 your site is best

+Harekrushna Gajendra
+Harekrushna Gajendra
+ +3 months ago

Thankyou admin
+For uploading Season 5.

+Habib khan
+Habib khan
+ +3 months ago
+ +Reply to  + +Harekrushna Gajendra +

Bro season 4 nhi hai kya

+Dev
+Dev
+ +3 months ago

4k quality upload

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Dev +

Brother, can someone tell me on which phone I can watch their 4K resolution movies smoothly because 4K movies get downloaded on my phone but do not play smoothly. Please tell me a solution for this.

+billu
+billu
+ +3 months ago
+ +Reply to  + +Oon +

use vlc or mx player

+ddwqeqw
+ddwqeqw
+ +3 months ago

link not working

+Adarsh
+Adarsh
+ +3 months ago
+ +Reply to  + +ddwqeqw +

Hub colud me karo

+Hades
+Hades
+ +3 months ago

Yo it’s out

+Gill
+Gill
+ +3 months ago

Upload in 4k first

+Kumar
+Kumar
+ +3 months ago
+ +Reply to  + +Gill +

Hindi audio track not work

+NAWAZ IDRISI
+NAWAZ IDRISI
+ +3 months ago
+ +Reply to  + +Gill +

Itna data bhi hai tere pass..๐Ÿ˜‚

+Prem kumar
+Prem kumar
+ +3 months ago
+ +Reply to  + +NAWAZ IDRISI +

Are bhai 5G hai tu konsi duniya main hai

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Prem kumar +

Bhai kon se phone main dekhte ho 4k resolution movie mere phone main to smoothly nhi chalti please help kon sa phone lu android batana

+Fuck u
+Fuck u
+ +3 months ago
+ +Reply to  + +NAWAZ IDRISI +

Fuck uu

+RaOne
+RaOne
+ +3 months ago
+ +Reply to  + +NAWAZ IDRISI +

Pakistan se ha kya indian hota to data ke bare me bolta he bhi

+Oon
+Oon
+ +3 months ago
+ +Reply to  + +Gill +

Brother, can someone tell me on which phone I can watch their 4K resolution movies smoothly because 4K movies get downloaded on my phone but do not play smoothly. Please tell me a solution for this. (bhai koi batayega main inki 4k resolution movie kis phone main smoothly dekh sakta hu kyunki mere phone main 4k movie download to ho jati hai par smoothly play nhi karti please koi iska solution bataye)

+Ash khan
+Ash khan
+ +3 months ago
+ +Reply to  + +Oon +

Bhai mx player me dekho ya dusre Play Store se search karke dekho jisme sare quality k support ho

+Abdul
+Abdul
+ +3 months ago
+ +Reply to  + +Oon +

IQ 15

+Rohit mhetre
+Rohit mhetre
+ +3 months ago
+ +Reply to  + +Oon +

Watch on vlc app on playstore

+Shakeel
+Shakeel
+ +3 months ago
+ +Reply to  + +Oon +

Samsung s20 ultra

+Mohammad Amjad
+Mohammad Amjad
+ +3 months ago
+ +Reply to  + +Oon +

Brother ya to phone change kar lo ya phir apne phone ko Root kar lo smooth chalegi fir

+Prashant
+Prashant
+ +3 months ago
+ +Reply to  + +Oon +

Play it app download Karo bro

+Hitesh Fx
+Hitesh Fx
+ +3 months ago
+ +Reply to  + +Oon +

Tujhe sirf jyada ram rom ka phone chahiye bas 8 -256 is sufficient

+Mex
+Mex
+ +3 months ago
+ +Reply to  + +Hitesh Fx +

Only 4 episodes in season 5 ? I thought it’s 8…!

+Akhil
+Akhil
+ +3 months ago
+ +Reply to  + +Oon +

Vlc player mai try karo chalni chahiye

+Rox
+Rox
+ +3 months ago
+ +Reply to  + +Oon +

Use vlc app it runs smoothly

+Aramiys
+Aramiys
+ +3 months ago
+ +Reply to  + +Oon +

Sam-s25ultra

+Ankush kumar
+Ankush kumar
+ +3 months ago
+ +Reply to  + +Oon +

Mx player best app hi best quality of vidios

+sumit
+sumit
+ +3 months ago
+ +Reply to  + +Oon +

vlc se dekho

+Hamza Shahzad
+Hamza Shahzad
+ +3 months ago
+ +Reply to  + +Oon +

Samsung A55 or A56

+Manish
+Manish
+ +3 months ago
+ +Reply to  + +Oon +

iPhone mai dekh bro

+Rian
+Rian
+ +2 months ago
+ +Reply to  + +Oon +

Bro change your phone
+Buy new phone to enjoy 4k videos like me โœ‹โœ‹

+Shahrukh Khan
+Shahrukh Khan
+ +2 months ago
+ +Reply to  + +Oon +

Bhai vlc download karke uspe play kar

+Rakesh
+Rakesh
+ +2 months ago
+ +Reply to  + +Oon +

Use vlc player for smooth

+Scientist
+Scientist
+ +2 months ago
+ +Reply to  + +Oon +

If your processor is capable and support 4k video, use VLC media for Play.

+Pradeep
+Pradeep
+ +2 months ago
+ +Reply to  + +Oon +

PC LE LE

+Md Talha
+Md Talha
+ +2 months ago
+ +Reply to  + +Oon +

Jis phone mein hD supported. Ho usme hi agar tu YouTube pe 2010p par video dekh leta h to Tera mobile shi h video download kr k vlc media player application se video play kr agar fir bhi lagg kare to fir you can buy any 4k supporting phone just search on YouTube your budget see the reviews in which they explains about resolution of videos… Have fun child …Ho Ho Ho I’m Santa ๐Ÿฅธ

+Lethalx
+Lethalx
+ +2 months ago
+ +Reply to  + +Oon +

Your phone might not be the compatible with 4k resulotion

+Mohsin
+Mohsin
+ +2 months ago
+ +Reply to  + +Oon +

Pc main dakho

+Amlesh
+Amlesh
+ +2 months ago
+ +Reply to  + +Oon +

use VLCmedia app



+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-2-hindi-webrip-all-episodes b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-2-hindi-webrip-all-episodes new file mode 100644 index 0000000..0ae663e --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-2-hindi-webrip-all-episodes @@ -0,0 +1,6473 @@ + Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added] – HDHub4u Official +
+
+
+
ร— + +Avoid FAKE Copies of + +HDHub4u + +on Google, + + +Always use + +HDHub4u.Tv + +With VPN to get Official Domain & Follow us on + + +Discord + + + For Latest Updates.


+ + +Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added]


Download Stranger Things (Season 5) Hindi DD5.1 WEB-DL 2160p 1080p 720p & 480p Dual Audio Free Download.
+Stranger Things S05 All Episodes [Hindi (DD5.1) & English] | Watch Stranger Things (Season 5) NF Series Online !

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series


Stranger Things (Season 5)

iMDB Rating: 8.6/10
Genre: Action | Adventure | Mystery | Fantasy | Sci-Fi
Stars: Millie Bobby Brown, Finn Wolfhard, Winona Ryder
Creator: Matt Duffer, Ross Duffer
No. of Episodes: 3 [VOL-2]
Language: Dual Audio [Hindi (DD5.1) + English] / ESubs
Quality: WEB-DL 4K | 1080p | 720p | 480p

: Screen-Shots :

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h29m08s395.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h30m26s089.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h32m17s223.th.jpg


Download Stranger Things S05 [Hindi Dubbed] All Episodes HD !

: DOWNLOAD LINKS :



: Single Episode x264 Links :


EPiSODE 5

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


EPiSODE 6

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


EPiSODE 7

720p –ย Drive | Instant |ย WATCH

1080p – Drive | Instant


Index of Stranger Things S05 Hindi



Stranger Things (Season 5) Hindi Dubbed [DD5.1] | NetFlix | Watch Online

DESCRIPTION: : Stranger Things (Season 5) Dual Audio [Hindi (DD5.1) + English] 720p HDRip x264 1GB Watch Online [G-Drive] 9xmovies, world4ufree, world4free, Khatrimaza 123Movies fmovies Gomovies gostream 300Mb Dual Audio Hindi Dubbed | Stranger Things 720p WEBRip x264 AC3 ESub Dual Audio [Hindi (ORG 5.1) + English] DD5.1 Download Google Drive links Free on HDHub4u | Latest Movies & Series Free Download & Watch Online | AMAZON PRIME | NETFLIX Free Download .


Download Stranger Things (Season 5) Hindi ALL Episodes โ€“ Storyline:

Download Stranger Things S05 Hindi Dubbed 720p HDRip: In 1980s Indiana, a group of young friends witness supernatural forces and secret government exploits. As they search for answers, the children unravel a series of extraordinary mysteries.

Download Stranger Things S05 Hindi HDRip Review :

Stranger Things is absolutely as good as everyone says it is. When a show is as talked about about as much as this one has been it’s hard to live up to expectations. Stranger Things has not only met those expectations but has surpassed them in every way. This is the show that our Netflix on the map as far as original shows go as this was not only one of their first but their biggest. As much as I love this show it’s probably time for it for end and it is. This upcoming season is going to be the last. We have literally watched this cast grow up, they were children when this show first started and now they’re all in their 20’s. I can’t wait for this last season and going to miss it when it’s gone!

Stranger Things (Season 5) streaming: Watch online and Download | Free Downloadย Stranger Things S05ย All Episodes in Hindi 480p 720p 1080p HDRip HD x264 HEVC 10bit NETFLIX Action Sci-Fi Series | Index Of Stranger Things S05ย | WEBRip Watch Online on HDHub4u

Did you Like it?
1.3K Reactions
Excellent
Excellent
938
Loved
Loved
97
Thanks
Thanks
80
Wow
Wow
19
Sad
Sad
120
+ Subscribe +
Notify of
+
+
+
+guest
+
+
+500 Comments
+Newest +
+Oldest
Inline Feedbacks
View all comments
+Lok
+Lok
+ +1 month ago

เคธเคฌ เคฒเคพเค‡เคจ เคตเคฐเฅเค•เคฟเค‚เค— เคนเฅˆ เคฌเฅเคฐเฅ‹ เคธเคฌ เคกเคพเค‰เคจเคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ, เคฌเคนเฅเคค-เคฌเคนเฅเคค เคงเคจเฅเคฏเคตเคพเคฆ เคฎเฅ‡เคฐเฅ‡ เคญเคพเค‡เคฏเฅ‹เค‚

+Sumit
+Sumit
+ +2 months ago

8t episode please upload brother ๐Ÿ™๐Ÿป

+trackback
+Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 Added] | Khatrimaza
+ +2 months ago

[…] VOL โ€“ 2 [E05-07] HERE […]

+mirza
+mirza
+ +2 months ago

download links of single eps 6 and 7 are not working

+Kittu Babu
+Kittu Babu
+ +2 months ago
+ +Reply to  + +mirza +

Sab working hai brave use kro

+Anonymous
+Anonymous
+ +2 months ago

Episode 6, 7 link is not working.

+Aman Sonkar
+Aman Sonkar
+ +2 months ago

Arey yarr 1 se kyu nahi hai iska or episode

+Seerat
+Seerat
+ +2 months ago

you are amzing

+Manthan
+Manthan
+ +2 months ago

Episode 8 Not Upload

+Manthan
+Manthan
+ +2 months ago

Episode 8

+Tushar
+Tushar
+ +2 months ago

Stranger things ka last episode la de bhai

+Ashi
+Ashi
+ +2 months ago

8 episode ???

+Olly
+Olly
+ +2 months ago

Final episode kahan hai

+Roshmit
+Roshmit
+ +2 months ago

Send brother last finale 8th episode can’t wait

+Ayush
+Ayush
+ +2 months ago

Volume 3 kab upload hoga

+Rahul
+Rahul
+ +2 months ago

Bhai final episode kar de upload 11 bje gye hai morning se wait kar rha hu kb upload hu gye bhaii

+Rohit
+Rohit
+ +2 months ago

Kya stranger things 05 Volume 03 open hi nhi ho rahi

+Dervin
+Dervin
+ +2 months ago

Hi, Staranger Things Episode 8 download link not working showing 404 error

+Mohd Aquib
+Mohd Aquib
+ +2 months ago

What happened to volume 3

+Raja
+Raja
+ +2 months ago

Season 5 volume 3 final episode eror dekha Raha hai. Solve this problem

+PASH
+PASH
+ +2 months ago

bhai s5 ka last ep nahi dikhra. error show krra hai kuch kro brosky

+Rahul
+Rahul
+ +2 months ago

Bhai volume 3 kab tak karega upload

+Prof. X
+Prof. X
+ +2 months ago

Volume 3 final episode is not being uploaded yet…

+Prof. X
+Prof. X
+ +2 months ago
+ +Reply to  + +Prof. X +

page not found it is showing

+Sidharth
+Sidharth
+ +2 months ago

Bhai yrr kb dega last episode please bta de raat se check kr rha hu

+Andyy bhai
+Andyy bhai
+ +2 months ago

The link of stranger things 5 vol III is not working, it’s showing not found

+Sahil rajput
+Sahil rajput
+ +2 months ago

Vol 3 can’t opening bro plz do fast I can’t wait more

+Ashra
+Ashra
+ +2 months ago

Bhaiii volume 3 upload krde

+Sneha
+Sneha
+ +2 months ago

Episode 8 please ๐Ÿฅบ

+labubu
+labubu
+ +2 months ago
+ +Reply to  + +Sneha +

hye

+csc
+csc
+ +2 months ago

bhai episode 8 upload karoo

+Bahar
+Bahar
+ +2 months ago

When is episode 8 is coming

+Ayaz
+Ayaz
+ +2 months ago

Season 5 episode 8 not found pls this problem

+Ahmad
+Ahmad
+ +2 months ago

Bro season 5 vol 3 fast add please of strangers things

+Ashra
+Ashra
+ +2 months ago

Hey why it’s not showing volume 3?

+Xyz
+Xyz
+ +2 months ago

E8 still not out wtf is happening ๐Ÿ˜’

+Amit
+Amit
+ +2 months ago

When you drop the finale

+Raj
+Raj
+ +2 months ago

Volume 3 ka page error show ho rha h bro

+Vecna
+Vecna
+ +2 months ago

Bro volume 3 is not showing its showing 404 error

+Kartik
+Kartik
+ +2 months ago

Bhai 8th episode please upload karo par padta tumhara ๐Ÿ™๐Ÿป please

+Souraj
+Souraj
+ +2 months ago

Bro 8th ep kab upload hoga?

+Raj
+Raj
+ +2 months ago

Episode 8 kab Tak Ayega

+Hardik Dare
+Hardik Dare
+ +2 months ago

where is final ep?? time pf upload?

+Ayushkhatri
+Ayushkhatri
+ +2 months ago

Bhaiya volume 3 kyun nhin upload Kiya abhi tak ๐Ÿ˜ญ

+Lokesh
+Lokesh
+ +2 months ago

Upload the last episode

+Don't know
+Don't know
+ +2 months ago

add vol 3

+Himanshu Bhandari
+Himanshu Bhandari
+ +2 months ago

Where is Episode No.8

+Abdur
+Abdur
+ +2 months ago

Whare is the Volume 3

+suzieee
+suzieee
+ +2 months ago

upload volume threeee

+Harsh
+Harsh
+ +2 months ago

Last 8 Apisode ๐Ÿฅบ๐Ÿฅบ

+Mava
+Mava
+ +2 months ago

Bro stranger things

+Prakha
+Prakha
+ +2 months ago

Hey please uplode stranger things season 5 episode 8

+Raunak
+Raunak
+ +2 months ago

Volume 3 bhai jaldi karo

+Jay
+Jay
+ +2 months ago

Bhai final episode upload karde

+Vecna
+Vecna
+ +2 months ago

Bhai please upload episode 8 now

+Amandeep
+Amandeep
+ +2 months ago

Episode 8 ????

+Mahesh
+Mahesh
+ +2 months ago

Bro volume 3 ka episode 8 upload kar do please fast bro

+Talha
+Talha
+ +2 months ago

Upload kr do finale

+Mahesh
+Mahesh
+ +2 months ago

Bro episode 8 upload kar do please

+Jashan
+Jashan
+ +2 months ago

Ep 8 kab hoga

+Ranjan Kumar
+Ranjan Kumar
+ +2 months ago

Episode 8 kab tak aayega bhai

+Nvu
+Nvu
+ +2 months ago

Episode 8 link

+Aritra
+Aritra
+ +2 months ago

New episode kaha hai?

+Ashu
+Ashu
+ +2 months ago

Final dalo

+Rosiee
+Rosiee
+ +2 months ago

Heyy release the 8th final episode

+Rahimmallik
+Rahimmallik
+ +2 months ago

Bro when the last episode will come

+Duffer Brother
+Duffer Brother
+ +2 months ago

Please Upload Last Episode. Please bhai Zldi Upload krde

+Shivam
+Shivam
+ +2 months ago

Bhai aaj toh de do season final

+laraib
+laraib
+ +2 months ago

ep 8 kab upload hoga

+ayush
+ayush
+ +2 months ago

upload episodes 8

+laraib
+laraib
+ +2 months ago

ep 8

+Prbl
+Prbl
+ +2 months ago

Finaleeee

+ayush
+ayush
+ +2 months ago

where’s episode 8

+Ayush
+Ayush
+ +2 months ago

Bro last episode kab release hoga

+wasim
+wasim
+ +2 months ago

Bhai netmirror prepisode 8 aa bhi Gai AP jalti se upload kro

+Himanshu
+Himanshu
+ +2 months ago

Bro episode 8 upload please ๐Ÿ™ ๐Ÿ˜ญ

+Himanshu
+Himanshu
+ +2 months ago

Bro episode 8

+Ajuu
+Ajuu
+ +2 months ago

Kab dalega Bhai

+Mike
+Mike
+ +2 months ago

Please upload Volume 3 please

+sumit
+sumit
+ +2 months ago

please upload episode8

+adii
+adii
+ +2 months ago

KB TK FINAL EP AYEGA JLDI KROA

+Mahesh
+Mahesh
+ +2 months ago

Bhai episode 8 dal de yaar

+Vivek Sharma
+Vivek Sharma
+ +2 months ago

Bhai episode 8 add kro

+Ayush
+Ayush
+ +2 months ago

Vol 3

+ISHAN
+ISHAN
+ +2 months ago

KOI HAIIIIIIIIII FINAL EPISODE DALDO ๐Ÿ˜ญ

+Ritvik
+Ritvik
+ +2 months ago

Ep 8 jaldi uplod laro

+Saurabh
+Saurabh
+ +2 months ago

Bhai episode 8 kab aayega

+king
+king
+ +2 months ago

ep 8 plzz

+Anurag Kashyap
+Anurag Kashyap
+ +2 months ago

Bhai vol 3 kb upload hoga

+Rahul
+Rahul
+ +2 months ago

Final episode bro

+Shobhit
+Shobhit
+ +2 months ago

Where is episode 8 ??

+Yash
+Yash
+ +2 months ago

Where is the last episode buddy?

+Aditya
+Aditya
+ +2 months ago

Bhai stranger Things ka final episode kab ayega

+Meet
+Meet
+ +2 months ago

When final esp will release

+Buxtan
+Buxtan
+ +2 months ago

Last episode plsssss

+HITZ 33
+HITZ 33
+ +2 months ago

WAITING FOR EP 8 BROTHER

+Nikhil
+Nikhil
+ +2 months ago

Please upload episode 8 in 4k

+Vansh
+Vansh
+ +2 months ago

Please add episode 8

+Ajuu
+Ajuu
+ +2 months ago

Kitni der bhai aur

+Itachi
+Itachi
+ +2 months ago

Ep 8 fast upload kar

+Saurav
+Saurav
+ +2 months ago

Stranger things season 5 episode 8

+Saurav
+Saurav
+ +2 months ago

Episode 8

+Zuber
+Zuber
+ +2 months ago

Bhai E08 kab upload krega

+wasim
+wasim
+ +2 months ago

Volume 3 upload karo bhai

+G3tg3yg3
+G3tg3yg3
+ +2 months ago

Bhai vol. 3 ???

+Ajay j Thakor
+Ajay j Thakor
+ +2 months ago

Bhai age ke episode upload karo na

+Rez6
+Rez6
+ +2 months ago

Plz drop Stranger Things Finale episode… ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

+Krishna
+Krishna
+ +2 months ago

Please drop the finale

+Rizwan
+Rizwan
+ +2 months ago

Episode 8 why

+Arpit
+Arpit
+ +2 months ago

Episode 8 bro upload fast

+Baadshah
+Baadshah
+ +2 months ago

Final episode kab update hoga bhai

+Hiii
+Hiii
+ +2 months ago

Finale when???

+Hamdan
+Hamdan
+ +2 months ago

Waiting for last episode to release in hd hub

+Nik
+Nik
+ +2 months ago

Episode 8 kb tk upload hoga

+Ayan
+Ayan
+ +2 months ago

Give me the last episode blud you’re so late

+Sachin singh
+Sachin singh
+ +2 months ago

Kab daloge

+Krishna
+Krishna
+ +2 months ago

Bhai finale episode daldo please

+Vivek Sharma
+Vivek Sharma
+ +2 months ago

Bhai upload the episode 8 brother please

+Rahul
+Rahul
+ +2 months ago

Finale kab tak add hoga

+Mohit
+Mohit
+ +2 months ago

Ep 8 kab upload kroge bhai

+Komal
+Komal
+ +2 months ago

Episode 8 daaloo๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

+Ronak
+Ronak
+ +2 months ago

Final episode upload karo na

+Manish Khanna
+Manish Khanna
+ +2 months ago

Finale ๐Ÿ’˜

+Sanjay
+Sanjay
+ +2 months ago

Episode 8 kab aayega

+Sachin singh
+Sachin singh
+ +2 months ago

Kab tak daloge

+Sachin singh
+Sachin singh
+ +2 months ago

Khud dekhne lge kya bhai

+ayaan
+ayaan
+ +2 months ago

plz upload volume 3 plzz fast

+Aditya
+Aditya
+ +2 months ago

Final episode kaha hai

+UMANG
+UMANG
+ +2 months ago

Part 3 bro…?

+Hiii
+Hiii
+ +2 months ago

Finale kab aayega

+Alien
+Alien
+ +2 months ago

Episode 8 ?

+abhi
+abhi
+ +2 months ago

Please post vol 3 bro

+Krishna
+Krishna
+ +2 months ago

Bhai finale kab tak aayega

+burger
+burger
+ +2 months ago

Jldi daalo finale

+Patel
+Patel
+ +2 months ago

Upload Please – ST – S5 E8

+Tyler
+Tyler
+ +2 months ago

Hey bro do you upload the Final today at 31st or no please let me know.

+KirtiKamal
+KirtiKamal
+ +2 months ago

Please upload episode 8

+shiwam
+shiwam
+ +2 months ago

Will episode 8 release today?!

+Talha
+Talha
+ +2 months ago

Ep 8 when ?

+Umar
+Umar
+ +2 months ago

Bhai last episode upload kab tk krogy?

+Santosh Kumar Tiwari IHS
+Santosh Kumar Tiwari IHS
+ +2 months ago

please upload episode 8 of 5th season as soon as possible ๐Ÿ™

+ugam
+ugam
+ +2 months ago

final episode
+bro time pe daal dena
+please

+Shadab
+Shadab
+ +2 months ago

Bhaiiiii vo episode 8 dal dete to axxa rahta khud baad m dekhlena pahle mujhe dikha do

+Hshhd
+Hshhd
+ +2 months ago

EP -8 please upload fast

+areybatmanhu
+areybatmanhu
+ +2 months ago

guys chill maaro, subha 7 baje aajayega apna season 5 finale ๐Ÿ˜‰

+Wajahat Hussain
+Wajahat Hussain
+ +2 months ago

Where is episode 8

+Vicky
+Vicky
+ +2 months ago

Add stranger things season 05 final episode 08

+Armaan
+Armaan
+ +2 months ago

Episode 8 kab upload karoge bhai

+Toxic
+Toxic
+ +2 months ago

Bro episode 8 upload fast plz ๐Ÿฅบ๐Ÿ™๐Ÿป

+Aryan
+Aryan
+ +2 months ago

Finale kab daloge bhai

+Hii
+Hii
+ +2 months ago

Episode 8 upload kar do bhai

+Gupta
+Gupta
+ +2 months ago

Upload episode 8 plzzz

+Sahil
+Sahil
+ +2 months ago

Episode 8

+Rakesh
+Rakesh
+ +2 months ago

LAST EPISODE KAB AAYEGA BHAI ?

+Aaron
+Aaron
+ +2 months ago

When you upload finale today or tomorrow?

+Manit
+Manit
+ +2 months ago

Finale kab aega

+Lolo
+Lolo
+ +2 months ago

Bro send episode 8

+Shahin
+Shahin
+ +2 months ago

Bhai kisi ke pass DARK WEBSERIES hai Hindi me ?

+Chetan
+Chetan
+ +2 months ago
+ +Reply to  + +Shahin +

Hindi dubbed nahi hua hai abhi tak kuchh government issue’s ๐Ÿ™„ chal rahi hai chances bohat kum hai ๐Ÿ‘€

+Will
+Will
+ +2 months ago

When ep. 8 release

+Krishna Kumar
+Krishna Kumar
+ +2 months ago

Final season upload karo

+Ajju
+Ajju
+ +2 months ago

8th episode

+Dustin and Steve
+Dustin and Steve
+ +2 months ago

Final episode please i am mera excitement ๐Ÿ˜š๐Ÿค—๐Ÿค— but this series end ๐Ÿฅน๐Ÿฅน

+Yadnesh
+Yadnesh
+ +2 months ago

Please upload episode 8

+RAHUL
+RAHUL
+ +2 months ago

BAHI AMERICA ME AAJ 31 DEB KO AYGA TO APKE WEBSITE PAR 4K 8.30 BAJE TAK UPLOADED HO JAYEGA NA HINDI ME ???

+vickey
+vickey
+ +2 months ago

last episode episode 8 released ??

+Rahul
+Rahul
+ +2 months ago

Ep 8

+eleven
+eleven
+ +2 months ago

today is 31st december but final episod is not posted yet?

+Aku
+Aku
+ +2 months ago
+ +Reply to  + +eleven +

Bro 1 january 6.30am par aayega india me

+Akhil
+Akhil
+ +2 months ago

Bhai 8 episode kha h

+Bhadwa
+Bhadwa
+ +2 months ago
+ +Reply to  + +Akhil +

Kal ayrga

+JoJo
+JoJo
+ +2 months ago

Episode 8 please….

+Harish
+Harish
+ +2 months ago

Where is the episode 8 final??

+Sahil bhagat
+Sahil bhagat
+ +2 months ago

Last episode bhai upload kb hoga

+Aditya
+Aditya
+ +2 months ago

Final episode tomorrow morning at 6 am release hoga isse kal dal dena

+Dumdaar lund
+Dumdaar lund
+ +2 months ago

Bhai volume 1 or 2 dono mixed hai kya

+Abhimanu
+Abhimanu
+ +2 months ago

Best movie

+Chetan
+Chetan
+ +2 months ago
+ +Reply to  + +Abhimanu +

๐Ÿคฃ๐Ÿคก๐Ÿ’ฉ

+Deepak
+Deepak
+ +2 months ago

Volume 3 upload kro jldi

+ayusyh
+ayusyh
+ +2 months ago
+ +Reply to  + +Deepak +

aa gaya

+Kunal
+Kunal
+ +2 months ago
+ +Reply to  + +ayusyh +

Kaha he

+Jdd
+Jdd
+ +2 months ago

Episode 8 kab ayega

+Ketul
+Ketul
+ +2 months ago

8 ep ?

+Hisenberge
+Hisenberge
+ +2 months ago

Can you please add last 8 episode

+Harsh
+Harsh
+ +2 months ago

Please 8 ep jaldi se lekar aao big B

+Shivam
+Shivam
+ +2 months ago

Bhai aaj iska next season aane wala tha

+Rohit
+Rohit
+ +2 months ago

Stranger things Last episode upload karo sir….

+Arshad
+Arshad
+ +2 months ago

Vikings

+Pakku
+Pakku
+ +2 months ago

Link not opens ads and pages opening

+Kanda
+Kanda
+ +2 months ago

Jldi upload krna last episode

+Devil
+Devil
+ +2 months ago

Bro please upload 8 episode

+Rakesh
+Rakesh
+ +2 months ago

Any another episode pending?

+เคชเฅเคฐเคฟเค‚เคธ
+เคชเฅเคฐเคฟเค‚เคธ
+ +2 months ago

Bhai ep 1 2 3 4 knh h

+Yogendra Dewangan
+Yogendra Dewangan
+ +2 months ago

Episode 8???

+Vaibhav
+Vaibhav
+ +2 months ago

Itโ€™s irritating to download anything from your site
+Page gets redirected so many times
+once or twice is ok
+but just for downloading a movie it keeps opening so many pages after clicking the download link is unbearable and like a headache

+Sam
+Sam
+ +2 months ago
+ +Reply to  + +Vaibhav +

Called earning strategy

+Amit
+Amit
+ +2 months ago

8th and more episodes kn upload hoga

+advi
+advi
+ +2 months ago

pls added telugu version in online

+advi
+advi
+ +2 months ago

how to watch online

+Kunal
+Kunal
+ +2 months ago

Where is 8th episode

+Kabir
+Kabir
+ +2 months ago

Episode 8 upload please

+Azad
+Azad
+ +2 months ago

Episode 8 kab tak aayega

+Aditya
+Aditya
+ +2 months ago

Episode 8,9,10 ki koi update ??

+Amjad
+Amjad
+ +2 months ago

8 va bhi upload hoga ya nhi

+movi ka deewana
+movi ka deewana
+ +2 months ago

7 ke baad ka upload kb hoga

+rahil
+rahil
+ +2 months ago

thanks buddy

+Talat
+Talat
+ +2 months ago

Dear episode 8 nahi ha

+Ank
+Ank
+ +2 months ago

Kab upload karenga Bhai 100 din ho Gaye bol.ke . The devil’s bright and lymboyung…

+Ank
+Ank
+ +2 months ago

The devil’s bright lymboyung

+Movies lover
+Movies lover
+ +2 months ago

Jo and jo full movie hindi dub plz

+Shabeeh
+Shabeeh
+ +2 months ago

Next episode

+wasim
+wasim
+ +2 months ago

best website

+Ayan khan
+Ayan khan
+ +2 months ago

Are bhai ep 7 ke baad bhi koi ep hai kya

+Abhilekh
+Abhilekh
+ +2 months ago

Where is the finel apisode

+Abhi
+Abhi
+ +2 months ago
+ +Reply to  + +Abhilekh +

Aa gya

+D.r
+D.r
+ +2 months ago
+ +Reply to  + +Abhilekh +

Kab aayega bro final

+D.r
+D.r
+ +2 months ago
+ +Reply to  + +Abhilekh +

Aaj hi upload hoga is website par ya kal

+Ankit
+Ankit
+ +2 months ago
+ +Reply to  + +Abhilekh +

Kya pata bhai me bhi kabse wait hi kar raha hu

+Nickk_yours26
+Nickk_yours26
+ +2 months ago
+ +Reply to  + +Abhilekh +

Also waiting ๐Ÿ˜ฉ

+Arvind kumar
+Arvind kumar
+ +2 months ago
+ +Reply to  + +Abhilekh +

10 bje

+Himanshu
+Himanshu
+ +2 months ago
+ +Reply to  + +Abhilekh +

I’m also waiting

+Ak raj
+Ak raj
+ +2 months ago

I want a Japanese version

+Yogesh suryawanshi
+Yogesh suryawanshi
+ +2 months ago

Episode 8 or 9 kb aayega ๐Ÿค”

+EDF slayer
+EDF slayer
+ +2 months ago
+ +Reply to  + +Yogesh suryawanshi +

Episode 8 hi mil jay bro phle

+Esa
+Esa
+ +2 months ago
+ +Reply to  + +Yogesh suryawanshi +

๐Ÿค”๐Ÿค”

+Chetan
+Chetan
+ +2 months ago
+ +Reply to  + +Yogesh suryawanshi +

Episode 9 hai hi nahi sirf 8 hi hai

+Aaqib ali
+Aaqib ali
+ +2 months ago
+ +Reply to  + +Yogesh suryawanshi +

Are bhai last 8 episode h

+ASIF
+ASIF
+ +2 months ago

I want to season 6 please

+Helloji
+Helloji
+ +2 months ago

4k quality???

+Randommm
+Randommm
+ +2 months ago

4k needed bro??? When it will available in 4k quality??

+Vivek
+Vivek
+ +2 months ago

Please upload SDR for S5P2

+UMAR
+UMAR
+ +2 months ago

4K SDR when?

+John
+John
+ +2 months ago

Plss upload 4k SDR …HDR hi hai sirf

+Shravan
+Shravan
+ +2 months ago

Bhai 4k me kb krega upload

+Abhisek dingor
+Abhisek dingor
+ +2 months ago

4k Sdr upload

+Pycho
+Pycho
+ +2 months ago

Episode 8 bhi aayega kya…??

+Rezwan
+Rezwan
+ +2 months ago

Episode 5 is in the English version, not in the Hindi version.Brother, please fix it quickly and reply to me quickly.

+Partho
+Partho
+ +2 months ago

EP 8 kab aaega

+Rashid Ahmad
+Rashid Ahmad
+ +2 months ago

Bhi last episode please

+Anshum
+Anshum
+ +2 months ago

Hey please add episode 8

+Aaqib ali
+Aaqib ali
+ +2 months ago
+ +Reply to  + +Anshum +

Are bhai netflix p to agya ye website vale kyu nhi dala???

+Daya
+Daya
+ +2 months ago

Thanks

+Aditya
+Aditya
+ +2 months ago

Love you bro, Tumhari wajah se free me enjoy kar paa Raha hu ๐Ÿ˜Œ๐Ÿ˜Œ

+sadsasa
+sadsasa
+ +2 months ago

when you upload in 4K?

+Amit
+Amit
+ +2 months ago

8 episode not show

+Ai Guru
+Ai Guru
+ +2 months ago

Thanks for the volume 2

+GOUTAM
+GOUTAM
+ +2 months ago

Thanks for season 5 episodes 5,6,7 uploaded

+Unknown
+Unknown
+ +2 months ago

Bro ep 8 nahi aaya

+Asif Ali
+Asif Ali
+ +2 months ago

4k file stucking at some points

+mukul
+mukul
+ +2 months ago

S5E8 Will release on 31/12/2025

+Nilambar
+Nilambar
+ +2 months ago

Episode 6 aur 7 are not.clickable

+md Himayu
+md Himayu
+ +2 months ago

where is episode 8

+RAJ GAMER
+RAJ GAMER
+ +2 months ago

I KINDLY REQUEST YOU TO HDHUB4U PRODUCTION TEAM SHOULD YOU PLEASE UPLOAD A MASTER CLASS MOVIE NAME AMERICAN PHYCHO MILLION OF FANโ€™S EXCITED FOR WATCHING THIS MOVIE IN HINDI DUBBED VERSION UNFORTUNATELY IS NOT AVAILABILE IN AMAZON PRIME EVEN NETFLIX YOUR HINDI DUBBED TEAM IS SO ACCURATE AND BEST DUBBED ARTIST EVEN I SEEN MANY MOVIE YOU DUBBED VERSION IS AMAZING IS BETTER THAN ORIGINAL SHOULD PLEASE PLEASE UPLOAD โ€œAMARICAN PHYCHOโ€ MOVIE IN HINDI DUBBED VERSION PLEASE HDHUB4U TEAM ๐Ÿ˜ญ

Kindly request to you available soon!!! โค๏ธ๐Ÿ’ซ

+Seraj Alam
+Seraj Alam
+ +2 months ago
+ +Reply to  + +RAJ GAMER +

Yeah Bro I’m Also Want This

+Noor
+Noor
+ +2 months ago

Where is the 4k files of vol 2

+Samar
+Samar
+ +2 months ago

4k kaha hai

+Samar
+Samar
+ +2 months ago

4K

+Yash
+Yash
+ +2 months ago

When uploading 4k version?

+ayun
+ayun
+ +2 months ago

4k sdr versio when ?

+karan
+karan
+ +2 months ago

bro where the ep 8 the rightside up

+Sahil
+Sahil
+ +2 months ago

Cannot download ep6,7

+Nilambar
+Nilambar
+ +2 months ago
+ +Reply to  + +Sahil +

Same problem

+Abhishek
+Abhishek
+ +2 months ago

episode 6 not downloadable

+John
+John
+ +2 months ago

Teligram page not found ๐Ÿ˜ญ๐Ÿ˜ญ

+Munaf
+Munaf
+ +2 months ago

Links aren’t there
+Except episode 5

+Loky
+Loky
+ +2 months ago

Kya badda tumlog ne update diya hai link 2 bar kam karta hai fir kam nahi karta kuch der wait Karo tab kam karta hai user experience itna kharab lag raha hai na dimag itna kharab ho gaya hai ki ab Mai ye website use hi nahi karunga ye episode 7 to lag raha hai download nahi kar pawunga usi Mai ye problem hai

+Devrajsingh
+Devrajsingh
+ +2 months ago

Admin sir 4k me kb tk upload kro any idea

+Pihu
+Pihu
+ +2 months ago

Hi add all episodes

+Affan
+Affan
+ +2 months ago

Maine 4.3 GB wala Download Kiya hun wo zip file extract nahi ho raha hai kiya karun

+shivam
+shivam
+ +2 months ago

upload 4k version alsoo

+374ah
+374ah
+ +2 months ago

Won’t you gonna upload in 4k ?

+Ankit
+Ankit
+ +2 months ago

Where is episode 8

+Chinmoy
+Chinmoy
+ +2 months ago

Please Upload Andhra taluka king movie 4k version available now on Netflix

+Sahkar
+Sahkar
+ +2 months ago

Please Upload S5 E8, 9, 10

+Shreyu
+Shreyu
+ +2 months ago

Bhai pls bhai 4k mai dalo

+Langta
+Langta
+ +2 months ago

Bhai 8th episode dal jaldi

+Rajveer Singh
+Rajveer Singh
+ +2 months ago

4k me kab upload hoga bhai ?

+Vecna ki maaa
+Vecna ki maaa
+ +2 months ago

4k wale website me sdr 4k me upload karo

+Admit please bhai
+Admit please bhai
+ +2 months ago

Bhai mere please pluribus ka S1 upload kar de

+John
+John
+ +2 months ago

Admin pls … Episode 5 to 7 4k SDR me upload karo SDR not HDR plsss pls pls fast

+Danish
+Danish
+ +2 months ago

Where is ep 8

+HUDDY
+HUDDY
+ +2 months ago

POST EPISODE 6 AND 7 LINKS

+Arun
+Arun
+ +2 months ago

Unable to download 6 and 7 episode

+Adeel
+Adeel
+ +2 months ago

ep 6 or 7 not donload link

+Arsalan
+Arsalan
+ +2 months ago

??

+Ahan sharma
+Ahan sharma
+ +2 months ago

Links not showing? For volume 2

+Amit
+Amit
+ +2 months ago

Suryababli part 1 2 3 upload kro bhai

+jeel
+jeel
+ +2 months ago

4k me kab upload hoga pleases replay

+Amit
+Amit
+ +2 months ago

cashero K drama upload kro bhai

+Shivam sh ah
+Shivam sh ah
+ +2 months ago

Bhai Episode 8 kaha he?

+Watcher
+Watcher
+ +2 months ago
+ +Reply to  + +Shivam sh ah +

Ep8 1 january ko realised hoga

+jeel
+jeel
+ +2 months ago

4k me kab upload karo ge bhai

+niggachan
+niggachan
+ +2 months ago

bro 4k when ?

+Test
+Test
+ +2 months ago

Where is ep 8

+Seedhemaut
+Seedhemaut
+ +2 months ago

Bhai pluribus upload krde season 1 all episode is out

+Tkxjgsdf
+Tkxjgsdf
+ +2 months ago

4k?

+hamad
+hamad
+ +2 months ago

episode no 8

+Armaan
+Armaan
+ +2 months ago

Where is the epispde 6,7 downlad link please uplod the link

+Newuser
+Newuser
+ +2 months ago

Why are there no links for episode 6 and 7

+amit
+amit
+ +2 months ago

ep 06 daalo

+Byler
+Byler
+ +2 months ago

Oh My God Absolute Cinema ๐Ÿฅถ

+faizan
+faizan
+ +2 months ago

ep 6,7 is not working

+Dhruv
+Dhruv
+ +2 months ago

Bhai please 4k upload karo๐Ÿ™๐Ÿ™๐Ÿ™

+Anas
+Anas
+ +2 months ago

6 or 7 download nhi ho rah ha fixed kardo yar jaldi

+Raj
+Raj
+ +2 months ago

2160p with sdr

+Samiya siddika
+Samiya siddika
+ +2 months ago

Thanks for the season

+Sahil
+Sahil
+ +2 months ago

Links are not working

+Jaheer
+Jaheer
+ +2 months ago
+ +Reply to  + +Sahil +

..

+Arsalan
+Arsalan
+ +2 months ago

Where is the 1080p x264 single episodes links of episode 6 and 7??

+Hassaan
+Hassaan
+ +2 months ago

Episode 6 ,7 links are not working

+vhdta
+vhdta
+ +2 months ago

next episode is not working

+berlin
+berlin
+ +2 months ago

ep 6,7 is not downloding

+Arsalan
+Arsalan
+ +2 months ago

Please Upload Episode 6 and 7 in 1080p x264 quality. I’ve been waiting from 6:30 but no solution. Can u even tell me what’s the problem here?

+HARSH
+HARSH
+ +2 months ago

WHAT TIME THE 4K VERSION COMING ?????? PLS MAKE IT FAST AND ALSO THANK YOU SO MUCH IN ADVANCE

+Aman
+Aman
+ +2 months ago

6 or 7 ka link kaha h bhai

+Lusifer
+Lusifer
+ +2 months ago

why ep 6 and 7 L;INKS ARE NOT WORKING

+Pawan
+Pawan
+ +2 months ago

Downloading links not open

+Vijay
+Vijay
+ +2 months ago

Ep 6 or 7 link is not working…

+Bushan
+Bushan
+ +2 months ago

i canโ€™t download 6 and 7

+Nikhil
+Nikhil
+ +2 months ago

Bro 6 or 7 episode upload fast please bro

+amit
+amit
+ +2 months ago

bro 4k?????

+Shuvo
+Shuvo
+ +2 months ago

how to download 4k? which one?

+Aftab Mahdi
+Aftab Mahdi
+ +2 months ago

Thank You So much for this HDHUB4U

+Pluribus
+Pluribus
+ +2 months ago

4k when?

+Rishabh
+Rishabh
+ +2 months ago

Thanks yrrr ๐Ÿ˜ main bhi bahut exited tha iske liye โœจ

+SUFYAN
+SUFYAN
+ +2 months ago

WHER IS EPISOD 8 BRO

+pmjklljkl
+pmjklljkl
+ +2 months ago
+ +Reply to  + +SUFYAN +

that will be released on 31 december

+Harsh
+Harsh
+ +2 months ago

Love you brother ๐Ÿ˜˜๐Ÿ˜˜

+Aslain
+Aslain
+ +2 months ago

4k when?

+Warrior
+Warrior
+ +2 months ago
+ +Reply to  + +Aslain +

How do you watch 4k in which device after downloading from here ?

+kunal
+kunal
+ +2 months ago

bro 3 hrs ho gye aaye hue yet 4k nhi h???????

+Warrior
+Warrior
+ +2 months ago
+ +Reply to  + +kunal +

How do you watch 4k in which device after downloading from here ?

+jesse pinkman
+jesse pinkman
+ +2 months ago

bro pls upload VOL 2 in 4K also, i am waiting for it? or just give me update.

+Aslain
+Aslain
+ +2 months ago

4k when

+Shakib
+Shakib
+ +2 months ago

Upload v.2 in 4k of s5

+Harman
+Harman
+ +2 months ago

Upload 1080p 10bit bro

+Amresh
+Amresh
+ +2 months ago

Bhai episode 8 v hai kya

+jesse pinkman
+jesse pinkman
+ +2 months ago
+ +Reply to  + +Amresh +

wo indian me 1 jan 2026 ko release hoga bro

+Tarachand
+Tarachand
+ +2 months ago

เคธเคฐ, เคธเฅเคจเฅ€เคฒ เคถเฅ‡เคŸเฅเคŸเฅ€ เคตเคพเคฒเฅ€ เคฎเฅ‚เคตเฅ€ เคฐเค•เฅเคทเค• เค…เคชเคฒเฅ‹เคก เค•เฅ€เคœเคฟเค เค…เคจเค•เคŸ เคตเคพเคฒเฅ€, เคนเฅ‹ เคธเค•เฅ‡ เคคเฅ‹ 4k เคชเฅเคฒเฅ€เคœเฅค

+Monk
+Monk
+ +2 months ago

4k bro kab ae gi?

+bhai episode 7 link ๐Ÿ”— kam nehi kar raha hain .
+bhai episode 7 link ๐Ÿ”— kam nehi kar raha hain .
+ +2 months ago

bhai episode 7th link thik kar de .

+Macharchot
+Macharchot
+ +2 months ago

Bhai Kya Kiya tunye katdee yrhh

+bhai episode 7 link ๐Ÿ”— kam nehi kar raha hain .
+bhai episode 7 link ๐Ÿ”— kam nehi kar raha hain .
+ +2 months ago

kya ho gya ?

+right now fix this
+right now fix this
+ +2 months ago

link episode 7 is not working

+Anup
+Anup
+ +2 months ago

Hey you didn’t put links in episode 7

+Muktar
+Muktar
+ +2 months ago

Kro jaldi upload yaar

+anonymous
+anonymous
+ +2 months ago

bhai 6 and 7 episode ka link open nahi ho raha

+Don
+Don
+ +2 months ago

Abe bhai episode 7 ki link work nahi kar rhi

+Unnabh
+Unnabh
+ +2 months ago

Episode 7 drive download is not working fix it

+Pujan
+Pujan
+ +2 months ago

6 and 7 link not clickable

+Aman
+Aman
+ +2 months ago

Bhai episode 6 or 7 please upload faster

+Krishu
+Krishu
+ +2 months ago

Please add ep 6 and 7 for download ๐Ÿ™๐Ÿป

+sohsbbdbd
+sohsbbdbd
+ +2 months ago

Bhai episode wise link active kr de

+virendra
+virendra
+ +2 months ago

ep 7 is not downloading

+Piyush
+Piyush
+ +2 months ago

The download link is not working

+Sajeel
+Sajeel
+ +2 months ago

Episode 6 and 7 link is not clickable

+Shrey
+Shrey
+ +2 months ago

It’s good

+Kyoka
+Kyoka
+ +2 months ago

Ep 7 link not working

+Eren Yeager
+Eren Yeager
+ +2 months ago

You upload stranger things volume 2 in 4k or not?

+Saiina
+Saiina
+ +2 months ago

Hey!
+Ep 2 drive open nhi ho rhi

+The Watcher
+The Watcher
+ +2 months ago

upload the rest of the episode asap plz

+Hardik
+Hardik
+ +2 months ago

E 6 7 download nahi ho rahe

+Atin
+Atin
+ +2 months ago

please upload 4k for volume 2

+Maeez
+Maeez
+ +2 months ago

Bhai episode 6,7 ki link open nahi hoti kya kru ?

+Macharchot
+Macharchot
+ +2 months ago

Any one there hloo

+Varshil
+Varshil
+ +2 months ago

6th and 7th not downloadable

+KARAN
+KARAN
+ +2 months ago

Bro upload the 7th episode please

+Macharchot
+Macharchot
+ +2 months ago

Loude download kRna NAHI Mila rah upar sye late daldee rahhh heyy koi suggest kardoo download Karna milnye website

+Ridham
+Ridham
+ +2 months ago

Ep 6 and ep 7 download links are not showing option to download

+Itachi
+Itachi
+ +2 months ago

Ep 8

+Binge watcher
+Binge watcher
+ +2 months ago

Bro the link of episode 6 and 7 non clickable. I can’t download the.

+Sam
+Sam
+ +2 months ago

Are bhai ep 7 toh dalo na please

+Mani
+Mani
+ +2 months ago

Episode 6 and 7 not be available for dowanload and watch also

+doe
+doe
+ +2 months ago

episode 6 and 7 links
+not working

+Ansh ji neta
+Ansh ji neta
+ +2 months ago

Aakhari baar puch raha hu kab tak 1080p upload kar doge

+jon
+jon
+ +2 months ago

6&7 links are not working

+Narendra Modi
+Narendra Modi
+ +2 months ago

Jaa Raha hu bhai tum mujhe reply nahi de rahe ho

+Rakesh
+Rakesh
+ +2 months ago

Please upload in 4k quality ๐Ÿฅบ

+Imran
+Imran
+ +2 months ago

Hy brother can you upload burari murders

+Helaiya twinkle
+Helaiya twinkle
+ +2 months ago

Episode 6 and 7 please upload

+Harsh
+Harsh
+ +2 months ago

Bro episode 7 to release kar

+Narendra Modi
+Narendra Modi
+ +2 months ago

Tumhe bharat ratan milega

+Narendra Modi
+Narendra Modi
+ +2 months ago

Bhai jaldi karo na mujhe sansad bhawan bhi jana hai

+sohsbbdbd
+sohsbbdbd
+ +2 months ago
+ +Reply to  + +Narendra Modi +

To ja na bhai

+Anshji
+Anshji
+ +2 months ago

Bhai please approve wala system hatao

+random
+random
+ +2 months ago

Love u 4khdhub. Late this time but the best. Appreciate all the efforts behind this to make it happen. All episodes in max quality has been uploaded guys. Enjoy

+Ridham
+Ridham
+ +2 months ago

Ep 6 and 7 doesn’t have download link

+Maeez
+Maeez
+ +2 months ago

Heyy episode 6,7 link is not working, I am clicking but there is no link in it how can I download episode 6,7 ?

+Azhar
+Azhar
+ +2 months ago

Upload karo na episode new

+Yash Raj Singh
+Yash Raj Singh
+ +2 months ago

Ep 6 and 7 are not click able I tried more than 20 times but it,s not available

+Raghav Bidua
+Raghav Bidua
+ +2 months ago

Episode 6 and 7 is inaccessible

+Shivm
+Shivm
+ +2 months ago

6,7 ep link is opened or not??

+Sandip patil
+Sandip patil
+ +2 months ago

Ep 6&7 is not Opening

+Ravi
+Ravi
+ +2 months ago

zip file upload kr do vol. 2 ka

+Sidzzzz
+Sidzzzz
+ +2 months ago

Links are not clickable for episode 6 and 7

+Darsh
+Darsh
+ +2 months ago

Bro upload 4k fast

+Prasad
+Prasad
+ +2 months ago

All movies, please upload telugu language alos

+Ankit
+Ankit
+ +2 months ago

The link of 6 and 7 is not working ๐Ÿฅ€๐Ÿฅ€

+Zulqurnan
+Zulqurnan
+ +2 months ago

Vol 2 ka ep 6,7 kb upload hoga

+Kevin
+Kevin
+ +2 months ago

Ep 6,7 links not working bro ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

+Anurag
+Anurag
+ +2 months ago

Episode 6 1080 se khul kyu nhi raha?

+Aryan
+Aryan
+ +2 months ago

S5 Ep 6,7 ki link clickable nhi hai

+Abhinav
+Abhinav
+ +2 months ago

Aree bhai bol to do 1080p 10 bit kab tak upload karoge

+random
+random
+ +2 months ago
+ +Reply to  + +Abhinav +

4k dekhlena

+Shakib
+Shakib
+ +2 months ago
+ +Reply to  + +random +

Kaha se bhai

+Abhinav
+Abhinav
+ +2 months ago

Aa gay fir se

+Ak ji
+Ak ji
+ +2 months ago

Upload next ep

+SEVRAAX
+SEVRAAX
+ +2 months ago

Link is not working of 6-7 episode

+random
+random
+ +2 months ago

5 and 6 eps in 4k came. W. Late but best.

+Ak p
+Ak p
+ +2 months ago
+ +Reply to  + +random +

4k mai kaha hai available??

+random
+random
+ +2 months ago
+ +Reply to  + +Ak p +

bhai single episodes section jaa. Time lgtha hei unko update krne mei. Tho dono check kar

+Abhinav
+Abhinav
+ +2 months ago

Tum mujhe rok nahi paoge ๐Ÿ˜Ž๐Ÿ˜Ž๐Ÿ˜Ž admin

+Pradeep
+Pradeep
+ +2 months ago

Please upload DV Quality first

+suraj
+suraj
+ +2 months ago

download link kam nhi kr rhi bhai

+ansh
+ansh
+ +2 months ago

6 and 7 links not responding…and where is 8?

+Kyoka
+Kyoka
+ +2 months ago

Bro like nahi show ho raha ep 6 aur 7 ka

+Shafique
+Shafique
+ +2 months ago

Bro I can’t download episode six

+Blue
+Blue
+ +2 months ago

Bhai 6 7 link are not clickable

+Ansh
+Ansh
+ +2 months ago

Per tum na hote to aaj free ๐Ÿ†“ ki movie web series na dekh pata

+Ansh
+Ansh
+ +2 months ago

Bhai bolo

+random
+random
+ +2 months ago

bro vol1 4k quality was uploaded in less than 30 mins.. Is vol2’s coming or no?

+Ansh
+Ansh
+ +2 months ago

Bhai

+Govindmotra
+Govindmotra
+ +2 months ago

Brother link open nhi ho rhi

+ddjjhhgg
+ddjjhhgg
+ +2 months ago

Upload episode 6 and 7 too

+Ansh
+Ansh
+ +2 months ago

Admin jawab do

+random
+random
+ +2 months ago

vol2 4k?

+Ansh
+Ansh
+ +2 months ago

Admin bolo

+Ansh
+Ansh
+ +2 months ago

Admin tumhari shadi hui hai

+Ansh
+Ansh
+ +2 months ago

Admin kaha gaye bhai

+dipesh basnet
+dipesh basnet
+ +2 months ago

bro upload in 4k quality

+Ansh
+Ansh
+ +2 months ago

Koi to bata de kitna time lagega upload hone me

+Ansh
+Ansh
+ +2 months ago

Love you bhai ๐Ÿ’

+random
+random
+ +2 months ago

is vol2 coming in 4k?

+MrTONY26
+MrTONY26
+ +2 months ago

BEST WEBSITE ๐Ÿ‘๐Ÿป๐Ÿฅ€

+Ansh
+Ansh
+ +2 months ago

Kaso bhai ketna der lagubya

+Ansh
+Ansh
+ +2 months ago

Bhai sabse pahle 1080p 10 bit hevc upload karo

+Piyush
+Piyush
+ +2 months ago

Admin please 4k ki link dal do

+Shahnawaz
+Shahnawaz
+ +2 months ago

6 and 7 episode not download

+Abhishek Kumar Mandal
+Abhishek Kumar Mandal
+ +2 months ago

6th and 7th Episode Download nhi ho rha hai guys.

+Angad
+Angad
+ +2 months ago

Bou buttu bhuta uplod please aao nxt par streming ho raha hai

+Piyush
+Piyush
+ +2 months ago

Hii

+Ansh
+Ansh
+ +2 months ago

Admin mujhe bhi kabhi reply de diya karo ๐Ÿ˜ญ

+Jaimin parmar
+Jaimin parmar
+ +2 months ago

Finally !!!

+Ansh
+Ansh
+ +2 months ago

1080p 10 bit hevc upload

+Angad
+Angad
+ +2 months ago

Bou buttu bhuta download kijiye aao nxt par streming hua hai

+Ansh
+Ansh
+ +2 months ago

Bro

+Ansh
+Ansh
+ +2 months ago

Admin bhai jawab do kab tak karoge

+Ansh
+Ansh
+ +2 months ago

Bro ๐Ÿ˜ญjaldi

+Aha
+Aha
+ +2 months ago
+ +Reply to  + +Ansh +

E8 nhi

+Manish
+Manish
+ +2 months ago

Admin brother please give me your email ID I need your urgent help

+Ansh
+Ansh
+ +2 months ago

Admin jaldi karo 1080p 10 bit hevc

+Ansh
+Ansh
+ +2 months ago

Jaldi bhai karo

+Anonymous
+Anonymous
+ +2 months ago

You forgot to attach links to ep 6 and 7

+Aditya
+Aditya
+ +2 months ago
+ +Reply to  + +Anonymous +

Use VPN, IT’S WORKING WITH VPN

+Mava
+Mava
+ +2 months ago

4k upload fast with telugu bro

+Ansh
+Ansh
+ +2 months ago

1080p 10 bit hevc upload kar do na bhai

+Ashok
+Ashok
+ +2 months ago

Bhayi Season 6 or 7 download kiu ni ho rha..๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

+Aditya
+Aditya
+ +2 months ago
+ +Reply to  + +Ashok +

Use VPN,i just did use VPN and it worked

+Aryan
+Aryan
+ +2 months ago

episode 6 and 7 links
+not working

+Aditya
+Aditya
+ +2 months ago
+ +Reply to  + +Aryan +

Use VPN then it will work, just did and it works

+Ansh
+Ansh
+ +2 months ago

1080p 10 bit hevc upload karo

+Ansh
+Ansh
+ +2 months ago

Bhai 1080p 10 bit hevc upload kar do jaldi please brother

+Sushil
+Sushil
+ +2 months ago

thank god it is uploaded I was reloding pages since 6.30 am thank you providers

+Dev
+Dev
+ +2 months ago

4k quality upload

+Shuvo
+Shuvo
+ +2 months ago
+ +Reply to  + +Dev +

kon fil ta?

+Hex
+Hex
+ +2 months ago

4k upload kab ayega

+Ketan
+Ketan
+ +2 months ago
+ +Reply to  + +Hex +

Kabka aa gya 4k hub me๐Ÿคฃ๐Ÿคฃ๐Ÿคฃ

+will
+will
+ +2 months ago
+ +Reply to  + +Ketan +

to isme hasne ki kya baat hai
+typical yt comments

+will
+will
+ +2 months ago
+ +Reply to  + +Ketan +

BC sara mood kharab kardiya iss comment ne mera

+Goku
+Goku
+ +2 months ago

Fast upload bro

+Deepak
+Deepak
+ +2 months ago
+ +Reply to  + +Goku +

Link kaam nhi kar raha 6 or 7

+Itachi
+Itachi
+ +2 months ago
+ +Reply to  + +Deepak +

Ha same

+Aditya
+Aditya
+ +2 months ago
+ +Reply to  + +Itachi +

Use VPN , it’s working with VPN

+Aditya
+Aditya
+ +2 months ago
+ +Reply to  + +Deepak +

Use VPN, it’s working with VPN

+ร‘aveed ali
+ร‘aveed ali
+ +2 months ago
+ +Reply to  + +Deepak +

Hi

+Kuldeep
+Kuldeep
+ +2 months ago

Thanks bro I am waiting since 6:30am

+Kuldeep sinh
+Kuldeep sinh
+ +2 months ago
+ +Reply to  + +Kuldeep +

Hey my name is kuldeep too

+Nishant
+Nishant
+ +2 months ago

Khud dekhne laga tha kya bhai

+Helaiya twinkle
+Helaiya twinkle
+ +2 months ago
+ +Reply to  + +Nishant +

๐Ÿคฃ๐Ÿคฃ๐Ÿคฃ tabhi to 6 and 7 episode upload karna bhul gya

+MAX
+MAX
+ +2 months ago
+ +Reply to  + +Helaiya twinkle +

check kar bhai, upload hua hai

+ร‘aveed ali
+ร‘aveed ali
+ +2 months ago
+ +Reply to  + +MAX +

Hi

+Lokesh
+Lokesh
+ +2 months ago
+ +Reply to  + +MAX +

Please upload the last episode

+Umang chavda
+Umang chavda
+ +2 months ago
+ +Reply to  + +Helaiya twinkle +

Haa muje bhi esa hi laga tha but website me problem thi

+Anil
+Anil
+ +2 months ago
+ +Reply to  + +Helaiya twinkle +

Ese hi lg rha h

+ISHAN
+ISHAN
+ +2 months ago
+ +Reply to  + +Helaiya twinkle +

Bhai Final episode daldeeeeew ๐Ÿ˜ญ

+Zubair Khan
+Zubair Khan
+ +2 months ago

Thanks bhai love you
+You are so fast bro love you โค๏ธ๐Ÿ˜

+Dada is live
+Dada is live
+ +2 months ago

Thnx for uploading stranger things volume 2

+Tyler
+Tyler
+ +2 months ago

Hey I want the English version please ๐Ÿฅบ

+Harsh
+Harsh
+ +2 months ago
+ +Reply to  + +Tyler +

Download mx player and watch on it downloaded version of this website and select launguage english bro

+Eleven
+Eleven
+ +2 months ago
+ +Reply to  + +Tyler +

Hi bro that zip file has multi language versions

+ร‘aveed ali
+ร‘aveed ali
+ +2 months ago
+ +Reply to  + +Eleven +

Hi

+Eleven
+Eleven
+ +2 months ago
+ +Reply to  + +Tyler +

I download the ep 5 it has english version

+Md aftab
+Md aftab
+ +2 months ago
+ +Reply to  + +Eleven +

Vlc download kar lo

+Salman
+Salman
+ +2 months ago
+ +Reply to  + +Eleven +

Go and download mx player and watch this series and see you have a option to change language.thank

+Harry
+Harry
+ +2 months ago
+ +Reply to  + +Tyler +

Or episode kab tak upload honge

+Harsh
+Harsh
+ +2 months ago
+ +Reply to  + +Tyler +

Episode 8 kab upload hoga yaha pe

+King
+King
+ +2 months ago
+ +Reply to  + +Tyler +

Mx player download kardo…usme language change ho jayegi

+Sneha
+Sneha
+ +2 months ago
+ +Reply to  + +Tyler +

Download X player

+arman
+arman
+ +2 months ago
+ +Reply to  + +Tyler +

i have all english episode

+Jay
+Jay
+ +2 months ago
+ +Reply to  + +Tyler +

Final episode is not opening



+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-3-hindi-webrip-all-episodes b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-3-hindi-webrip-all-episodes new file mode 100644 index 0000000..f8b2e71 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fostranger-things-season-5-vol-3-hindi-webrip-all-episodes @@ -0,0 +1,4195 @@ + Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 | EP-08 Added] – HDHub4u Official +
+
+
+
ร— + +Avoid FAKE Copies of + +HDHub4u + +on Google, + + +Always use + +HDHub4u.Tv + +With VPN to get Official Domain & Follow us on + + +Discord + + + For Latest Updates.


+ + +Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 | EP-08 Added]


Download Stranger Things (Season 5) Hindi DD5.1 WEB-DL 2160p 1080p 720p & 480p Dual Audio Free Download.
+Stranger Things S05 All Episodes [Hindi (DD5.1) & English] | Watch Stranger Things (Season 5) NF Series Online !

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series


Stranger Things (Season 5)

iMDB Rating: 8.6/10
Genre: Action | Adventure | Mystery | Fantasy | Sci-Fi
Stars: Millie Bobby Brown, Finn Wolfhard, Winona Ryder
Creator: Matt Duffer, Ross Duffer
No. of Episodes: 1 [VOL-3]
Language: Dual Audio [Hindi (DD5.1) + English] / ESubs
Quality: WEB-DL 4K | 1080p | 720p | 480p

: Screen-Shots :

Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h29m08s395.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h30m26s089.th.jpg Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series Download Stranger Things Season 5 Hindi Dubbed HDRip Full Series vlcsnap-2025-11-26-17h32m17s223.th.jpg


Download Stranger Things S05 [Hindi Dubbed] All Episodes HD !

: DOWNLOAD LINKS :


EP-08 [FINAL EP]



Index of Stranger Things S05 Hindi



Stranger Things (Season 5) Hindi Dubbed [DD5.1] | NetFlix | Watch Online

DESCRIPTION: : Stranger Things (Season 5) Dual Audio [Hindi (DD5.1) + English] 720p HDRip x264 1GB Watch Online [G-Drive] 9xmovies, world4ufree, world4free, Khatrimaza 123Movies fmovies Gomovies gostream 300Mb Dual Audio Hindi Dubbed | Stranger Things 720p WEBRip x264 AC3 ESub Dual Audio [Hindi (ORG 5.1) + English] DD5.1 Download Google Drive links Free on HDHub4u | Latest Movies & Series Free Download & Watch Online | AMAZON PRIME | NETFLIX Free Download .


Download Stranger Things (Season 5) Hindi ALL Episodes โ€“ Storyline:

Download Stranger Things S05 Hindi Dubbed 720p HDRip: In 1980s Indiana, a group of young friends witness supernatural forces and secret government exploits. As they search for answers, the children unravel a series of extraordinary mysteries.

Download Stranger Things S05 Hindi HDRip Review :

Stranger Things is absolutely as good as everyone says it is. When a show is as talked about about as much as this one has been it’s hard to live up to expectations. Stranger Things has not only met those expectations but has surpassed them in every way. This is the show that our Netflix on the map as far as original shows go as this was not only one of their first but their biggest. As much as I love this show it’s probably time for it for end and it is. This upcoming season is going to be the last. We have literally watched this cast grow up, they were children when this show first started and now they’re all in their 20’s. I can’t wait for this last season and going to miss it when it’s gone!

Stranger Things (Season 5) streaming: Watch online and Download | Free Downloadย Stranger Things S05ย All Episodes in Hindi 480p 720p 1080p HDRip HD x264 HEVC 10bit NETFLIX Action Sci-Fi Series | Index Of Stranger Things S05ย | WEBRip Watch Online on HDHub4u

Did you Like it?
809 Reactions
Excellent
Excellent
586
Loved
Loved
78
Thanks
Thanks
57
Wow
Wow
22
Sad
Sad
66
+ Subscribe +
Notify of
+
+
+
+guest
+
+
+146 Comments
+Newest +
+Oldest
Inline Feedbacks
View all comments
+Sagar sarkar
+Sagar sarkar
+ +6 days ago

Awesome

+Chandan sah
+Chandan sah
+ +1 month ago

Aisa webseries maine aaj tak naho dekhaa thaa…. So aaplog bhi jarur dekhe bahut bahut sandaar hai…… Suru se last tak ek primium level ka suspense hai….. Jo aaj tak koi bhi webseries aaisa nahi bana

+MD zamin
+MD zamin
+ +1 month ago

Hi

+Bhavesh Padvi
+Bhavesh Padvi
+ +2 months ago

Bharat muvi dauloding

+Hussain Sumra
+Hussain Sumra
+ +2 months ago

!!

+Umar
+Umar
+ +2 months ago

0 aisi movie ke part banne chahie

+Umar
+Umar
+ +2 months ago

Very good movie

+Saif khan
+Saif khan
+ +2 months ago

Iska next season bhi create karo same casting ke sathz

+Sevak
+Sevak
+ +2 months ago

Luck animated movie

+Priyansh sharma
+Priyansh sharma
+ +2 months ago

Brother interface of the website has which is too bad so replace it from the previous

+Akshit kumar
+Akshit kumar
+ +2 months ago

Bro 9 ep. bhi upload karo.

+goru
+goru
+ +2 months ago

hello

+goru
+goru
+ +2 months ago
+ +Reply to  + +goru +

ai last ha kaya is seris k seccion 5 vol 3

+Ankit
+Ankit
+ +2 months ago

Where is 9th episode

+Adil
+Adil
+ +2 months ago

There is a episode 9 of this season the “Conformity Gate” which came out on 7th January 2026.

+goru
+goru
+ +2 months ago
+ +Reply to  + +Adil +

bahia ai last eposid ha kia

+rehan
+rehan
+ +2 months ago
+ +Reply to  + +Adil +

forget it bro

+Imtiaj Ahmed
+Imtiaj Ahmed
+ +2 months ago
+ +Reply to  + +Adil +

๐Ÿคฃ๐Ÿคฃ๐Ÿคฃ

+Gavit Prinkal
+Gavit Prinkal
+ +2 months ago
+ +Reply to  + +Adil +

I want to see ep 9

+Sbi
+Sbi
+ +2 months ago

Ep 9 uplode kro vanishing of mike wheeler

+Mangruu
+Mangruu
+ +2 months ago
+ +Reply to  + +Sbi +

Yes i still waiting for that episode man

+Dev
+Dev
+ +2 months ago
+ +Reply to  + +Mangruu +

Conformity gate is not real bro ๐Ÿ˜”

+Ali
+Ali
+ +2 months ago

6’7 episode k links kider gye

+Ram
+Ram
+ +2 months ago
+ +Reply to  + +Ali +

Vol 2

+Rajneesh
+Rajneesh
+ +2 months ago

Londe gajiyabad ke web series upload karo

+kk222
+kk222
+ +2 months ago

kya age ayega

+Avijit kundu
+Avijit kundu
+ +2 months ago

This is Hollywood

+Bashudev
+Bashudev
+ +2 months ago

eken babu bengali all webseries chahia

+Anmol singh
+Anmol singh
+ +2 months ago

Woh bhi din the upload plzz

+Sigma
+Sigma
+ +2 months ago

45 movie

+Riyadh
+Riyadh
+ +2 months ago

๐Ÿฅน๐Ÿซก

+Ayush Pathak
+Ayush Pathak
+ +2 months ago

Brother the link was working perfectly fine yesterday. But today when I’m trying to download the same on the other device it’s not working. Please look into the matter and do the needful as soon as possible.

+Rahul
+Rahul
+ +2 months ago
+ +Reply to  + +Ayush Pathak +

use adguard dns

+Mr lover
+Mr lover
+ +2 months ago

Eko movie netflix wala upload karo malyalam wala hindi dubbed avaialble on Netflix

+Maderchod
+Maderchod
+ +2 months ago

Are bhai ep 8 kab ayega yaar mill hi nahi Raha ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ

+Akash
+Akash
+ +2 months ago
+ +Reply to  + +Maderchod +

Mene download kr lia he yahe se watching wale pe click karo download option a jaega โœ…

+jjjkkkk
+jjjkkkk
+ +2 months ago
+ +Reply to  + +Maderchod +

u can download it from the nnext planet website

+Aryan bhatt
+Aryan bhatt
+ +2 months ago
+ +Reply to  + +Maderchod +

Episode 8 pe click kro jo watch se pehle likha h

+Prashant
+Prashant
+ +2 months ago
+ +Reply to  + +Aryan bhatt +

Par iska naam maderchod kyu hai

+Aman
+Aman
+ +2 months ago
+ +Reply to  + +Maderchod +

Netmirar pe hai full session hd me and all Netflix and amazon prime available hai

+Nouhid siddiqui
+Nouhid siddiqui
+ +2 months ago

Bhai ye EPiSODE 8 [FINAL EP] click karne se kuch open nai horahai wo koe button nahi h kya . Fir kaha se downlod karu ep 8

+Naresh
+Naresh
+ +2 months ago
+ +Reply to  + +Nouhid siddiqui +

Mare open ho raha hy

+Aryan bhatt
+Aryan bhatt
+ +2 months ago
+ +Reply to  + +Nouhid siddiqui +

Episode 8 pe click kar do Jo watch se pehle likha h

+Ffid
+Ffid
+ +2 months ago

Bro S05 EP08 4k all languages plz

+IYKYK
+IYKYK
+ +2 months ago

what a lovely website it is… thankyou for helping us man

+Kalinda
+Kalinda
+ +2 months ago

E8 jisne dekhna he wo vega movies pr jaye..

+BadAss is the goat
+BadAss is the goat
+ +2 months ago

Admin plz the last kingdom hindi dubbed daalo

+GLeN
+GLeN
+ +2 months ago

bhai ye ep 8 download kyon nhi ho rha baar baar links ki ek list nikal aati h jab Hub cloud or instant download pe click kar rha hu

+BadAss
+Admin
+BadAss
+ +2 months ago
+ +Reply to  + +GLeN +

It’s not instagram bruh you have to click on download button
+if hubdrive is not working then try HubCloud Server

+Astik
+Astik
+ +2 months ago
+ +Reply to  + +BadAss +

Bro ios not working the link

+Swapnil
+Swapnil
+ +2 months ago

S5 have 8 episodes?..can you upload 8th episode

+BadAss
+Admin
+BadAss
+ +2 months ago
+ +Reply to  + +Swapnil +

It is 8th Episode Please look carefully it’s mentioned in the post EPiSODE 8 [FINAL EP]

+Aviah
+Aviah
+ +2 months ago
+ +Reply to  + +BadAss +

Bt this not working!!

+Tushar
+Tushar
+ +2 months ago

Abe bhai do yaar is stranger things ka final kyon najar Raha jaldi Dal De

+Chetan Kolhekar
+Chetan Kolhekar
+ +2 months ago

When episode 8 will upload?

+none
+none
+ +2 months ago

bro none of links are working for episode 8

+Maharshi
+Maharshi
+ +2 months ago

Please put Finale 8th Episode in 4K HDR under 12GB

+none
+none
+ +2 months ago

bro none of your links are working for stranger things season 5 epi 8

+Shivam Gupta
+Shivam Gupta
+ +2 months ago

Please AV1 of Episode 8 Season 5

+Krishna
+Krishna
+ +2 months ago

Ep 8 did not downloading why ??

+Yaseen
+Yaseen
+ +2 months ago

Hannibal Siri upload kar do yaar please plzzzzz

+Yaseen
+Yaseen
+ +2 months ago

Hannibal prime video wali shayari kab upload kar rahe ho

+Kiran
+Kiran
+ +2 months ago

Final episode?????

+Chetan
+Chetan
+ +2 months ago

8th episode dekh liya hd4hub per late ayga jisko chahiye wo comment kare

+Maderchod
+Maderchod
+ +2 months ago
+ +Reply to  + +Chetan +

Mujhe chahiye

+Sadik
+Sadik
+ +2 months ago

Vol 3 kab add karo ga
+๐Ÿ˜ญ

+Rupesh
+Rupesh
+ +2 months ago

Stranger things episode 8 nahi mil rha

+uttam
+uttam
+ +2 months ago

a big big applause to all stranger things fans,what a 10 years long journey. And happy new year to all of u guys๐Ÿฉท๐Ÿ’•

+Haider
+Haider
+ +2 months ago

Vol 3

+Tanmay
+Tanmay
+ +2 months ago

Bhai Aaj upload karega 8th episode

+Agree
+Agree
+ +2 months ago

Episode 8 kab tk ayega???

+Ram
+Ram
+ +2 months ago

Episode 8 …. ???

+Haider
+Haider
+ +2 months ago

Vol 3 kab ayega

+Anuj
+Anuj
+ +2 months ago

Ikkis HQ me daalo jaldi

+Mind flyer
+Mind flyer
+ +2 months ago

please fix the final episode link.

+yt hu
+yt hu
+ +2 months ago

unable to download

+Ankit
+Ankit
+ +2 months ago

Upload the ep bruhhhhh ๐Ÿฅ€๐Ÿฅ€๐Ÿฅ€

+Danish
+Danish
+ +2 months ago

Your website is good.But you only upload 1080p with AAC 5.1 audio.
+Why you not upload 1080p with DD 5.1 audio???

+Ram
+Ram
+ +2 months ago

Ending is Very bad ๐Ÿ˜”

+Anuj
+Anuj
+ +2 months ago

Ikkis HQ me daalo jaldi upload karo pre hd me

+Anuj
+Anuj
+ +2 months ago
+ +Reply to  + +Anuj +

Jaldi upload karo

+Umar
+Umar
+ +2 months ago

Finally mene dhkleya hai last episode bhot zarbardast tha last episode mene 12bjy AJ start kia 2bjy khatm huwa tha episode

+Anuj
+Anuj
+ +2 months ago

Ikkis HQ me upload karo admin please ๐Ÿ™

+Jtyobc
+Jtyobc
+ +2 months ago

Ep 8 kab live hoga

+Chaitanya
+Chaitanya
+ +2 months ago

Bhai please upload Dhurandhar in Web DL quality ๐Ÿ™๐Ÿ™

+Anuj
+Anuj
+ +2 months ago

Jaldi upload karo ikkis pre HD mein admin

+Sahil
+Sahil
+ +2 months ago

Thanks BRO ๐Ÿ˜Š

+Ansh
+Ansh
+ +2 months ago

Thank you bhai

+Adil
+Adil
+ +2 months ago

Pls admin adding final episode

+Adil
+Adil
+ +2 months ago

Please add final episode admin pls

+Harman
+Harman
+ +2 months ago

Sir 1080p 10bit hevc nhi ayega keya ๐Ÿ’”๐Ÿฅ€

+Sajana Nayak
+Sajana Nayak
+ +2 months ago

Please upload last episode

+Rohit
+Rohit
+ +2 months ago
+ +Reply to  + +Sajana Nayak +

Aagya

+Rohit
+Rohit
+ +2 months ago
+ +Reply to  + +Sajana Nayak +

Hi

+Malik
+Malik
+ +2 months ago
+ +Reply to  + +Sajana Nayak +

Go watch on kat movie hd

+Sajana Nayak
+Sajana Nayak
+ +2 months ago

Where is volume 3 ?

+jones
+jones
+ +2 months ago

bro please add episode 8 in dv 4k hdr please!!

+Bahar
+Bahar
+ +2 months ago

Bro final episode kab ayga ?

+Hasnain
+Hasnain
+ +2 months ago

Bhaiii option to de diya press nahi ho rhaa episode 8?

+Adnan
+Adnan
+ +2 months ago
+ +Reply to  + +Hasnain +

under 8 ep agya hy wo jidar 8 ep lekha hy os k nichy waly Jo link hy wo 8 ep k hy

+Lucky
+Lucky
+ +2 months ago

Admin plz upload episode 8๐Ÿ™

+Hrmn
+Hrmn
+ +2 months ago

Add 1080p 10bit hevc plsssssss

+Tony Stark
+Tony Stark
+ +2 months ago

Thank You For this Brother , You are Amazing.

+Abhishek
+Abhishek
+ +2 months ago

Please uplode 8th Episode

+Suraj
+Suraj
+ +2 months ago

Volume 3 koi daaloooo jaldiii๐Ÿ˜ญ๐Ÿ™

+luci
+luci
+ +2 months ago

bro 4K/2160p SDR MULTi WEB-DL โ€“ 16.3GB download not working

+nomanx
+nomanx
+ +2 months ago

got it

+yash
+yash
+ +2 months ago

bro please upload the last ep in 1080p 10 bit fast..

+Ali
+Ali
+ +2 months ago

Bro Final Episode upload Krdo Yar Rat se Soya Ni Ho Isky Liye ๐Ÿฅฒ๐ŸคŒ๐Ÿซ 

+Akriti
+Akriti
+ +2 months ago
+ +Reply to  + +Ali +

Agya refresh karo

+Aarav
+Aarav
+ +2 months ago
+ +Reply to  + +Akriti +

Nhi aaya

+zed
+zed
+ +2 months ago
+ +Reply to  + +Akriti +

nahi aya h bhai

+Krishna
+Krishna
+ +2 months ago

Episode 8

+Dhruba
+Dhruba
+ +2 months ago

Vai episode 8 kaha he….??

+Vansh
+Vansh
+ +2 months ago

Happy new year admin ๐Ÿฅฐ๐Ÿฅฐ

+Jay
+Jay
+ +2 months ago

E8?

+Jay
+Jay
+ +2 months ago

Bhai 4k me voice support nhi kri h

+Salman
+Salman
+ +2 months ago
+ +Reply to  + +Jay +

Vlc use Karo

+Jay
+Jay
+ +2 months ago

Final kab tak ayega Bhai โค

+Akriti
+Akriti
+ +2 months ago

1080p hevc kitni der Mein daloge admin

+Atif
+Atif
+ +2 months ago

Yrrr episode 8 open nhi ho rha bhai

+Pankaj
+Pankaj
+ +2 months ago

Final episode ka link do yaar

+Akriti
+Akriti
+ +2 months ago
+ +Reply to  + +Pankaj +

Refresh karo home page pe mil jayega

+Dhaval
+Dhaval
+ +2 months ago

Please Fast upload 10bit 1080p

+Suman
+Suman
+ +2 months ago

Please upload Tokyo ghoul. It’s available in hindi dubbed on anime times. Please ๐Ÿ™ Start uploading.

+PASH
+PASH
+ +2 months ago

where’s ep 8????

+Dharmesh rathod
+Dharmesh rathod
+ +2 months ago

Final kab tak ayega bro

+๐™บ๐š‘๐šŠ๐š—
+๐™บ๐š‘๐šŠ๐š—
+ +2 months ago
+ +Reply to  + +Dharmesh rathod +

๐™ฐ๐šŠ ๐š๐šข๐šŠ

+Ayush
+Ayush
+ +2 months ago
+ +Reply to  + +Dharmesh rathod +

Hum bhi intzar me hi

+Affan
+Affan
+ +2 months ago

Hii Gyzz

+macwan
+macwan
+ +2 months ago

where’s the EP 8

+Mr Pandaaaa
+Mr Pandaaaa
+ +2 months ago

Adamin Please Upload Last Episode

+Sss
+Sss
+ +2 months ago
+ +Reply to  + +Mr Pandaaaa +

Diffrent site loaded

+Mr Pandaaaa
+Mr Pandaaaa
+ +2 months ago

Bro Upload 8 Final Episode

+Pawan
+Pawan
+ +2 months ago
+ +Reply to  + +Mr Pandaaaa +

You can download moviesbox apk to watch 8 ep if you want app link you can connect me on instagram (@pawanpatle.__)

+none
+none
+ +2 months ago
+ +Reply to  + +Pawan +

is it available for ios???

+Sahil Khan
+Sahil Khan
+ +2 months ago

Where is the last one ๐Ÿ˜”

+Jsnsjs
+Jsnsjs
+ +2 months ago

Only one episode final

+Tyler
+Tyler
+ +2 months ago

Bro finally it’s here I waited like 3 hour for this but anyways THANK YOU SOOOO MUCH FOR EVERYTHING โ™ฅ๏ธโ™ฅ๏ธ and also can you give me any of your contact thing so I can contact you? and HAPPY NEW YEAR TO YOU ADMIN AND EVERYONE ELSE ๐Ÿ’•

+Kush
+Kush
+ +2 months ago
+ +Reply to  + +Tyler +

Join discord server

+rohit
+rohit
+ +2 months ago
+ +Reply to  + +Tyler +

how to download ep 8 bro

+Nazmul
+Nazmul
+ +2 months ago

bhai episode 8 nahi mil raha

+Sss
+Sss
+ +2 months ago
+ +Reply to  + +Nazmul +

Suri site pe hai

+Dynom
+Dynom
+ +2 months ago
+ +Reply to  + +Nazmul +

Bro watch online wale option par click karo

+Prithvi
+Prithvi
+ +2 months ago
+ +Reply to  + +Nazmul +

Are yaar 1 wala hi 8 episode hai

+Tinnu
+Tinnu
+ +2 months ago

Boss admin
+Sardar 2022 Tamil movie ko dub kr do Hindi mein
+Please ๐Ÿ™



+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fosuperman-2025-hindi-webrip-full-movie b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fosuperman-2025-hindi-webrip-full-movie new file mode 100644 index 0000000..c1ba8ca --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:new5.hdhub4u.fosuperman-2025-hindi-webrip-full-movie @@ -0,0 +1,3079 @@ + Superman (2025) iMAX DS4K WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p Dual Audio [x264/10Bit-HEVC] | Full Movie – HDHub4u Official +
+
+
+
ร— + +Avoid FAKE Copies of + +HDHub4u + +on Google, + + +Always use + +HDHub4u.Tv + +With VPN to get Official Domain & Follow us on + + +Discord + + + For Latest Updates.


+ + +Superman (2025) iMAX DS4K WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p Dual Audio [x264/10Bit-HEVC] | Full Movie


Download Superman (2025) WEB-DL [Hindi (DD5.1) & English] 2160p 1080p 720p & 480p Dual Audio [x264/HEVC’s] | Full Movie,
+Watch Superman Full Movie in Hindi Dubbed Online Free on HDHub4u !

Download Superman 2025 Hindi Dubbed HDRip Full Movie


Superman (Hindi Dubbed)

iMDB Rating: 7.4/10
Genre: Actionย  | Adventure | Science Fiction
Stars: David Corenswet, Rachel Brosnahan, Nicholas Hoult
Director: James Gunn
Language: Dual Audio [Hindi (DD5.1) & English] / ESubs
Quality: WEB-DL 4K | 1080p | 720p | 480p

: Screen-Shots :

Download Superman 2025 Hindi Dubbed HDRip Full Movie Download Superman 2025 Hindi Dubbed HDRip Full Movie vlcsnap-2025-08-24-00h15m34s977.th.jpg Download Superman 2025 Hindi Dubbed HDRip Full Movie vlcsnap-2025-08-24-00h15m53s340.th.jpg vlcsnap-2025-08-24-00h16m33s035.th.jpg Download Superman 2025 Hindi Dubbed HDRip Full Movie Download Superman 2025 Hindi Dubbed HDRip Full Movie



Superman (2025) WEB-DL Hindi Full Movie in Dual Audio [HD] | Watch Online :-

Download Superman (2025) Hindi Dubbed Movie HDRip 720p Dual Audio | Watch Online on HDHub4u :

Superman (2025) Dual Audio [Hindi (DD5.1) + English] 720p HDRip x264 1GB Watch Online [G-Drive] 9xmovies, world4ufree, world4free, Khatrimaza 123Movies fmovies Gomovies gostream 300Mb Dual Audio Hindi Dubbed | Superman 720p WEBRip x264 AC3 ESub Dual Audio [Hindi (ORG 5.1) + English] DD5.1ย Download Google Drive links Free on HDHub4u | Latest Movies & Series Free Download & Watch Online | AMAZON PRIME | NETFLIX Free Download .


Download Superman (2025) Hindi Dubbed Full Movie โ€“ Storyline :

Superman (2025) Hindi Dubbed : Superman must reconcile his alien Kryptonian heritage with his human upbringing as reporter Clark Kent. As the embodiment of truth, justice and the human way he soon finds himself in a world that views these as old-fashioned.

Download Superman (2025) HDRip Full Movie in Hindi โ€“ Review :

Superman (2025) Hindi Dubbed 720p HDRip: While we have all been through the rollercoaster that is the DCEU future over the past few years, Superman could possibly be up there with one of the greatest superhero films of all time even in a world with the iconic Batman films . I didn’t honestly think Gunn would come out with such a bang on this as he did. The suicide squad was fun and showed his signature style but this is on a different level entirely . The bombastic visuals are usual and packed to the brim, but what this film does best is deliver an emotional aspect that hasn’t been this prevalent in the genre for a long time . That’s what I think will stick with people more than the action. I don’t want to get into detail too much as we are very early in the reviews but this will have people blown away and fully ready to embrace the Gunnverse. I even say that as a massive fan of the Snyderverse ….
Did you Like it?
12 Reactions
Excellent
Excellent
7
Loved
Loved
0
Thanks
Thanks
0
Wow
Wow
1
Sad
Sad
4
+ Subscribe +
Notify of
+
+
+
+guest
+
+
+43 Comments
+Newest +
+Oldest
Inline Feedbacks
View all comments


+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt4574334 b/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt4574334 new file mode 100644 index 0000000..2cd1e9e --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt4574334 @@ -0,0 +1 @@ +{"facet_counts":[],"found":5,"hits":[{"document":{"category":["Action","Adventure","Dual Audio","Hindi Dubbed","HollyWood","Mystery","Sci-Fi","WEB-Series"],"director":["Matt Duffer","Ross Duffer"],"id":"181303","imdb_id":"tt4574334","permalink":"/stranger-things-season-5-vol-3-hindi-webrip-all-episodes/","post_date":"January 1, 2026","post_thumbnail":"https://image.tmdb.org/t/p/w500/AaLrOh33YLkK1WLEB8Uml7FL8fm.jpg","post_title":"Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-3 | EP-08 Added]","post_type":"post","sort_by_date":1767257297,"stars":["Millie Bobby Brown","Finn Wolfhard","Winona Ryder"]},"highlight":{"imdb_id":{"matched_tokens":["tt4574334"],"snippet":"tt4574334"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt4574334"],"snippet":"tt4574334"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}},{"document":{"category":["Action","Adventure","Dual Audio","Hindi Dubbed","HollyWood","Mystery","Sci-Fi","WEB-Series"],"director":["Matt Duffer","Ross Duffer"],"id":"181150","imdb_id":"tt4574334","permalink":"/stranger-things-season-5-vol-2-hindi-webrip-all-episodes/","post_date":"December 26, 2025","post_thumbnail":"https://image.tmdb.org/t/p/w500/AaLrOh33YLkK1WLEB8Uml7FL8fm.jpg","post_title":"Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-2 Added]","post_type":"post","sort_by_date":1766741429,"stars":["Millie Bobby Brown","Finn Wolfhard","Winona Ryder"]},"highlight":{"imdb_id":{"matched_tokens":["tt4574334"],"snippet":"tt4574334"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt4574334"],"snippet":"tt4574334"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}},{"document":{"category":["Action","Adventure","Dual Audio","Hindi Dubbed","HollyWood","Mystery","Sci-Fi","WEB-Series"],"director":["Matt Duffer","Ross Duffer"],"id":"179695","imdb_id":"tt4574334","permalink":"/stranger-things-season-5-hindi-webrip-all-episodes/","post_date":"November 27, 2025","post_thumbnail":"https://image.tmdb.org/t/p/w500/AaLrOh33YLkK1WLEB8Uml7FL8fm.jpg","post_title":"Stranger Things (Season 5) WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p [x264/10Bit-HEVC] | NF Series | [VOL-1 Added]","post_type":"post","sort_by_date":1764225923,"stars":["Millie Bobby Brown","Finn Wolfhard","Winona Ryder"]},"highlight":{"imdb_id":{"matched_tokens":["tt4574334"],"snippet":"tt4574334"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt4574334"],"snippet":"tt4574334"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}},{"document":{"category":["Drama","Dual Audio","Hindi Dubbed","HollyWood","Horror","Sci-Fi","TV-Shows","WEB-Series"],"director":[],"id":"63349","imdb_id":"tt4574334","permalink":"/stranger-things-season-3-hindi-webrip-all-episodes/","post_date":"June 29, 2025","post_thumbnail":"https://image.tmdb.org/t/p/w400/sDms9g40ZBhjMIfX9YqqaqId8sK.jpg","post_title":"Stranger Things (Season 3) WEB-DL [Hindi DD5.1 & English] 1080p 720p 480p & 10Bit HEVC [ALL Episodes] | NF Series","post_type":"post","sort_by_date":1751172680,"stars":["Millie Bobby Brown","Finn Wolfhard","Winona Ryder\r\nCreator: Matt Duffer","Ross Duffer"]},"highlight":{"imdb_id":{"matched_tokens":["tt4574334"],"snippet":"tt4574334"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt4574334"],"snippet":"tt4574334"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}},{"document":{"category":["Action","Comedy","Dual Audio","Hindi Dubbed","HollyWood","Sci-Fi","TV-Shows","WEB-Series"],"director":[],"id":"96062","imdb_id":"tt4574334","permalink":"/stranger-things-s04-hindi-webrip-all-episodes/","post_date":"July 1, 2022","post_thumbnail":"https://myimg.click/images/2022/05/27/Stranger-Things-S04-Hindi-HDRip-ALL-Episodes.jpg","post_title":"Stranger Things (S04-VOL 1 & 2) WEB-DL [Hindi DD5.1 & English] 1080p 720p 480p & 10Bit HEVC [ALL Episodes] | NF Series","post_type":"post","sort_by_date":1656677055,"stars":["Millie Bobby Brown","Finn Wolfhard","Winona Ryder\r\nCreator: Matt Duffer","Ross Duffer"]},"highlight":{"imdb_id":{"matched_tokens":["tt4574334"],"snippet":"tt4574334"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt4574334"],"snippet":"tt4574334"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}}],"out_of":13464,"page":1,"request_params":{"collection_name":"post","first_q":"tt4574334","per_page":10,"q":"tt4574334"},"search_cutoff":false,"search_time_ms":0} \ No newline at end of file diff --git a/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt5950044 b/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt5950044 new file mode 100644 index 0000000..87da687 --- /dev/null +++ b/src/source/__fixtures__/HDHub4u/https:search.pingora.fyicollectionspostdocumentssearchquery_byimdb_idandqtt5950044 @@ -0,0 +1 @@ +{"facet_counts":[],"found":1,"hits":[{"document":{"category":["300MB Movies","Action","Adventure","Dual Audio","HD Movies","Hindi Dubbed","HollyWood","Sci-Fi"],"director":["James Gunn"],"id":"174394","imdb_id":"tt5950044","permalink":"/superman-2025-hindi-webrip-full-movie/","post_date":"August 24, 2025","post_thumbnail":"https://image.tmdb.org/t/p/w500/1H9hdeRoniz30RKhyr1uLdBTfpG.jpg","post_title":"Superman (2025) iMAX DS4K WEB-DL [Hindi (DD5.1) & English] 4K 1080p 720p & 480p Dual Audio [x264/10Bit-HEVC] | Full Movie","post_type":"post","sort_by_date":1756030053,"stars":["David Corenswet","Rachel Brosnahan","Nicholas Hoult"]},"highlight":{"imdb_id":{"matched_tokens":["tt5950044"],"snippet":"tt5950044"}},"highlights":[{"field":"imdb_id","matched_tokens":["tt5950044"],"snippet":"tt5950044"}],"text_match":578730123365711993,"text_match_info":{"best_field_score":"1108091339008","best_field_weight":15,"fields_matched":1,"num_tokens_dropped":0,"score":"578730123365711993","tokens_matched":1,"typo_prefix_score":0}}],"out_of":13464,"page":1,"request_params":{"collection_name":"post","first_q":"tt5950044","per_page":10,"q":"tt5950044"},"search_cutoff":false,"search_time_ms":0} \ No newline at end of file diff --git a/src/source/__snapshots__/HDHub4u.test.ts.snap b/src/source/__snapshots__/HDHub4u.test.ts.snap new file mode 100644 index 0000000..8161864 --- /dev/null +++ b/src/source/__snapshots__/HDHub4u.test.ts.snap @@ -0,0 +1,208 @@ +// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing + +exports[`HDHub4u handle stranger things s05e01 1`] = ` +[ + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/2452204677", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/1788432714", + }, +] +`; + +exports[`HDHub4u handle stranger things s05e08 1`] = ` +[ + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/1793632174", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/2655940410", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/2007803192", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/2913823672", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/1898122266", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/3043520687", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/4664307676", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/102319", + }, + "url": "https://hubdrive.space/file/8835271729", + }, +] +`; + +exports[`HDHub4u handle superman 2025 1`] = ` +[ + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/2048323831", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/1931317982", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/7875454809", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + }, + "url": "https://hubdrive.space/file/3608508909", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/95885", + }, + "url": "https://hubdrive.space/file/2171324800", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/95884", + }, + "url": "https://hubdrive.space/file/1866728891", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/95883", + }, + "url": "https://hubdrive.space/file/3938026297", + }, + { + "meta": { + "countryCodes": [ + "multi", + "en", + "hi", + ], + "referer": "https://hblinks.dad/archives/95882", + }, + "url": "https://hubdrive.space/file/2823990434", + }, +] +`; diff --git a/src/source/index.ts b/src/source/index.ts index 2cf1b5b..39ce172 100644 --- a/src/source/index.ts +++ b/src/source/index.ts @@ -6,6 +6,7 @@ import { Eurostreaming } from './Eurostreaming'; import { FourKHDHub } from './FourKHDHub'; import { Frembed } from './Frembed'; import { FrenchCloud } from './FrenchCloud'; +import { HDHub4u } from './HDHub4u'; import { HomeCine } from './HomeCine'; import { KinoGer } from './KinoGer'; import { Kokoshka } from './Kokoshka'; @@ -28,6 +29,7 @@ export const createSources = (fetcher: Fetcher): Source[] => { return [ // multi new FourKHDHub(fetcher), + new HDHub4u(fetcher), new VixSrc(fetcher), new VidSrc(), new RgShows(fetcher), diff --git a/src/utils/__snapshots__/manifest.test.ts.snap b/src/utils/__snapshots__/manifest.test.ts.snap index 3282343..a455b50 100644 --- a/src/utils/__snapshots__/manifest.test.ts.snap +++ b/src/utils/__snapshots__/manifest.test.ts.snap @@ -11,7 +11,7 @@ exports[`buildManifest default manifest 1`] = ` "config": [ { "key": "multi", - "title": "Multi ๐ŸŒ (4KHDHub, RgShows, VidSrc, VixSrc)", + "title": "Multi ๐ŸŒ (4KHDHub, HDHub4u, RgShows, VidSrc, VixSrc)", "type": "checkbox", }, { @@ -34,9 +34,14 @@ exports[`buildManifest default manifest 1`] = ` "title": "French ๐Ÿ‡ซ๐Ÿ‡ท (Frembed, FrenchCloud, Movix)", "type": "checkbox", }, + { + "key": "gu", + "title": "Gujarati ๐Ÿ‡ฎ๐Ÿ‡ณ (HDHub4u)", + "type": "checkbox", + }, { "key": "hi", - "title": "Hindi ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub)", + "title": "Hindi ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub, HDHub4u)", "type": "checkbox", }, { @@ -44,19 +49,29 @@ exports[`buildManifest default manifest 1`] = ` "title": "Italian ๐Ÿ‡ฎ๐Ÿ‡น (Eurostreaming, MostraGuarda, VixSrc)", "type": "checkbox", }, + { + "key": "ml", + "title": "Malayalam ๐Ÿ‡ฎ๐Ÿ‡ณ (HDHub4u)", + "type": "checkbox", + }, { "key": "mx", "title": "Latin American Spanish ๐Ÿ‡ฒ๐Ÿ‡ฝ (CineHDPlus, Cuevana, HomeCine, VerHdLink)", "type": "checkbox", }, + { + "key": "pa", + "title": "Punjabi ๐Ÿ‡ฎ๐Ÿ‡ณ (HDHub4u)", + "type": "checkbox", + }, { "key": "ta", - "title": "Tamil ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub)", + "title": "Tamil ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub, HDHub4u)", "type": "checkbox", }, { "key": "te", - "title": "Telugu ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub)", + "title": "Telugu ๐Ÿ‡ฎ๐Ÿ‡ณ (4KHDHub, HDHub4u)", "type": "checkbox", }, { @@ -134,9 +149,9 @@ exports[`buildManifest default manifest 1`] = ` ], "description": "Provides HTTP URLs from streaming websites. Configure add-on for additional languages. Add MediaFlow proxy for more URLs. -Supported languages: Albanian, German, Castilian Spanish, French, Hindi, Italian, Latin American Spanish, Tamil, Telugu +Supported languages: Albanian, German, Castilian Spanish, French, Gujarati, Hindi, Italian, Malayalam, Latin American Spanish, Punjabi, Tamil, Telugu -Supported sources: 4KHDHub, CineHDPlus, Cuevana, Einschalten, Eurostreaming, Frembed, FrenchCloud, HomeCine, KinoGer, Kokoshka, MegaKino, MeineCloud, MostraGuarda, Movix, RgShows, StreamKiste, VerHdLink, VidSrc, VixSrc +Supported sources: 4KHDHub, CineHDPlus, Cuevana, Einschalten, Eurostreaming, Frembed, FrenchCloud, HDHub4u, HomeCine, KinoGer, Kokoshka, MegaKino, MeineCloud, MostraGuarda, Movix, RgShows, StreamKiste, VerHdLink, VidSrc, VixSrc Supported extractors: ", "id": "webstreamr",