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
| โญโโโ Claude Code v2.1.72 โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ | |
| โ โ Tips for getting started โ | |
| โ Welcome back! โ Run /init to create a CLAUDE.md file with instructions for Claude โ | |
| โ โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ | |
| โ โโโโโโโ โ Recent activity โ | |
| โ โโโโโโโโโ โ No recent activity โ | |
| โ โโ โโ โ โ | |
| โ โ โ | |
| โ Opus 4.6 ยท API Usage Billing โ โ | |
| โ ~/Downloads/Vulnerability-goapp โ |
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 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Convert CodeQL SARIF to: | |
| { | |
| "dataFlowPath": [ | |
| { "threadFlows": [ { "steps": [ ... ] } ] }, | |
| ... | |
| ] | |
| } |
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
| import requests | |
| import string | |
| import re | |
| TARGET_USERNAME = "admin" | |
| # "็ฅ่ฐ"็ๅคๆญไพๆฎ | |
| SUCCESS_MESSAGE = "็ปๅฝๆๅ" | |
| CHARSET = string.ascii_letters + string.digits + "!@#$%^&*()_+-=[]{}|;:,.<>?/`~" |