Skip to content

Instantly share code, notes, and snippets.

View meefs's full-sized avatar
🌷
🌹

Meefs meefs

🌷
🌹
View GitHub Profile
@meefs
meefs / antigravity-tools.md
Created November 23, 2025 21:53 — forked from avilum/antigravity-tools.md
AntiGravity (Google Browser) Reverse Engineering Tools step by step

Reverse Engineering AntiGravity browser (Step by Step)

AntiGraviti tools parsed based on reverse engineering and ParseToolArgs structs found in the binary. We need strings, the juice is in the DATA block and not in the code.

I have used the following commands on my MacOS:

1. Extract strings to file for faster iterations
# strings /Applications/Antigravity.app/Contents/Resources/app/extensions/antigravity/bin/language_server_macos_arm > ~/Downloads/language_server_macos_arm_strings.txt

2. Search tools
@meefs
meefs / 01.bash_shortcuts_v2.md
Created June 14, 2025 19:36 — forked from tuxfight3r/01.bash_shortcuts_v2.md
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line

g.co, Google's official URL shortcut (update: or Google Workspace's domain verification, see bottom), is compromised. People are actively having their Google accounts stolen.

Someone just tried the most sophisticated phishing attack I've ever seen. I almost fell for it. My mind is a little blown.

  1. Someone named "Chloe" called me from 650-203-0000 with Caller ID saying "Google". She sounded like a real engineer, the connection was super clear, and she had an American accent. Screenshot.

  2. They said that they were from Google Workspace and someone had recently gained access to my account, which they had blocked. They asked me if I had recently logged in from Frankfurt, Germany and I said no.

  3. I asked if they can confirm this is Google calling by emailing me from a Google email and they said sure and sent me this email and told me to look for a case number in it, which I saw in

@meefs
meefs / gist:97ab7c2b6b329baac3356d09659f022a
Created February 22, 2024 14:14 — forked from dnh33/gist:bc455bd7840cfba74b62be81cf0dfbac
versions of WP found thus far as relevant for analysis
early draft on wayback:
https://web.archive.org/web/20190822012241/https://poseidon01.ssrn.com/delivery.php?ID=320069123112084115082110093085000009049040064078088068077091108101087082065002125011054057055004118051018069087125025029003020015048049051033114027091118019093121004085077028000001095113093105065112124083066090004086089091078115005094126006068112072017&EXT=pdf
two hoaxes / fakes: this is related: https://stacker.news/items/88383
https://draftable.com/compare/aWysWBkgckpv
Luke hidden file:
https://bitcoinhackers.org/@jb55/105595146491662406
https://fullycrypto.com/bitcoin-whitepaper-draft-presented-in-hodlonaut-trial
https://fullycrypto.com/bitcoin-whitepaper
@meefs
meefs / server-git.conf
Created February 21, 2024 22:52 — forked from kierdwyn/server-git.conf
Nginx git smart http protocol (git-http-backend) configuration with basic authentication. Need the support of fcgiwrap.
# Example nginx + git HTTP Smart mode (git-http-backend) + HTTP Authentication + HTTPS redirect
# Forked from jeroen@massar.ch - http://jeroen.massar.ch
# Preparation: you need to install and configure fcgiwrap and set it to listen at fcgiwrap.socket.
# An example tutorial: https://www.howtoforge.com/serving-cgi-scripts-with-nginx-on-centos-6.0-p2
# A useful hint: add -f as a parameter to fcgiwrap to redirect the cgi errors to your nginx error log.
server {
listen 80;
server_name git.example.com;

Creating an ord compatible wallet with Sparrow Wallet

Users who cannot or have not yet setup the ord wallet can receive inscriptions and ordinals with alternative bitcoin wallets, as long as they are very careful about how they spend from that wallet.

This guide gives some basic steps on how to create a wallet with Sparrow Wallet which is compatible with ord and can be later imported into ord

⚠️⚠️ Warning!! ⚠️⚠️

As a general rule if you take this approach, you should use this wallet with the Sparrow software as a receive-only wallet. Do not spend any satoshis from this wallet unless you are sure you know what you are doing. You could very easily inadvertently lose access to your ordinals and inscriptions if you don't heed this warning.

Wallet Setup & Receiving

@meefs
meefs / MolochBound.sol
Created February 25, 2022 00:24 — forked from z0r0z/MolochBound.sol
an NFT that sits in your wallet until you contribute 0.01 ETH to public goods
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.4;
import 'https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol';
error NotGood();
error NotEnough();
error ETHtransferFailed();
error NotSummoner();