Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K photos
15 videos
157 files
131K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
They Lied About ToTok

https://cdn-images-1.medium.com/max/1400/1*K97FWZlcP7xOHvvqbXJ47w.png
Almost every news article cites sources, but have you ever asked yourself how reliable these sources really are?

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Favorite Hacker & Computer Security Expert Tool

https://cdn-images-1.medium.com/max/728/0*A2H2i5HZMDdrU0GZ.jpg
Fyodor, the creator of NMAP surveyed 100 favorite tools for nmap-hackers mailing list followers. Around 3,243 users voted for the tools…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Oracle With PHP Connection

https://cdn-images-1.medium.com/max/1920/0*JHYvVzJKG9bpxHaR.jpg
Hi guys, I want to share my experience, and share a bit about Oracle and PHP databases … what’s the relationship between the two ?? Most…

Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Weakness of Folder Locked Accsess Folder Software

https://cdn-images-1.medium.com/max/1280/0*7W1nQ7Vjvy2gG3Zi.jpeg
Actually maybe this article is more appropriate given the title of Folder Accsess version 2.0.0 Again Idly looking for software for folder…

Continue reading on Medium »
Cross Site Scripting — Where automated tools may fail you.

If you are reading this, you are probably already familiar with the basics of Cross site Scripting (XSS). If you arent, there are plenty…Continue reading on Medium »
Read more...
If you are reading this, you are probably already familiar with the basics of Cross site Scripting (XSS). If you arent, there are plenty…Continue reading on Medium » (https://divadbate.medium.com/cross-site-scripting-where-automated-tools-may-fail-you-d77bc048c6bd?source=rss------bug_bounty-5)
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Adfsbrute - A Script To Test Credentials Against Active Directory Federation Services (ADFS), Allowing Password Spraying Or Bruteforce Attacks

https://1.bp.blogspot.com/-JFZRsNrLGgM/YG0IoOgfncI/AAAAAAAAV2M/W2LFwl36oS8rk7ZzsmquaHPNum_CeQ3zACNcBGAsYHQ/w640-h608/adfsbrute_1_image1.png A script to test credentials against Active Directory Federation Services (ADFS), calculating the ADFS url of an organization and allowing password spraying or bruteforce attacks.

The main idea is carrying out password spraying attacks with a random and high delay between each test and using a list of proxies or Tor to make the detection by the Blue Team more difficult. Brute force attacks are also possible, or testing credentials with the format username:password (for example from Pwndb). Tested logins will get stored in a log file to avoid testing them twice. Usage./adfsbrute.py -t TARGET [-u USER] [-U USER_LIST] [-p PASSWORD] [-P PASSWORD_LIST] [-UL userpassword_list]
[-m MIN_TIME] [-M MAX_TIME] [-tp TOR_PASSWORD] [-pl PROXY_LIST] [-n NUMBER_OF_REQUESTS_PER_IP]
[-s STOP_ON_SUCCESS] [-r RANDOM_COMBINATIONS] [-d DEBUG] [-l LOG_FILE]
The parameters for the attacks are: * -t: Target domain. Example: test.com

* -u: Single username. Example: agarcia@domain.com

* -U: File with a list of usernames. Example: users.txt

* -p: Single password: Example: Company123

* -P: File with a list of passwords. Example: passwords.txt

* -UP: File with a list of credentials in the format "username:password". Example: userpass.txt

* -m : Minimum value of random seconds to wait between each test. Default: 30

* -M : Maximum value of random seconds to wait between each test. Default: 60

* -tp: Tor password (change IP addresses using Tor)

* -pl: Use a proxy list (change IP addresses using a list of proxy IPs)

* -n: Number of requests before changing IP address (used with -tp or -pl). Default: 1

* -s: Stop on success, when one correct credential is found. Default: False

* -r: Randomize the combination of users and passwords. Default: True

* -d: Show d ebug messages. Default: True

* -l: Log file location with already tested credentials. Default: tested.txt
ExamplesPassword spraying with password "Company123", tor password is "test123" and changing the IP every 3 requests: python3 adfsbrute.py -t company.com -U users.txt -p Company123 -tp test123 -n 3 https://1.bp.blogspot.com/-6R9zQjThy54/YG0IuDo9YfI/AAAAAAAAV2Q/v5BBhabaOY8-8A-BeDL3qTViJoT_hRzoQCNcBGAsYHQ/w640-h608/adfsbrute_1_image1.png Password spraying with password "Company123", tor password is "test123", changing the IP for every request, random delay time between 10 and 20 seconds and do not randomize the order of users: python3 adfsbrute.py -t company.com -U users.txt -p Company123 -tp test123 -m 10 -M 20 -r False https://1.bp.blogspot.com/-j_Porl04wdg/YG0I2JaU50I/AAAAAAAAV2U/CDVew02sdaMEEmfwf-P0Jnfc5VXjsARhQCNcBGAsYHQ/w634-h640/adfsbrute_2_image2.png Finding ADFS url: python3 adfsbrute.py -t company.com https://1.bp.blogspot.com/-m7u-Unl7BIA/YG0I8gucvVI/AAAAAAAAV2c/1c3Fu6f1TF4sIcVpzr2O5O5ry7o2aJg2QCNcBGAsYHQ/w640-h134/adfsbrute_3_image3.png Using TorTo use Tor to change the IP for every request, you must hash a password: tor --hash-password test123 In the file /etc/tor/torrc, uncomment the variable ControlPort and the variable HashedControlPassword, and in this last one add the hash: ControlPort 9051
HashedControlPassword 16:7F314CAB402A81F860B3EE449B743AEC0DED9F27FA41831737E2F08F87
Restart the tor service and use this password as argument for the script ("-tp test123" or "--tor_password 123") service tor restart NoteThis script is implemented to test in security audits, DO NOT use without proper authorization[...]