Signed-off-by: 和平才子 <8805354+peace-talent@user.noreply.gitee.com>
This commit is contained in:
和平才子 2024-01-25 10:28:20 +00:00 committed by Gitee
parent e70df55347
commit e55c17605a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
12 changed files with 6451 additions and 0 deletions

BIN
my/js/6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

36
my/js/DJ音乐.js Normal file
View File

@ -0,0 +1,36 @@
// 道长 drpy仓库 https://gitcode.net/qq_32394351/dr_py
// 道长 drpy安卓本地搭建说明 https://code.gitlink.org.cn/api/v1/repos/hjdhnx/dr_py/blob/master/%E5%AE%89%E5%8D%93%E6%9C%AC%E5%9C%B0%E6%90%AD%E5%BB%BA%E8%AF%B4%E6%98%8E.md
// 道长 drpy写源 模板规则说明 https://gitcode.net/supertlo/dr_py#%E6%A8%A1%E6%9D%BF%E8%A7%84%E5%88%99%E8%AF%B4%E6%98%8E
// 道长 drpy写源 套模模版 https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/%E6%A8%A1%E6%9D%BF.js
// 道长 drpy写源 影片教程 http://101.34.67.237:5244/%E6%95%99%E8%82%B2/drpy
// 道长 drpy写源 影片教程(m3u8切片) https://freedrpy.run.goorm.io/txt/jc/playlist.m3u8
// 海阔下载 https://haikuo.lanzoui.com/u/GoldRiver
// Pluto Player官方TG https://t.me/PlutoPlayer
// Pluto Player官方TG https://t.me/PlutoPlayerChannel
// pluto 播放正常
// 俊老的壳或PythonBox 在rules新增底下设定 即可正常播放
// {"host":"www.djuu.com","rule":["mp4.djuu.com"]},
var rule = {
title:'DJ音乐',
host:'http://www.djuu.com',
homeUrl:'/exclusive/115_1.html',//网站的首页链接,可以是完整路径或者相对路径,用于分类获取和推荐获取 fyclass是分类标签 fypage是页数
url:'/djlist/fyclass_fypage.html',
searchUrl:'/search?musicname=**',
searchable:2,
quickSearch:0,
class_parse:'#top_banner_bg div;a&&Text;a&&href;/djlist/(\\d+)_1.html',
headers:{
'User-Agent':'PC_UA'
},
timeout:5000,
play_parse:true,
lazy:'',
limit:6,
double:false,
推荐:'*',
一级:'.list_musiclist tr:gt(0);a&&title;img&&src;.cor999:eq(1)&&Text;a&&href',
二级:'*',
搜索:'*;*;*;.sc_1&&Text;*',
}

1
my/js/cheerio.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6191
my/js/crypto-js.js Normal file

File diff suppressed because it is too large Load Diff

37
my/js/drpy.js Normal file

File diff suppressed because one or more lines are too long

1
my/js/drpy2.min.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
my/js/fty.jar Normal file

Binary file not shown.

68
my/js/gbk.js Normal file

File diff suppressed because one or more lines are too long

53
my/js/ikanbot2.js Normal file

File diff suppressed because one or more lines are too long

39
my/js/iqiyi.js Normal file

File diff suppressed because one or more lines are too long

BIN
my/js/jar.php Normal file

Binary file not shown.

25
my/js/maomi_aes.js Normal file
View File

@ -0,0 +1,25 @@
eval(getCryptoJS());
var a = CryptoJS.enc.Utf8.parse("625222f9149e961d");
var t = CryptoJS.enc.Utf8.parse("5efdtf6060e2o330");
function De(word) {
word = CryptoJS.enc.Hex.parse(word)
return CryptoJS.AES.decrypt(CryptoJS.enc.Base64.stringify(word), a, {
iv: t,
mode: CryptoJS.mode.CBC,
padding: CryptoJS.pad.Pkcs7
}).toString(CryptoJS.enc.Utf8)
}
var En = function(word) {
// print(a);
// print(word);
var Encrypted = CryptoJS.AES.encrypt(word, a, {
iv: t,
mode: CryptoJS.mode.CBC,
padding: CryptoJS.pad.Pkcs7
});
return Encrypted.ciphertext.toString();
}
$.exports = {
De:De,
En:En
}