OP 12 December, 2021 - 06:34 PM
THANKS to @Barry for the opportunity to talk about my idea for documents leaks!
Notice : this technique not 100% Solid [ can be improved more ... ] ( tested + working for sharing ebooks ! )
you will never bypass DMCA while using Public file hosting ( ex : MEGA NZ , ANONFILES , DRIVE GOOGLE ) dmca + File deletion risk always exist while report button is allowed !
DMCA strikes keep appearing day by day according to the companies reports!
---------------------------------------------------------------IDEA------------------------------------------------------------------------
-this idea already used by Affiliate marketers , seo marketers for promoting their links trough google !
-after many thinking i realize that their Links ( using the method ) never stop working or go down until it become indexed on GOOGLE SEARCH ENGINE Using keyword list ( GOOGLE SEARCH ENGINE OPTIMIZATION )
-so the idea behind this is simple :
1-google dorks :
-site:edu "allowed file types"
-intext:"allowed file types: gif jpg jpeg png txt pdf doc docx."
2-you will have to find a Education website that use upload button for any of this extensions ( gif jpg jpeg png txt pdf doc docx )
3-attach the file or leaked ebook or anything you want to upload to the upload handler !
4-now you can click upload button ( some websites upload automaticly - no need to click at all )
5-right click on the filename then [ COPY LOCATION URL ] or click the filename then navigate to it ! [ you will see file download appearing or PDF READER ( redirected ) ]
6-congrats ! now you made your own FILE HOSTER ( SOLID DOCUMENTS FILE HOSTERS) - document upload can reach up to 50 MB ( depend on websites of course )
Warning : use at own risk , not responsible for any stupidity - use for leaks upload only!
-----------------------------------------------------------------------------------BONUS-------------------------------------------------------------------------------------------
as a bonus LEAKERS can use a link redirector to the DOWNLOAD URL or HOSTED URL ! or simply use PHP CODE ( download as attachment ) , example :
then upload the downloader to own website.. (by this way dmca will never know wich url downloaded from )
thanks to everyone , if anyone have feedback - fix - improved idea to this just comment to this thread!
Notice : this technique not 100% Solid [ can be improved more ... ] ( tested + working for sharing ebooks ! )
you will never bypass DMCA while using Public file hosting ( ex : MEGA NZ , ANONFILES , DRIVE GOOGLE ) dmca + File deletion risk always exist while report button is allowed !
DMCA strikes keep appearing day by day according to the companies reports!
---------------------------------------------------------------IDEA------------------------------------------------------------------------
-this idea already used by Affiliate marketers , seo marketers for promoting their links trough google !
-after many thinking i realize that their Links ( using the method ) never stop working or go down until it become indexed on GOOGLE SEARCH ENGINE Using keyword list ( GOOGLE SEARCH ENGINE OPTIMIZATION )
-so the idea behind this is simple :
1-google dorks :
-site:edu "allowed file types"
-intext:"allowed file types: gif jpg jpeg png txt pdf doc docx."
2-you will have to find a Education website that use upload button for any of this extensions ( gif jpg jpeg png txt pdf doc docx )
3-attach the file or leaked ebook or anything you want to upload to the upload handler !
4-now you can click upload button ( some websites upload automaticly - no need to click at all )
5-right click on the filename then [ COPY LOCATION URL ] or click the filename then navigate to it ! [ you will see file download appearing or PDF READER ( redirected ) ]
6-congrats ! now you made your own FILE HOSTER ( SOLID DOCUMENTS FILE HOSTERS) - document upload can reach up to 50 MB ( depend on websites of course )
Warning : use at own risk , not responsible for any stupidity - use for leaks upload only!
-----------------------------------------------------------------------------------BONUS-------------------------------------------------------------------------------------------
as a bonus LEAKERS can use a link redirector to the DOWNLOAD URL or HOSTED URL ! or simply use PHP CODE ( download as attachment ) , example :
then upload the downloader to own website.. (by this way dmca will never know wich url downloaded from )
thanks to everyone , if anyone have feedback - fix - improved idea to this just comment to this thread!
Quote: example:
$file_url = 'url of direct download'; #the url that you uploaded document to
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"" . basename($file_url) . "\"");
readfile($file_url);