-
Install Termux, an Android terminal emulator that provides a Linux execution environment and various tools.
-
Update system packages in Termux:
$ pkg update -y
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/env python3 | |
| #Author: Dahir Muhammad Dahir | |
| #Date: 05th-02-2022 | |
| from time import sleep | |
| import requests | |
| def main(): |
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
| #include <string> | |
| #include <vector> | |
| /* | |
| Base64 translates 24 bits into 4 ASCII characters at a time. First, | |
| 3 8-bit bytes are treated as 4 6-bit groups. Those 4 groups are | |
| translated into ASCII characters. That is, each 6-bit number is treated | |
| as an index into the ASCII character array. | |
| If the final set of bits is less 8 or 16 instead of 24, traditional base64 |
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
| timsayshey commented on 21 Jul • | |
| We came up with a workaround on our team to get Quasar and Tailwind to work together. Our goal was to build everything in Tailwind on Quasar but we didn't want Quasar styles loading in and taking over or conflicting with our Tailwind styles. The first thing we had to do was prevent the Quasar stylesheet from loading in however there is no option to disable it so we do a find/replace to remove it when webpack builds. | |
| Run npm i string-replace-loader then add the following code to the extendWebpack() method in your quasar.conf.js file: | |
| cfg.module.rules.push({ | |
| test: /client-entry\.js$/, | |
| loader: 'string-replace-loader', | |
| options: { | |
| search: "import 'quasar/dist/quasar.sass'", |
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 | |
| # Three arguments: ROOT_DIR, PATTERN, OPTIONS | |
| # Search below $ROOT_DIR for PDF files matching $PATTERN | |
| # $OPTIONS is passed to pdfgrep (ex: grep-pdf . 'some words' -h -C5) | |
| # ROOT_DIR | |
| if [ -z "$1" ]; then | |
| echo "! Argument ROOT_DIR is needed!" |
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
| POST https://www.googleapis.com/deploymentmanager/staging_dogfood/projects/<PROJECT>/global/typeProviders?access_token=<TOKEN> HTTP/1.1 | |
| { | |
| "name": "hack", | |
| "descriptorUrl": "https://issuetracker.corp.googleapis.com/$discovery/rest?key=<KEY>", | |
| "googleOptions": { | |
| "gslbTarget": "blade:corp-issuetracker-api", | |
| "descriptorUrlServerSpec": "blade:corp-issuetracker-api", | |
| "ownershipKind": "GOOGLE", | |
| "credentialType": "GAIAMINT", |
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
| POST https://www.googleapis.com/deploymentmanager/staging_dogfood/projects/<PROJECT>/global/typeProviders?access_token=<TOKEN> HTTP/1.1 | |
| { | |
| "name": "hack", | |
| "descriptorUrl": "https://<GSLB target's path to a descriptor document>", | |
| "googleOptions": { | |
| "gslbTarget": <GSLB target name>, | |
| "descriptorUrlServerSpec": <GSLB target name>, | |
| "ownershipKind": "GOOGLE", | |
| "credentialType": "GAIAMINT", |
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
| { | |
| "auth": { | |
| "oauth2": { | |
| "scopes": { | |
| "https://www.googleapis.com/auth/cloud-platform": { | |
| "description": "View and manage your data across Google Cloud Platform services" | |
| }, | |
| "https://www.googleapis.com/auth/cloud-platform.read-only": { | |
| "description": "View your data across Google Cloud Platform services" | |
| }, |
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
| POST https://www.googleapis.com/deploymentmanager/staging_dogfood/projects/<PROJECT>/global/typeProviders?access_token=<TOKEN> HTTP/1.1 | |
| { | |
| "name": "hack", | |
| "descriptorUrl": "https://test-appengine.sandbox.googleapis.com/$discovery/rest?key=<KEY>", | |
| "googleOptions": { | |
| "gslbTarget": "blade:apphosting-admin-nightly", | |
| "descriptorUrlServerSpec": "blade:apphosting-admin-nightly", | |
| "ownershipKind": "GOOGLE", | |
| "credentialType": "GAIAMINT", |
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
| echo "" | |
| echo "************ Github Dork Links (must be logged in) *******************" | |
| echo "" | |
| echo " password" | |
| echo "https://github.com/search?q=%22$1%22+password&type=Code" | |
| echo "https://github.com/search?q=%22$without_suffix%22+password&type=Code" | |
| echo "" | |
| echo " npmrc _auth" |
NewerOlder
