Skip to content

Instantly share code, notes, and snippets.

@kimseler14
kimseler14 / rwas.py
Created September 11, 2020 16:01 — forked from erickdsama/rwas.py
Class to read and write messages to Whatsapp through of the ADB. You need a android Device with Sqlite3 installed and ADB service.
# coding=utf-8
import json
import time
from subprocess import check_output, CalledProcessError
class WHO:
FROM_ME = "key_from_me == 1"
OTHERS = "key_from_me != 1"
ALL = ""
@kimseler14
kimseler14 / CreateAnonNickPass.php
Created March 25, 2022 20:17 — forked from XianThi/CreateAnonNickPass.php
connected2 anon nick & password generator
<?php
#####################################################
# USAGE #
# include(CreateAnonNickPass.php) #
# CreateAnonNickPass::getAnonNickPassword(); #
#####################################################
class SecureRandomException extends Exception {
}