看到大家都在求yy漫画的vip现在我教大家如何破解看vip内容

搬瓦工机场JMS

以前我也做内涵漫画的,有套类似这样的程序,刚刚我看了演示站,发现还是我以前遇到到的bug,你们想要看后面vip内容的话,其实很简单,用浏览按f12,找出开头的漫画,然后改下后面的数字地址就行了。ps:那个便宜购买了,私信发套给我看看,研究下这套源码写法。

  1. 如这个:噓!姊姊的誘惑 第4話 – 不該錯失良機获取首张图片地址:http://4.yymanhua8.com//bookimages/1410/228136/1.jpg

复制代码

  1. 你们可以一直看到后面指数在后面加数字就行,他这套程序下载图片没有把地址加密:http://4.yymanhua8.com//bookimages/1410/228136/20.jpg

复制代码

西藏网友:

  1. public static void main(String[] args) {
  2.         String suffix = ".jpg";
  3.         //这是图片需要下载的url,例如原图是:http://4.yymanhua8.com//bookimages/1410/228136/1.jpg,这里就不需要填1.jpg了
  4.         String url = "http://4.yymanhua8.com//bookimages/1410/228136/";
  5.         //图片默认输出到D盘image文件夹下,没有的话需要创建,否则不下载
  6.         String path = "d:/image/";
  7.         //此处100为你确认的漫画最后一个数(不能确认的话就直接写个大点的数据)
  8.         for (int i = 1; i < 100; i++) {
  9.             try {
  10.                 downloadPicture(url + i + suffix, path + i + suffix);
  11.             } catch (Exception e) {
  12.                 break;
  13.             }
  14.         }
  15.     }
  16.     //链接url下载图片
  17.     private static void downloadPicture(String urlList, String path) {
  18.         URL url = null;
  19.         try {
  20.             url = new URL(urlList);
  21.             DataInputStream dataInputStream = new DataInputStream(url.openStream());
  22.             FileOutputStream fileOutputStream = new FileOutputStream(new File(path));
  23.             ByteArrayOutputStream output = new ByteArrayOutputStream();
  24.             byte[] buffer = new byte[1024];
  25.             int length;
  26.             while ((length = dataInputStream.read(buffer)) > 0) {
  27.                 output.write(buffer, 0, length);
  28.             }
  29.             fileOutputStream.write(output.toByteArray());
  30.             dataInputStream.close();
  31.             fileOutputStream.close();
  32.         } catch (MalformedURLException e) {
  33.             e.printStackTrace();
  34.         } catch (IOException e) {
  35.             e.printStackTrace();
  36.         }
  37.     }

复制代码
粗略写的一个版本,需要java环境直接编译运行即可
内蒙古网友:老哥这个骚,不过这样看不是很麻烦么,有没有大佬写个爬虫啊,嘿嘿嘿
河北网友: 这也太麻烦了
台湾网友:虽然麻烦,这也不失为一种办法啊。
黑龙江网友:是破解了,但比较麻烦
黑龙江网友:这个可以爬一下啊,有空搞一个
天津网友:我以前采集人家的漫画也是这样的,不过大部分站都没有加密或者打乱图片顺序。
河北网友:来个爬虫大佬吧
山西网友:哈哈 学习了
浙江网友:爬虫大佬呢。哈哈
上海网友:爬虫大佬呢。哈哈
江西网友:爬虫大佬快来
山东网友:

  1. public static void main(String[] args) {
  2.         String suffix = ".jpg";
  3.         //这是图片需要下载的url,例如原图是:http://4.yymanhua8.com//bookimages/1410/228136/1.jpg,这里就不需要填1.jpg了
  4.         String url = "http://4.yymanhua8.com//bookimages/1410/228136/&quot;;
  5.         //图片默认输出到D盘image文件夹下,没有的话需要创建,否则不下载
  6.         String path = "d:/image/";
  7.         //此处100为你确认的漫画最后一个数(不能确认的话就直接写个大点的数据)
  8.         for (int i = 1; i < 100; i++) {
  9.             try {
  10.                 downloadPicture(url + i + suffix, path + i + suffix);
  11.             } catch (Exception e) {
  12.                 break;
  13.             }
  14.         }
  15.     }
  16.     //链接url下载图片
  17.     private static void downloadPicture(String urlList, String path) {
  18.         URL url = null;
  19.         try {
  20.             url = new URL(urlList);
  21.             DataInputStream dataInputStream = new DataInputStream(url.openStream());
  22.             FileOutputStream fileOutputStream = new FileOutputStream(new File(path));
  23.             ByteArrayOutputStream output = new ByteArrayOutputStream();
  24.             byte[] buffer = new byte[1024];
  25.             int length;
  26.             while ((length = dataInputStream.read(buffer)) > 0) {
  27.                 output.write(buffer, 0, length);
  28.             }
  29.             fileOutputStream.write(output.toByteArray());
  30.             dataInputStream.close();
  31.             fileOutputStream.close();
  32.         } catch (MalformedURLException e) {
  33.             e.printStackTrace();
  34.         } catch (IOException e) {
  35.             e.printStackTrace();
  36.         }
  37.     }

复制代码
粗略写的一个版本,需要java环境直接编译运行即可
江西网友:大佬,你可真TM是个人才
甘肃网友:这个很累,。大哥
广东网友:源码交易成功了没
山东网友:膜拜一手大佬
湖南网友:这就是大佬
澳门网友:这个网站要凉。
江西网友:我采集过的本子和看过的本子 比上面的多的多的多
浙江网友:我采集过的本子和看过的本子 比上面的多的多的多
广西网友:等一个大佬采集后 分享!!
陕西网友:

  1. for i in {1..100}
  2. do
  3.     wget http://4.yymanhua8.com/bookimages/1278/222197/$i.jpg
  4. done

复制代码
黑龙江网友:坛子里都是人才 说话又好听 我超喜欢在这里的
江西网友:感谢分享
贵州网友:成功了
福建网友:虽然麻烦,这也不失为一种办法啊。
广东网友:送我1000积分,给我1个晚上,给你写个爬虫

以上信息转载自Hostloc。

未经允许不得转载:美国VPS_搬瓦工CN2 GIA VPS » 看到大家都在求yy漫画的vip现在我教大家如何破解看vip内容

赞 (17) 打赏

评论 0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏