Skip to content

Instantly share code, notes, and snippets.

View likecyber's full-sized avatar
🛠️
I called myself the Artisan.

Likecyber likecyber

🛠️
I called myself the Artisan.
  • Thailand
  • 21:58 - 7h ahead
  • Facebook likecyber
View GitHub Profile
@someguycrafting
someguycrafting / nexmon.sh
Last active May 19, 2022 06:27
Raspberry PI 3 / Zero Wi-Fi monitor mode setup
#!/bin/bash
# Thanks to all the nice folks @seemoo-lab for making this possible.
# See: https://github.com/seemoo-lab/nexmon
# This script should be run as root (i.e: sudo ./nexmon.sh) from the /home/pi/ directory!
function info {
tput bold;
tput setaf 3;
echo $1;
@wavezhang
wavezhang / java_download.sh
Last active May 6, 2025 08:53
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz
@borewicz
borewicz / gplus_logon.rb
Created June 5, 2015 11:25
login to Google+ using Android Client API - POC
#!/usr/bin/env ruby
require 'net/http'
username = "USERNAME"
password = "PASSWORD"
def convToHash(text)
result = Hash.new
text.each_line do |line|
@shreeshga
shreeshga / adb_broadcast.sh
Created June 5, 2013 18:07
Broadcast INSTALL_REFERRER command with Android adb
am broadcast -a com.android.vending.INSTALL_REFERRER -n com.kayak.android/com.google.analytics.tracking.android.CampaignTrackingReceiver --es "referrer" "utm_source=test_source&utm_medium=test_medium&utm_term=test_term&utm_content=test_content&utm_campaign=test_name"