Skip to content

Instantly share code, notes, and snippets.

View KevinLiebergen's full-sized avatar
🎯
Focusing

KevinLiebergen

🎯
Focusing
View GitHub Profile
@f13end
f13end / Wallet Addresses
Last active March 19, 2023 19:01
List of addresses for major bitcoin and ethereum exchanges
1.Binance
2.Bitfinex
3.Huobi
4.Bitstamp
5.Coincheck
6.Kraken
7.Poloniex
8.Gate.io (Only ETH)
9.Cryptopia (Only ETH)
10.Gemini (Only ETH)
@junquera
junquera / findin.sh
Last active March 25, 2019 15:36
Find a text occurrence in all the files in a path
#!/bin/bash
PATH_TO_FIND="$1"
TEXT_TO_FIND="$2"
find $1 -type f |
while read f; do
if [ $(grep $2 "$f" | wc -l) -gt 0 ]; then
echo $f
else
if [ $(echo "$f" | grep $2 | wc -l) -gt 0 ]; then
echo $f
@dreikanter
dreikanter / encrypt_openssl.md
Last active May 2, 2024 12:55 — forked from crazybyte/encrypt_openssl.txt
File encryption using OpenSSL

Symmetic encryption

For symmetic encryption, you can use the following:

To encrypt:

openssl aes-256-cbc -salt -a -e -in plaintext.txt -out encrypted.txt

To decrypt: