Skip to content

Instantly share code, notes, and snippets.

View kero3009destiny's full-sized avatar
🍦
yep

Yourredyknowwhoitisss kero3009destiny

🍦
yep
  • he/him
  • İstanbul
View GitHub Profile
@KenoLeon
KenoLeon / metaMaskSign.html
Created March 13, 2022 01:41
Standalone MetaMask Signer for Medium Article tutorial
<!doctype html>
<html lang="en">
<!-- Standalone MetaMask Signer for A Medium Article: Signing messages in Ethereum medium.com/@k3no-->
<!-- Not to be used in production, just for educational purposes. -->
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
@n1sh1th
n1sh1th / cordova-enable-webview-debug.js
Created October 16, 2021 05:16
Cordova - Enable Webview Debugging
// Usage : frida -U -f bundle_id -l cordova-enable-webview-debug.js --no-pause
Java.perform(function() {
var Webview = Java.use("android.webkit.WebView")
Webview.loadUrl.overload("java.lang.String").implementation = function(url) {
console.log("[+]Loading URL from", url);
this.setWebContentsDebuggingEnabled(true);
this.loadUrl.overload("java.lang.String").call(this, url);
}
});
@lethalbit
lethalbit / pride.py
Last active August 11, 2023 20:57
New and improved 24-bit ANSI pride flags for your terminal
#!/usr/bin/env python3
# SPDX-License-Identifier: BSD-3-Clause
flags = {
'trans': [
('091', '206', '250'),
('254', '169', '184'),
('255', '255', '255'),
('254', '169', '184'),
('091', '206', '250'),