Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It can be used for SSRF attacks even when redirects are disabled
121 lines (121 sloc)
3.14 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "rudloff/alltube", | |
"type": "project", | |
"description": "HTML GUI for youtube-dl", | |
"homepage": "http://alltubedownload.net/", | |
"license": "GPL-3.0-only", | |
"authors": [ | |
{ | |
"name": "Pierre Rudloff", | |
"email": "contact@rudloff.pro", | |
"homepage": "https://rudloff.pro/", | |
"role": "Developer" | |
}, | |
{ | |
"name": "Olivier Haquette", | |
"email": "contact@olivierhaquette.fr", | |
"homepage": "http://olivierhaquette.fr/", | |
"role": "Designer" | |
} | |
], | |
"require": { | |
"php": ">=7.3", | |
"ext-intl": "*", | |
"ext-json": "*", | |
"aura/session": "^2.1", | |
"barracudanetworks/archivestream-php": "^1.0", | |
"consolidation/log": "^2.0", | |
"cweagans/composer-patches": "^1.7", | |
"j0k3r/httplug-ssrf-plugin": "^2.0", | |
"jawira/case-converter": "^3.4", | |
"jean85/pretty-package-versions": "^1.3", | |
"mathmarques/smarty-view": "^1.1", | |
"oomphinc/composer-installers-extender": "^2.0", | |
"paragonie/csp-builder": "^2.5", | |
"rinvex/countries": "^6.1", | |
"rudloff/alltube-library": "^0.1.1", | |
"symfony/finder": "^5.0", | |
"symfony/translation": "^4.0", | |
"symfony/yaml": "^4.0", | |
"webfontkit/open-sans": "^1.0", | |
"ytdl-org/youtube-dl": "^2021.04", | |
"zonuexe/http-accept-language": "^0.4.1" | |
}, | |
"require-dev": { | |
"consolidation/robo": "^2.1", | |
"enlightn/security-checker": "^1.4", | |
"ergebnis/composer-normalize": "^2.6", | |
"insite/composer-dangling-locked-deps": "^0.2.1", | |
"junker/debugbar-smarty": "^0.1.0", | |
"kitchenu/slim-debugbar": "^1.1", | |
"maximebf/debugbar": "^1.16", | |
"php-mock/php-mock-mockery": "^1.3", | |
"phpro/grumphp": "^1.3", | |
"phpstan/phpstan": "^0.12.72", | |
"phpunit/phpunit": "^8.4", | |
"smarty-gettext/smarty-gettext": "^1.6", | |
"squizlabs/php_codesniffer": "^3.5", | |
"symfony/error-handler": "^5.0", | |
"symfony/var-dumper": "^5.0" | |
}, | |
"config": { | |
"platform": { | |
"php": "7.3.11" | |
}, | |
"sort-packages": true | |
}, | |
"extra": { | |
"installer-paths": { | |
"assets/{$name}": [ | |
"webfontkit/open-sans" | |
], | |
"vendor/{$vendor}/{$name}/": [ | |
"type:library" | |
] | |
}, | |
"installer-types": [ | |
"library" | |
], | |
"patches": { | |
"ytdl-org/youtube-dl": { | |
"Disable the generic extractor": "patches/youtube-dl-disable-generic.diff" | |
} | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Alltube\\": "classes/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Alltube\\Test\\": "tests/" | |
} | |
}, | |
"repositories": [ | |
{ | |
"type": "package", | |
"package": { | |
"name": "ytdl-org/youtube-dl", | |
"version": "2021.04.01", | |
"dist": { | |
"type": "zip", | |
"url": "https://github.com/ytdl-org/youtube-dl/archive/2021.04.01.zip" | |
} | |
} | |
} | |
], | |
"scripts": { | |
"lint": "grumphp run --ansi", | |
"release": "robo release --ansi", | |
"test": [ | |
"Composer\\Config::disableProcessTimeout", | |
"phpunit" | |
], | |
"update-locales": [ | |
"tsmarty2c.php templates > i18n/template.pot", | |
"xgettext --omit-header -kt -j -o i18n/template.pot classes/*.php classes/*/*.php" | |
], | |
"youtube-dl": "vendor/ytdl-org/youtube-dl/youtube_dl/__main__.py" | |
} | |
} |