Skip to content

Instantly share code, notes, and snippets.

View thisissorna's full-sized avatar

Mortaza Daneshyar thisissorna

View GitHub Profile
@thisissorna
thisissorna / meganz.php
Last active December 25, 2021 19:10 — forked from MBRCTV/meganz.php
Mega.nz Direct Link Generator
<?php
echo '<html><head><title>Mega downloader</title></head><body><h2>Enter Url</h2><form action="meganz.php" method="POST"> <br> URL: <input type="text" name="URL"> <br><input type="submit" value="Submit"></form>';
if ($_POST) {
error_reporting(0);
$url = $_POST['URL'];
preg_match("/file\/(.+?)#/", $url, $output_array);