Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
This file contains 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
Hashcat Version: 6.2.6 | |
NVIDIA DRIVER Version: 537.58 | |
CUDA Version 12.2.140 | |
GPU: eVGA 3080 FTW | |
CPU: Ryzen 3700X | |
MOBO: MSI 570X Gaming Plus | |
RAM: 32GB DDR4 | |
This file contains 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
# Function to compare property values of two PSObjects with wrapper around Compare-Object. | |
# Usage Compare-Objects <reference_object> <diff_object> <array_of_relevant_properties> | |
# The `strict` parameter is relevant if you want to compare integer to floating point number strictly. | |
# The `explicit` parameter is default to $true to see value by value difference. | |
function Compare-Objects { | |
param ( | |
[Parameter(Mandatory=$true)] | |
[PSObject]$obj1, | |
[Parameter(Mandatory=$true)] |
This file contains 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
# USAGE: api_key_checker.py --keys <API_KEY> | |
# Or populate list of keys in keys list below. | |
import argparse | |
import openai | |
keys = [ | |
] |
This file contains 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 | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 <json_file>" | |
exit 1 | |
fi | |
if [ ! -f "$1" ]; then | |
echo "Error: JSON file '$1' not found." | |
exit 1 |
This file contains 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
# Script to create a new file with ASCII SSIDs/ESSIDs from Hashcat potfile. | |
# Usage .\potfile_hex_to_ascii.ps1 hashcat.potfile | |
param( | |
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$false)] | |
[string] | |
$potFilePath | |
) | |
Get-Content $filePath | ForEach-Object { |
This file contains 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
# Script to backup your pwnagotchi. | |
# Usage: | |
# backup_pwnagotchi.ps1 <ip_address_of_pwnagotchi> | |
# The <ip_address_of_pwnagotchi> should be the static ip address set previously (10.0.0.2). | |
# Can setup SSH keys to bypass password prompt for SCP. | |
param( | |
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$false)] | |
[string] |
This file contains 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
trigger: | |
- master | |
resources: | |
- repo: self | |
variables: | |
azureSubscription: '<azure-subscription>' | |
dockerRegistryServiceConnection: '<service-connection>' | |
imageRepository: '<repository-name>' |
This file contains 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
from typing import AsyncIterable, List | |
import aiohttp | |
import asyncio | |
import platform | |
import time | |
import nest_asyncio | |
#__import__('IPython').embed() | |
This file contains 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
<# | |
based on this example from: https://jwt.io/ | |
https://stackoverflow.com/questions/30246497/using-statement-for-base64urlencode | |
https://medium.com/@nikitafed9292/net-base64-decoding-workaround-82b797162b6e | |
https://blog.angular-university.io/angular-jwt/ | |
https://gist.github.com/kucukkanat/1ef77db8120323db2b89087735ef8a5d | |
#> | |
################################################ |