├── lib ├── __init__.py ├── politics.py └── politics.txt ├── search ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── loadstatus.py │ │ ├── loadlist.py │ │ └── loadhash.py ├── migrations │ ├── __init__.py │ ├── 0001_initial.py │ ├── 0003_auto_20150511_0316.py │ ├── 0004_auto_20150511_0339.py │ ├── 0008_extra_deleted.py │ ├── 0006_auto_20150912_1630.py │ ├── 0009_extra_update_time.py │ ├── 0007_extra.py │ ├── 0010_auto_20151019_1418.py │ ├── 0002_filelist_hash_statusreport.py │ └── 0005_auto_20150721_0628.py ├── tests.py ├── urls.py ├── admin.py ├── timermiddleware.py ├── views.py └── models.py ├── ssbc ├── __init__.py ├── wsgi.py ├── urls.py └── settings.py ├── top ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_auto_20151007_0609.py │ ├── 0003_auto_20151007_0634.py │ └── 0001_initial.py ├── templatetags │ ├── __init__.py │ └── topfilter.py ├── admin.py ├── tests.py ├── urls.py ├── views.py ├── templates │ └── top.html └── models.py ├── web ├── __init__.py ├── migrations │ └── __init__.py ├── templatetags │ ├── __init__.py │ └── filters.py ├── models.py ├── admin.py ├── static │ ├── 404.jpg │ ├── ssbc.png │ ├── howto1.png │ ├── cilibaba.png │ ├── favicon.ico │ ├── gaoqing.png │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── npm.js │ │ ├── ssbc.js │ │ └── bootstrap-typeahead.min.js │ └── css │ │ ├── ssbc.css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap-theme.css ├── tests.py ├── templates │ ├── test.html │ ├── 404.html │ ├── analytics.html │ ├── foot.html │ ├── pagination.html │ ├── howto.html │ ├── base.html │ ├── index.html │ ├── layout.html │ ├── list.html │ └── info.html └── views.py ├── workers ├── __init__.py ├── GeoIP.dat ├── announce_server.py ├── metautils.py ├── index_worker.py ├── ltMetadata.py ├── bencode.py ├── simMetadata.py ├── metadata.py ├── simdht_worker.py └── LICENSE ├── debug.sh ├── start.sh ├── README.md ├── manage.py ├── requirements.txt ├── super.conf ├── .gitignore ├── sphinx.conf └── LICENSE /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssbc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /top/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /top/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /top/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /search/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /top/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /top/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /web/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /web/static/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/404.jpg -------------------------------------------------------------------------------- /web/static/ssbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/ssbc.png -------------------------------------------------------------------------------- /web/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /workers/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/workers/GeoIP.dat -------------------------------------------------------------------------------- /web/static/howto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/howto1.png -------------------------------------------------------------------------------- /web/static/cilibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/cilibaba.png -------------------------------------------------------------------------------- /web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/favicon.ico -------------------------------------------------------------------------------- /web/static/gaoqing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/gaoqing.png -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0oVicero0/ssbc/HEAD/web/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /home/job/ssbc/env/bin/gunicorn -k gevent -b :8000 ssbc.wsgi -k gevent --env DJANGO_SETTINGS_MODULE=ssbc.debug --pid /tmp/debug_ssbc -w 1 3 | 4 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /home/job/ssbc/env/bin/gunicorn -k gevent -b :8002 ssbc.wsgi -k gevent --env DJANGO_SETTINGS_MODULE=ssbc.deployment --pid /tmp/ssbc.pid -w 6 3 | 4 | -------------------------------------------------------------------------------- /web/templates/test.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | {% block title %}手撕包菜 - 磁力搜索_收录最快的DHT搜索引擎{% endblock %} 3 | 4 | {% block content %} 5 |
7 |
8 |
The page you requested is not found.
10 |Calcualted from the last 24 hours data.
36 |12 | 磁力巴巴(手撕包菜)不提供在线播放服务,您可以使用百度云提供的播放服务。 13 |
14 |15 | 1. 搜索想看的电影,复制磁力链接: 16 |
17 |
18 |
19 |
21 | 2. 打开百度云,依次选择“离线下载”、“新建磁力任务” 22 |
23 |
24 |
25 |
27 |
28 |
30 | 3. 粘贴磁力链接,并点击“确定”,下载成功 31 |
32 |
33 |
34 |
36 |
37 |
39 | 4. 点击播放 40 |
41 |
42 |
43 |
No content
59 |20 |
|
36 |
37 | {{x.name|highlight:words}}
38 | {{x.create_time|timesince}}
39 |
40 |
41 |
52 |
53 | Files: {{x.files|length}} Total size: {{x.length|filesizeformat}} Total requests: {{x.requests}} Last access time: {{x.last_seen|timesince}}
54 | {% if x.maybe_fake %}
55 | could be FAKE!!!
56 | {% endif %}
57 |
58 | |
67 | {% for x in keyword_logs.latest|slice:":100" %} 68 | {{x.keyword}} 69 | {% endfor %} 70 |
71 || Creation Time | 29 |{{info.create_time}} | 30 |
|---|---|
| Last Access Time | 33 |{{info.last_seen}} | 34 |
| File Size | 37 |{{info.length | filesizeformat}} | 38 |
| Keywords | 41 |42 | {% for kw in keywords %} 43 | {{kw}} 44 | {% endfor %} 45 | | 46 |
| Total Requests | 49 |{{info.requests}} | 50 |
| Total Files | 53 |{{info.files|length}} | 54 |
| Magnet Link | 59 |
60 | 61 | Sorry! The related magnet link for this resource is deleted. 62 | 63 | |
64 |
| Magnet Link | 68 |
69 | 70 | Please wait ... 71 | 72 | |
73 |
| 76 | |
77 | Download (磁力链接)
78 |
79 |
83 | Play (在线观看)
84 | {% if '同人' in info.name %}
85 | メール送信を得ることができcg@cilibaba.com同人CG集のすべてのリソース 86 | {% endif %} 87 | |
88 |