Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

SCRIPT TO GET ALL THE VOD FROM OPEN DIRECTORIES

maundy

Extended Member
Ext. Member
Joined
Sep 22, 2019
Messages
5
Reaction score
41
Points
21
Location
uk
SCRIPT TO GET ALL THE VOD FROM OPEN DIRECTORIES

Just simply find an open directory you want the content from
Enter the path to the directory you want it stored in
Paste in the url of the vod


The Command Generated Will Do:

Get the entire directory
Maximum crawl depth of 5 sub folders
If file exists on your server the remote file will be ignored stopping duplicates
Resumes incomplete downloads if there is an interuption
Ignores the remote servers robots.txt rules
Ignores any SSL Cert problems
Includes request headers to bypass server side cache
Ignores All common metadata files
Attempt downloading each file up to a MAX of 20 times
2 Second wait between requests
Uses A fake user agent header when making requests (Chrome Windows 10)
And it stores A log file in your folder its downloading to for you to inspect


Advised you install or run this using the screen command
so you can close the shell when you want
and the snatching will continue

Nothing special but maybe some of you will find it useful

 

reaper9640

DevilsCode
Ext. Member
Joined
Oct 4, 2019
Messages
385
Reaction score
2,218
Points
104
Location
UnderWorld
SCRIPT TO GET ALL THE VOD FROM OPEN DIRECTORIES

Just simply find an open directory you want the content from
Enter the path to the directory you want it stored in
Paste in the url of the vod


The Command Generated Will Do:

Get the entire directory
Maximum crawl depth of 5 sub folders
If file exists on your server the remote file will be ignored stopping duplicates
Resumes incomplete downloads if there is an interuption
Ignores the remote servers robots.txt rules
Ignores any SSL Cert problems
Includes request headers to bypass server side cache
Ignores All common metadata files
Attempt downloading each file up to a MAX of 20 times
2 Second wait between requests
Uses A fake user agent header when making requests (Chrome Windows 10)
And it stores A log file in your folder its downloading to for you to inspect


Advised you install or run this using the screen command
so you can close the shell when you want
and the snatching will continue

Nothing special but maybe some of you will find it useful

[LIKES = 30]



<title> VOD SNATCH </title>
<meta charset = "utf-8">
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"> </script>
<script src = "https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"> </script>
<link href = "https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel = "stylesheet">
<Style>
body {
background: url (https://hcdevilsadvocate.com/wp-content/uploads/2019/01/netflix-background-9-900x506.jpg) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-size: 100% 100%;
font-family: Orbitron, sans-serif;
}
</ Style>


<Center>
<div class = "container">
<br>
<! -? php if (! empty ($ _ POST)):
$ dir = $ _POST [is'];
$ url = $ _POST ['url'];


$ output = <<< HERE
<div class = "row" ->
<div class = "col-sm-12">
<div class = "card bg-dark">
<div class = "card-body">
<textarea class = "form-control" rows = "5" id = "snatchit" readonly = "">
screen wget "$ url" -nc -P $ dir -l 0 -c -e robots = off --no-check-certificate --no-cache -w 2 -U "Mozilla / 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit / 537.36 (KHTML, like Gecko) Chrome / 74.0.3729.169 Safari / 537.36 "-r -nH --cut-dirs = 5 -np -R" index.html * "-R" .DS_Store, Thumbs.db , thumbcache.db, desktop.ini, _macosx "
</ Textarea>
Reviews
<button class = "btn btn-outline-primary" style = "width: 100px; background: # 000000" onclick = "myFunction ()"> COPY </button>
<a href="" class="btn btn-outline-primary" style="width:100px; background:#000000" role="button"> BACK </a>
<br>
<span class="badge badge-pill badge-success"><em>after closing your screen session you can check the progress anytime by cd /path/to download &amp;&amp; tail -f wget-log </em></span>
</div></div></div></div>
HERE;

?&gt;
<!--?php echo $output; ?-->
<!--?php else: ?-->

<form action="<?php" echo="" htmlspecialchars($_server["php_self"]);="" ?=""> method="post"&gt;
<div class="row">
<div class="col-sm-10 offset-1">
<div class="card bg-dark">
<div class="card-body"><p style="text-align: left;">
<button type="button" class="badge badge-pill badge-danger" data-toggle="modal" data-target="#myModal">
INFO
</button></p>
<p style="text-align: center;"><span style="color: #ffffff;"><em><strong>OPEN DIRECTORY WEB SNATCH</strong></em></span></p>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<p><span style="color: #ffffff;"><em><strong>YOUR VOD DIRECTORY:</strong></em></span></p>
<input type="text" class="form-control" id="dir" placeholder="Enter Your Vod Path" name="dir">
</div></div>
<div class="col-sm-6">
<div class="form-group">
<p><span style="color: #ffffff;"><em><strong>OPEN VOD URL:</strong></em></span></p>
<input type="text" class="form-control" id="url" placeholder="Enter Vod Url" name="url">
</div></div></div>
<div class="row">
<div class="col-sm-6 offset-3">
<button type="submit" class="btn btn-primary">SNATCH IT</button>
<br><br>
<button type="button" class="badge badge-pill badge-primary">
advise to run using screen
</button>

<!--?php endif; ?-->
</div></div>
</div></div><br><br>
</div></div></form>
<div class="container text-center">
<div class="row">
<div class="col-sm-8 offset-2">
<div class="alert alert-dark">
<strong>
<div class="row">
<div class="col-sm-6">
<a href="https://domin8.link/SEARCH-MOVIES" class="btn btn-outline-danger" style="width:200px; background:#000000" role="button" target="_blank">FIND MOVIES</a>
</div>
<div class="col-sm-6">
<a href="https://domin8.link/SEARCH-TV" class="btn btn-outline-danger" style="width:200px; background:#000000" role="button" target="_blank">FIND TV SHOWS</a>
</div></div><strong>
</strong></strong></div><strong><strong>

<!-- The Modal -->
<div class="modal fade" id="myModal">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">

<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">SNATCHING INFO</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>

<!-- Modal body -->
<div class="modal-body"><br>
<h4><strong>SIMPLE WGET COMMAND LINE</strong></h4>
<hr>
<p><strong>Advised you install or run this using the screen command </strong><br>
<strong>So you can close the shell when you want </strong><br>
<strong>And the snatching will continue</strong></p>
<p>
<strong>Find an open directory you want the content from</strong><br>
<strong>Enter the path to the directory you want it stored in</strong><br>
<strong>Paste in the url of the vod</strong>
</p>
<hr>
<h4>THE COMMAND GENERATED WILL DO:</h4>
<span style="text-align: left;">
<ol>
<li><strong>Get the entire directory</strong></li>
<li><strong>Maximum crawl depth of 5 sub folders</strong></li>
<li><strong>If file exists on your server the remote file will be ignored stopping duplicates</strong></li>
<li><strong>Resumes incomplete downloads if there is an interuption</strong></li>
<li><strong>Ignores the remote servers robots.txt rules</strong></li>
<li><strong>Ignores any SSL Cert problems</strong></li>
<li><strong>IncludeS request headers to bypass server side cache</strong></li>
<li><strong>Ignores All common metadata files</strong></li>
<li><strong>Attempt downloading each file up to a MAX of 20 times</strong></li>
<li><strong>2 Second wait between requests</strong></li>
<li><strong>Uses A fake user agent header when making requests (Chrome Windows 10)</strong></li>
<li><strong>And it stores A log file in your folder its downloading to for you to inspect</strong></li>
</ol></span>
</div>

<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">CLOSE</button>
</div>

</div>
</div>
</div>



<script>
function myFunction() {
var copyText = document.getElementById("snatchit");
copyText.select();
copyText.setSelectionRange(0, 99999)
document.execCommand("copy");
alert("COPIED THE COMMAND:\n\n " + copyText.value);
}
</script>

</strong></strong></div></div></div></center>[/LIKES]
Hey mate edit your post and put the code into code tags please
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

hardikurdi

Basic Member
Basic Member
Banned
Joined
Dec 21, 2019
Messages
105
Reaction score
574
Points
104
Location
canada
SCRIPT TO GET ALL THE VOD FROM OPEN DIRECTORIES

Just simply find an open directory you want the content from
Enter the path to the directory you want it stored in
Paste in the url of the vod


The Command Generated Will Do:

Get the entire directory
Maximum crawl depth of 5 sub folders
If file exists on your server the remote file will be ignored stopping duplicates
Resumes incomplete downloads if there is an interuption
Ignores the remote servers robots.txt rules
Ignores any SSL Cert problems
Includes request headers to bypass server side cache
Ignores All common metadata files
Attempt downloading each file up to a MAX of 20 times
2 Second wait between requests
Uses A fake user agent header when making requests (Chrome Windows 10)
And it stores A log file in your folder its downloading to for you to inspect


Advised you install or run this using the screen command
so you can close the shell when you want
and the snatching will continue

Nothing special but maybe some of you will find it useful

No quote
please can you explain how to use ? thx bro
 

CelticIPTV

Extended Member
Ext. Member
Joined
Jan 29, 2020
Messages
11
Reaction score
21
Points
14
Location
USA
Why am I getting hidden message above. I know Im new but what seems to be the issue?
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

aftab_ka

Extended Member
Ext. Member
Joined
Oct 14, 2019
Messages
36
Reaction score
159
Points
44
Location
india
Why am I getting hidden message above. I know Im new but what seems to be the issue?


you need 10 likes
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock