10600 发表于 2024-3-26 21:55:41

破解thisvid私密(上锁)视频的方法

1.一种基于油猴脚本的方法https://www.luckydesigner.space/a-browser-script-to-access-premium-porn/#respond
根据网站介绍可以发现thisvid的私密视频是可以被破解的。不过我登录不上他们的官网,但我找到了一份文件,可能不全。
通过百度网盘分享的文件:lfj.user…
链接:https://pan.baidu.com/s/1K1_SAvMF7IAzYZ9ypoLTQQ 
提取码:9c7h
复制这段内容打开「百度网盘APP 即可获取」
如果有高人能找到完整版的文件……
2.通过网页源代码实现,但鄙人纯外行,不会操作,烦请高人指点
以下是代码及来源
https://gist.github.com/andresovela/fea449950f5fd31642d3

begin
Script to download video files, given a list of links in a text file
Videos are saved in ~/Videos/
Andres O. Vela
February 22, 2016
=end

require "open-uri"
require "progressbar"
require "mechanize"
require "io/console"
require "nokogiri"
require "open_uri_redirections"

def find_videos(path)
videoList = []
a = []
line_num=0
text = File.open(path).read
text.gsub!(/\r\n?/, "\n")
text.each_line do |line|
    videoList << line
end
videoList
end

def format_video_url(url)
url.gsub!(/\//,"%2F")
url.gsub!(/:/,"%3A")
url
end

def save_video(url,count,total)
videoURL = format_video_url url
best_quality_link = ""
name = ""
a = Mechanize.new
a.get("https://www.vededown.com/mainpage.php?page=home&url=#{videoURL}") do |page|
      best_quality = page.links_with(:href => /http:\/\/www.vededown.com\/\?action=dl/).last
      name = page.search('div.vtitle').text
      best_quality_link = best_quality.href
end
http_download_with_words(best_quality_link,name,count,total)
end

#This function can download any type of file
def http_download_with_words(url, name, count, total)
dbar = nil
uri = URI(url)
filename = ENV['HOME'] + "/Videos/#{name}.mp4"
uri.open(
         read_timeout: 500,
         :allow_redirections => :all,
         :content_length_proc => lambda { |t|
         if t && 0 < t
             dbar = ProgressBar.new("Video (#{count}/#{total})", t)
             dbar.file_transfer_mode
         end
         },
         :progress_proc => lambda {|s|
             dbar.set s if dbar
         }
         ) do |file|
    open filename, 'w' do |io|
      file.each_line do |line|
      io.write line
      end
    end
end
message = "#{name}.mp4 successfully downloaded."
twidth = `tput cols`
puts message + (" " * (twidth.to_i - message.length))
end

def main
list = find_videos(ENV['HOME'] + "/Desktop/downloadlist.txt")
puts "Found #{list.length} video(s)."
if list.length > 0
    unless File.exists?(ENV['HOME'] + "/Videos/")
      Dir.mkdir(ENV['HOME'] + "/Videos/")
      puts "Directory created: ~/Videos/"
    end
    puts "Downloading..."
    i = 0
    total = list.length
    list.each do |video|
      i = i + 1
      save_video(video,i,total)
    end
    puts "End of program."
end
end

main()

10600 发表于 2024-3-26 22:00:16

lfj的全名是luckyfriend.js,大家可以搜索一下

1436735995 发表于 2024-3-26 22:49:06

2021年的事情了,应该是不行的,想得太美了

10600 发表于 2024-3-26 23:20:49

1436735995 发表于 2024-3-26 22:49
2021年的事情了,应该是不行的,想得太美了

现在的thisvid和2021年时也没区别吧

排泄lover 发表于 2024-3-27 01:03:44

蹲一下,挺喜欢那些上了锁的视频,每次要看都得加他们,太费事了:bukaixin:

Voyeur 发表于 2024-3-27 09:33:38

插眼,希望有大佬

haoqia 发表于 2024-3-27 11:20:31

太高深了,玩儿不了,纯支持一下。

Garrett 发表于 2024-3-27 21:59:57

折腾了一会没搞出来。。。
这个LFJ.io现在都进不去啊,是被河蟹了吗?
插个眼

飞天老兲 发表于 2024-3-27 23:39:01

另外一个靠网页源代码的依赖域名www.vededown.com已经没了,所以那个网页源代码的好像也不行……

好家伙 发表于 2024-3-29 15:16:52

插个眼                           
页: [1] 2
查看完整版本: 破解thisvid私密(上锁)视频的方法

臭鼬娘 版权所有 © 2017 - 2021