I figured that I would write down my findings somewhere since this is my first time using Frida. This won't cover installing frida, adb, apktool because these are well covered in other sources.
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
| console.log(examineNaN(NaN)); | |
| // > { isNaN: true, sign: 0, signaling: false, payload: 0 } | |
| const nan = createNaN(false, false, 5000); | |
| console.log(isNaN(nan)); | |
| // > true | |
| console.log(examineNaN(nan)); | |
| // > { isNaN: true, sign: 0, signaling: false, payload: 5000 } | |
| const nan2 = createNaN(false, false, [1, 2, 3, 4, 5, 6]); |
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
| package utils | |
| import ( | |
| "context" | |
| "github.com/aws/aws-sdk-go-v2/aws" | |
| awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" | |
| "github.com/aws/smithy-go/middleware" | |
| "reflect" | |
| ) |
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 openai | |
| import boto3 | |
| import json | |
| import time | |
| from typing import Dict, List | |
| openai.api_key = '### SET YOUR OPENAPI API KEY HERE ###' | |
| session = boto3.session.Session() | |
| client = session.client('iam') |
Dump of all commands from "So You Think You Know Git - FOSDEM 2024":
The full blog post: https://blog.gitbutler.com/git-tips-and-tricks/
OlderNewer