├── LICENSE ├── README.md ├── demo.py ├── imgs ├── alipay.jpg └── wechat.jpg ├── request └── web │ ├── apis │ ├── __init__.py │ ├── auth.py │ ├── comments.py │ ├── note.py │ └── user.py │ ├── encrypt │ ├── config.py │ ├── cookie │ │ ├── a1_and_webId.py │ │ ├── gid_webprofile_data.py │ │ └── websectiga.py │ ├── decrypt_xs_xsc.py │ ├── header │ │ ├── X_B3.py │ │ ├── X_S.py │ │ ├── X_S_Common.py │ │ └── X_Xray.py │ ├── other │ │ └── XhsFpGenerator.py │ ├── web_encrypt_config.ini │ ├── xhs_diy_encode.py │ └── xhs_encrypt.py │ ├── exceptions │ └── session_exceptions.py │ └── xhs_session.py └── units ├── base_response.py ├── fuck_reverse_crypto ├── asymmetric.py ├── bitwise_operations.py ├── encoding.py ├── hash_functions.py └── symmetric.py └── singleton.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/demo.py -------------------------------------------------------------------------------- /imgs/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/imgs/alipay.jpg -------------------------------------------------------------------------------- /imgs/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/imgs/wechat.jpg -------------------------------------------------------------------------------- /request/web/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/apis/__init__.py -------------------------------------------------------------------------------- /request/web/apis/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/apis/auth.py -------------------------------------------------------------------------------- /request/web/apis/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/apis/comments.py -------------------------------------------------------------------------------- /request/web/apis/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/apis/note.py -------------------------------------------------------------------------------- /request/web/apis/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/apis/user.py -------------------------------------------------------------------------------- /request/web/encrypt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/config.py -------------------------------------------------------------------------------- /request/web/encrypt/cookie/a1_and_webId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/cookie/a1_and_webId.py -------------------------------------------------------------------------------- /request/web/encrypt/cookie/gid_webprofile_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/cookie/gid_webprofile_data.py -------------------------------------------------------------------------------- /request/web/encrypt/cookie/websectiga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/cookie/websectiga.py -------------------------------------------------------------------------------- /request/web/encrypt/decrypt_xs_xsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/decrypt_xs_xsc.py -------------------------------------------------------------------------------- /request/web/encrypt/header/X_B3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/header/X_B3.py -------------------------------------------------------------------------------- /request/web/encrypt/header/X_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/header/X_S.py -------------------------------------------------------------------------------- /request/web/encrypt/header/X_S_Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/header/X_S_Common.py -------------------------------------------------------------------------------- /request/web/encrypt/header/X_Xray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/header/X_Xray.py -------------------------------------------------------------------------------- /request/web/encrypt/other/XhsFpGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/other/XhsFpGenerator.py -------------------------------------------------------------------------------- /request/web/encrypt/web_encrypt_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/web_encrypt_config.ini -------------------------------------------------------------------------------- /request/web/encrypt/xhs_diy_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/xhs_diy_encode.py -------------------------------------------------------------------------------- /request/web/encrypt/xhs_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/encrypt/xhs_encrypt.py -------------------------------------------------------------------------------- /request/web/exceptions/session_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/exceptions/session_exceptions.py -------------------------------------------------------------------------------- /request/web/xhs_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/request/web/xhs_session.py -------------------------------------------------------------------------------- /units/base_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/units/base_response.py -------------------------------------------------------------------------------- /units/fuck_reverse_crypto/asymmetric.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /units/fuck_reverse_crypto/bitwise_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/units/fuck_reverse_crypto/bitwise_operations.py -------------------------------------------------------------------------------- /units/fuck_reverse_crypto/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/units/fuck_reverse_crypto/encoding.py -------------------------------------------------------------------------------- /units/fuck_reverse_crypto/hash_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/units/fuck_reverse_crypto/hash_functions.py -------------------------------------------------------------------------------- /units/fuck_reverse_crypto/symmetric.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /units/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cialle/RedCrack/HEAD/units/singleton.py --------------------------------------------------------------------------------