Skip to content

Instantly share code, notes, and snippets.

View avicoder's full-sized avatar
🖖
hmm hmm hmm hmm hmm

avicoder avicoder

🖖
hmm hmm hmm hmm hmm
View GitHub Profile
@avicoder
avicoder / lark_slack.md
Created February 11, 2024 06:56
Mass Import Slack emojis to Larksuite.

Mass Importing Emojis from Slack to Larksuite

Prerequisite:

  1. Export all the emojies from Slack using this tool - https://emojibox.app/
  2. Convert all the exported emojies to the format accepted in Lark, i.e. 96x96, <100KB, png format, using this tool - https://redketchup.io/bulk-image-resizer
image
  1. Note the path where all the converted emojies are located.

Keybase proof

I hereby claim:

  • I am avicoder on github.
  • I am avicoder (https://keybase.io/avicoder) on keybase.
  • I have a public key ASCB8CaKQFh5IAD9ZLF5-FrjRpMaYyX7eh1yyyEuKe0zEAo

To claim this, I am signing this object:

@avicoder
avicoder / OffsecVM_KALI.md
Last active July 11, 2020 11:17
Offensive Security OSCP PWK Kali 2017 VM

If you're also searching for it then you can download from my Google drive here:

https://drive.google.com/file/d/1wVKSkTJHxC2JHlEmjLYeV4MmfG-eVLcy/view?usp=sharing

thank me later!

@avicoder
avicoder / reg.md
Last active January 21, 2019 09:55
Regex Fun
  • 1

/d+

#2

([\da-f]{2}:?){6}

#3

@avicoder
avicoder / gcp-api-key-check.py
Created August 31, 2018 09:32
Check the google api key is valid or not.
import googlemaps
from datetime import datetime
gmaps = googlemaps.Client(key='Add Your Key here')
# Geocoding an address
geocode_result = gmaps.geocode('1600 Amphitheatre Parkway, Mountain View, CA')
# Look up an address with reverse geocoding
reverse_geocode_result = gmaps.reverse_geocode((40.714224, -73.961452))
@avicoder
avicoder / Mapbox.py
Created May 16, 2018 06:58
Check for key validation
from mapbox import Geocoder
def banner():
return "\n[*] "
def mapbox():
API_TOKEN = raw_input("Enter the Mapbox API key here and press enter:\n")
token_type = API_TOKEN[:2]
@avicoder
avicoder / list-url.py
Created April 30, 2018 10:52
Frida script to get the list of all API calls from a twitter android app in real time.
#! /usr/bin/python
# Usage `python list-url.py`
import frida,sys
jspayload= """
setImmediate(function() {
@avicoder
avicoder / reverzeMe1.js
Created April 27, 2018 07:17
ReverzeMe solution in frida
setImmediate(function() {
Java.perform(function() {
//Saving retval
retval = Java.use("java.lang.Boolean").$new("False");
chalJNI = Java.use("com.example.reverzeme.ChallengeJNI");
chalJNI.checkIfDeviceIsEmulator.implementation = function(v) {
"use strict";
/* Check if a Java/Dalvik/ART VM is available */
if (Java.available) {
//FIX - Need to be inside perform
Java.perform(function() {
/* enumerate loaded classes */