Bootstrap < 3.4.1 || < 4.3.1
✔️ CSP strict-dynamic bypass
➖ Requires user interaction
➖ Requires $('[data-toggle="tooltip"]').tooltip();
| 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 |
| #!/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/ |
| using System; | |
| using System.Configuration; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace SoapServices | |
| { | |
| /// | |
| /// Example class for creating a Password Digest Header in .Net | |
| /// |
| 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) => |