├── .gitignore ├── README.md ├── curui ├── __init__.py ├── curses_ui │ └── cur.py ├── npyscreen_ui │ └── npyscreen_ts.py └── urwid_ui │ ├── QQ_UI.py │ ├── __init__.py │ ├── cat_box.py │ ├── dialog_box.py │ ├── msg_box.py │ └── urwid_ts.py ├── html ├── comment_shuoshuo.html └── feeds.html ├── js ├── alloy.api.js ├── comm.js ├── eqq.all.js ├── eqq.all_2.js ├── feeds.js ├── jet.all.js ├── main.js ├── mobile.js ├── qqweb.part1.js ├── qqweb.part2.js ├── qqweb.system.module.js └── use.lst ├── license.py ├── main.py ├── proxy └── retcode.lst ├── pyui └── pygame_ts.py ├── qq ├── __init__.py ├── encryp_and_hash │ ├── __init__.py │ ├── getACSRFToken.py │ └── passwd.py ├── encryption.py ├── getFriend2_hash.py ├── login_qq.py ├── qzone.py ├── reply.py ├── runqq.py ├── verifyImg.jpg └── verifyImg.py ├── res └── verifyImg.jgp ├── robot ├── __init__.py └── pandorabots.py ├── test ├── a.out ├── browse.py ├── edit.py ├── hello.py ├── image.py ├── makefile ├── palette_test.py ├── tour.py ├── tutorial.py ├── ximage.cpp ├── xline.cpp └── xtest.cpp ├── tools ├── arpsniffer ├── arpsniffer.cpp ├── dos.cpp ├── dumphttp.py ├── makefile ├── python │ └── send_request.py ├── sniffer └── sniffer.cpp └── tsQQ_in_terminal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/README.md -------------------------------------------------------------------------------- /curui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curui/curses_ui/cur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/curses_ui/cur.py -------------------------------------------------------------------------------- /curui/npyscreen_ui/npyscreen_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/npyscreen_ui/npyscreen_ts.py -------------------------------------------------------------------------------- /curui/urwid_ui/QQ_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/urwid_ui/QQ_UI.py -------------------------------------------------------------------------------- /curui/urwid_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curui/urwid_ui/cat_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/urwid_ui/cat_box.py -------------------------------------------------------------------------------- /curui/urwid_ui/dialog_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/urwid_ui/dialog_box.py -------------------------------------------------------------------------------- /curui/urwid_ui/msg_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/urwid_ui/msg_box.py -------------------------------------------------------------------------------- /curui/urwid_ui/urwid_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/curui/urwid_ui/urwid_ts.py -------------------------------------------------------------------------------- /html/comment_shuoshuo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/html/comment_shuoshuo.html -------------------------------------------------------------------------------- /html/feeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/html/feeds.html -------------------------------------------------------------------------------- /js/alloy.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/alloy.api.js -------------------------------------------------------------------------------- /js/comm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/comm.js -------------------------------------------------------------------------------- /js/eqq.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/eqq.all.js -------------------------------------------------------------------------------- /js/eqq.all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/eqq.all_2.js -------------------------------------------------------------------------------- /js/feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/feeds.js -------------------------------------------------------------------------------- /js/jet.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/jet.all.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/main.js -------------------------------------------------------------------------------- /js/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/mobile.js -------------------------------------------------------------------------------- /js/qqweb.part1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/qqweb.part1.js -------------------------------------------------------------------------------- /js/qqweb.part2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/qqweb.part2.js -------------------------------------------------------------------------------- /js/qqweb.system.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/qqweb.system.module.js -------------------------------------------------------------------------------- /js/use.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/js/use.lst -------------------------------------------------------------------------------- /license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/license.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/main.py -------------------------------------------------------------------------------- /proxy/retcode.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/proxy/retcode.lst -------------------------------------------------------------------------------- /pyui/pygame_ts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq/encryp_and_hash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq/encryp_and_hash/getACSRFToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/encryp_and_hash/getACSRFToken.py -------------------------------------------------------------------------------- /qq/encryp_and_hash/passwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/encryp_and_hash/passwd.py -------------------------------------------------------------------------------- /qq/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/encryption.py -------------------------------------------------------------------------------- /qq/getFriend2_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/getFriend2_hash.py -------------------------------------------------------------------------------- /qq/login_qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/login_qq.py -------------------------------------------------------------------------------- /qq/qzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/qzone.py -------------------------------------------------------------------------------- /qq/reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/reply.py -------------------------------------------------------------------------------- /qq/runqq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/runqq.py -------------------------------------------------------------------------------- /qq/verifyImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/verifyImg.jpg -------------------------------------------------------------------------------- /qq/verifyImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/qq/verifyImg.py -------------------------------------------------------------------------------- /res/verifyImg.jgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/res/verifyImg.jgp -------------------------------------------------------------------------------- /robot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot/pandorabots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/robot/pandorabots.py -------------------------------------------------------------------------------- /test/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/a.out -------------------------------------------------------------------------------- /test/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/browse.py -------------------------------------------------------------------------------- /test/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/edit.py -------------------------------------------------------------------------------- /test/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/hello.py -------------------------------------------------------------------------------- /test/image.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/makefile -------------------------------------------------------------------------------- /test/palette_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/palette_test.py -------------------------------------------------------------------------------- /test/tour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/tour.py -------------------------------------------------------------------------------- /test/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/tutorial.py -------------------------------------------------------------------------------- /test/ximage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/ximage.cpp -------------------------------------------------------------------------------- /test/xline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/xline.cpp -------------------------------------------------------------------------------- /test/xtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/test/xtest.cpp -------------------------------------------------------------------------------- /tools/arpsniffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/arpsniffer -------------------------------------------------------------------------------- /tools/arpsniffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/arpsniffer.cpp -------------------------------------------------------------------------------- /tools/dos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/dos.cpp -------------------------------------------------------------------------------- /tools/dumphttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/dumphttp.py -------------------------------------------------------------------------------- /tools/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/makefile -------------------------------------------------------------------------------- /tools/python/send_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/python/send_request.py -------------------------------------------------------------------------------- /tools/sniffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/sniffer -------------------------------------------------------------------------------- /tools/sniffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tools/sniffer.cpp -------------------------------------------------------------------------------- /tsQQ_in_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atupal/cliqq/HEAD/tsQQ_in_terminal.py --------------------------------------------------------------------------------