If you were annoyed by the recent multi-lines output bug in in your and engagements, I've just fixed it: github.com/ffuf/ffuf/pull/656

It's not yet merged, but in the meantime you can apply the patch locally and recompile ffuf if needed! ๐Ÿค—

#ffuf #pentests #bugbounty

Last updated 1 year ago

Hacks2learn :verified: · @hacks2learn
42 followers · 13 posts · Server infosec.exchange

Have you ever wanted to run FFUF or some other tool over proxychains and found that it just did not work?
Try setting up a proxy in a proxy as follows:

# Setup Dynamic Port Forwarding
sudo ssh -p 22 -N -D 127.0.0.1:9052 user@target -o "UserKnownHostsFile=/dev/null"

# ensure Proxychains points to our Port
# (verify Proxy DNS requirements and adjust on/off)
# socks5 127.0.0.1 9052
sudo vi /etc/proxychains4.conf

# Install Proxy.py pypi.org/project/proxy.py/
pip install proxy.py

# Run proxy.py over proxychains
$ proxychains proxy
[proxychains] config file found: /etc/proxychains4.conf
[proxychains] preloading /usr/lib/x86_64-linux-gnu/libproxychains.so.4
[proxychains] DLL init: proxychains-ng 4.16
2023-02-04 16:39:14,593 - pid:199836 [I] plugins.load:85 - Loaded plugin proxy.http.proxy.HttpProxyPlugin
2023-02-04 16:39:14,594 - pid:199836 [I] tcp.listen:80 - Listening on 127.0.0.1:8899
2023-02-04 16:39:14,604 - pid:199836 [I] pool.setup:105 - Started 2 acceptors in threadless (local) mode

# Use FFUF over proxy.py over proxychains

$ ffuf -x http://127.0.0.1:8899 -w /usr/share/wordlists/rockyou.txt -u http://localhost/login.php -X POST -H "Cookie: test_cookie=Cookie+check" -H "Content-Type: application/x-www-form-urlencoded" -d "log=admin&pwd=FUZZ"

#ffuf #proxychains #tunnel

Last updated 2 years ago

Astra Kernel :verified: · @AstraKernel
582 followers · 609 posts · Server infosec.exchange

โœจ ffuf(Fuzz Faster U Fool)

โ–ถ๏ธFest web fuzzer written in Go that allows typical directory discovery, virtual host discovery (without DNS records) and GET and POST parameter fuzzing

GitHub link:
github.com/ffuf/ffuf

โ–ถ๏ธ Resources

๐Ÿ‘‰ Comprehensive Guide on ffuf
hackingarticles.in/comprehensi

๐Ÿ‘‰ How to Fuzz Web Applications using FFuf โ€“ Web Security Tutorial

freecodecamp.org/news/web-secu

๐Ÿ‘‰Top 25 Example Usage of ffuf Web Fuzzer
allabouttesting.org/top-25-exa

๐Ÿ‘‰ HOW TO FIND ZERO-DAY VULNERABILITIES WITH ffuf
securitynewspaper.com/2022/06/

#infosec #ffuf #pentesting #bugbounty #bugbountytip #redteamtip #zeroday #kalilinux

Last updated 2 years ago

Max Maass :verified: · @hacksilon
200 followers · 112 posts · Server infosec.exchange

Just published part 3 of my blog series on Actuators - today, I'm discussing how to find exposed Actuators using dynamic testing with my favorite swiss army knife for web security tests: ffuf.

blog.maass.xyz/spring-actuator

If you missed the previous articlesor don't know what I am talking about: In part 1, I discuss why Spring Actuators can be dangerous if you inadvertently expose them to the internet (blog.maass.xyz/spring-actuator), and in part 2 I show you how to use to analyze your code for common misconfigurations related to them (blog.maass.xyz/spring-actuator). This third article rounds out the attacker side with a look at dynamic testing using . Now, on to writing a final article from the perspective of the defender.

#java #spring #semgrep #ffuf #security #bugbounty #redteam

Last updated 2 years ago

magikh0e :unverified: · @magikh0e
130 followers · 132 posts · Server infosec.exchange

- Fuzz Faster U Fool on multiple hosts

for i in cat urls.txt; do ffuf -u $i/FUZZ -w wordlist.txt -mc 200,302,401 -se ;done

github.com/ffuf/ffuf

Pro Tip: If you are not finding any valid endpoints, try within a discovered path adding ..;/ to the url.

ie site.tld/somedir/..;/FUZZ

github.com/aufzayed/bugbounty/

#ffuf #bugbounty #bugbountytips #fuzzing #owasp #recon #osint #bypass #payloads

Last updated 2 years ago

tXambe · @tXambe
1 followers · 323 posts · Server mastodon.social

RT @ReconOne_bk@twitter.com

ffuf is used by hundreds of people

But only a few use the tool effectively.

Here are 9 tips you want to know right away ๐Ÿ‘‡ ๐Ÿงต

๐Ÿฆ๐Ÿ”—: twitter.com/ReconOne_bk/status

#bugbountytips #bugbounty #recon #ffuf

Last updated 2 years ago