Skip to content

Instantly share code, notes, and snippets.

View dokkillo's full-sized avatar
🏠
Bug bounty mode!

Gabriel C dokkillo

🏠
Bug bounty mode!
View GitHub Profile
https://medium.com/android-news/hacking-android-app-with-frida-a85516f4f8b7
https://cmrodriguez.me/blog/frida-scripting-guide/
https://notsosecure.com/pentesting-android-apps-using-frida/
https://11x256.github.io/Frida-hooking-android-part-1
https://payatu.com/blog/amit/Getting%20_started_with_Frida
https://zhuanlan.zhihu.com/p/157604388
https://corellium.com/blog/android-frida-finding-hooks
https://frida.re/docs/javascript-api/
https://www.fatalerrors.org/a/java-runtime-for-advanced-usage-of-frida-hook-android-app.html
https://www.nowsecure.com/blog/2017/04/27/owasp-ios-crackme-tutorial-frida/
Name : Finding vulnerabilities in PHP scripts FULL ( with examples )
Author : SirGod
Email : [email protected]
Contents :
1) About
2) Some stuff
3) Remote File Inclusion
3.0 - Basic example
3.1 - Simple example
@dokkillo
dokkillo / Bootstrap_XSS.md
Created April 13, 2021 13:03 — forked from BlackFan/Bootstrap_XSS.md
Bootstrap XSS Collection

CVE-2019-8331

Bootstrap < 3.4.1 || < 4.3.1

✔️ CSP strict-dynamic bypass

➖ Requires user interaction

➖ Requires $('[data-toggle="tooltip"]').tooltip();

@dokkillo
dokkillo / install_go.sh
Created March 28, 2021 16:04 — forked from haccer/install_go.sh
Bash script to install the latest version of Go (For linux)
#!/bin/bash
# Bash script to install the latest version of Go (For linux)
# Get current version of Go for 64-bit Linux
CUR=$(curl -s https://golang.org/dl/ | grep linux-amd64 | grep 'download downloadBox' | cut -d'"' -f4)
# Download Go
wget $CUR
# Get filename
#!/usr/bin/python
import requests
import os
import subprocess
import psutil
import time
import sys
# A quick and dirty exploit of ManageEngine Desktop Central StatusUpdate Arbitrary File Upload
# Based off - https://www.exploit-db.com/exploits/34594/
@dokkillo
dokkillo / PasswordDigestRequest.cs
Created October 16, 2018 16:30 — forked from leegould/PasswordDigestRequest.cs
Soap Password Digest
using System;
using System.Configuration;
using System.Security.Cryptography;
using System.Text;
namespace SoapServices
{
///
/// Example class for creating a Password Digest Header in .Net
///
@dokkillo
dokkillo / Basic.cs
Created March 24, 2018 10:06
Object Extension Methods
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NominaWF.Utils.BasicMethods
{
static class Basic
{
internal static Func<object, double> ToDouble = (Obj) =>