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
| ''' | |
| This is a helper script to watch application status and send notification on any state change. | |
| Use at your own risk. | |
| Set env var APPLICATION_NO to your case number e.g. ISC25000000000 | |
| Set env var CHECK_INTERVAL to refresh interval in seconds | |
| Set env var INITIAL_COOKIES to the cookie after log in to ICA website, in http header format | |
| Implement your own notification logic in send_notification | |
| ''' |
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
| name: Dependabot auto-patch | |
| on: | |
| pull_request_target: | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| jobs: | |
| dependabot-patch: |
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
| <xml version="1.0"> | |
| <rss version="2.0"> | |
| <channel> | |
| <title>Hackl0us IPSW Repo</title> | |
| <description>ipsw repo for test</description> | |
| <link>https://hackl0us.com</link> | |
| <item> | |
| <title>iPhone 12 Pro</title> | |
| <description>iOS 15 b6</description> |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": "logs:CreateLogGroup", | |
| "Resource": "arn:aws:logs:ap-east-1:812381238123:*" | |
| }, | |
| { | |
| "Effect": "Allow", |
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
| # Copyright 2020 by Hackl0us | |
| # Version 1.0 | |
| #!/bin/zsh | |
| # Unload Global Protect LaunchAgents | |
| launchctl unload -w /Library/LaunchAgents/com.paloaltonetworks.gp.pangpa.plist | |
| launchctl unload -w /Library/LaunchAgents/com.paloaltonetworks.gp.pangps.plist | |
| # Kill Global Protect related Processes |
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 zsh | |
| shell_config="${HOME}/.zshrc" | |
| proxyOn(){ | |
| echo "export https_proxy=http://127.0.0.1:8888" >> ${shell_config} | |
| echo "export http_proxy=http://127.0.0.1:8888" >> ${shell_config} | |
| echo "export all_proxy=socks5://127.0.0.1:8889" >> ${shell_config} | |
| source ${shell_config} |