26/06/2025
“I will read all night”
Sleep:
Unlock your full potential in tech with our expert-led courses. Enroll now and build great skills
https://mineportfolio-wvfa.onrender.com/
26/06/2025
“I will read all night”
Sleep:
05/12/2024
゚ ゚
Get started today with HTML ,CSS and JavaScript:)
04/08/2024
Advanced One-Liner for extracting filtered URLs for Injection-Based Attacks.
This one-liner is a powerful example of how Bug Bounty Hunters and Pentesters can automate the extraction of URLs for any given website using various tools and Linux tricks. It employs active fuzzing techniques (not passive), with optimized blacklists to avoid fetching URLs with extensions that are not useful for injection attacks (such as images, etc.). The one-liner then cleans the URLs to include only those with parameters using the 'gf' tool and removes duplicates, reducing the overall results and maintaining only the scope you want accurately. Your final list will then be ready for injection-based attacks, depending on the types you choose, such as SQL, XSS, LFI, and RCEs.
Breakdown of this one-liner:
➡️STEP 1: Crawling the Website with speed and accuracy actively.
gospider -s 'URL TARGET' -c 10 -d 5 --blacklist ".(jpg|jpeg|gif|css|tif|tiff|png|ttf|woff|woff2|ico|pdf|svg|txt)"
We run the 'GoSpider' tool to crawl the website 'URL TARGET' with 10 concurrent threads (-c 10) and a maximum depth of 5 (-d 5). The --blacklist option excludes files with specified extensions to optimize speed and accuracy.
➡️STEP 2: Filtering Parameters and looking only for those that are important.
gf allparam
We use the 'gf' tool to filter the output and show all parameters from the URLs using a predefined regex pattern.
➡️STEP 3: Cleaning URLs for Fuzzing
sed 's/=./=/'
We use 'sed' to remove everything after the equal sign in the URLs, preparing them for fuzzing by ensuring the URLs are clean after the parameters.
➡️STEP 4: Extracting URLs
grep -Eo '(http|https)://[^&]+'
We employ 'grep' with the '-Eo' option to extract and output only the URLs (starting with http or https) from the input.
➡️STEP 5: Removing Duplicated URLs
awk '!seen[$0]++'
We use 'awk' to remove duplicate URLs for optimization. The '!seen[$0]++' pattern checks if the current line is already in the 'seen' array and only adds it if it is unique.
➡️STEP 6: Filtering by Domain.
grep '^URL TARGET'
We apply one more time 'grep' to filter out only the URLs that match the main domain 'URL TARGET', ensuring the results stay within the defined scope.
Follow me on facebook
https://www.facebook.com/intellicon02?mibextid=LQQJ4d
Follow me on LinkedIn
https://www.linkedin.com/in/bright-ezeabia-b7911819a
Follow me on X
BrightAyo14
14/07/2024
✉️Snov.io finds email addresses on any website
27/06/2024
⚔️Pentest-Windows
🔰Windows11 Pe*******on Suite Toolkit
📌A Windows pe*******on testing environment that works out of the box.
⚠️This project was created for educational purposes and should not be used in environments without legal authorization.
🔗Link: https://github.com/arch3rPro/Pentest-Windows
🔖
17/06/2024
🔵Jumping on the trend. Exploit 0-click Bluetooth vulnerability of unpatched Android smartphone using(CVE-2023-45866)
12/06/2024
What is a Brute Forcè Ațțack?
A brute force attack involves systematically trying all possible combinations of passwords or encryption keys until the correct one is found. It's akin to trying every key on a keyring until the right one opens a lock. While this method can be time-consuming and resource-intensive, advances in computing power and the availability of automated tools have made brute force attacks more feasible.
How Do Brute Force Attacks Work?
1. Dictionary Attacks: Attackers use pre-compiled lists of common passwords, phrases, or words found in dictionaries. These are tried sequentially until access is gained.
2. Credential Stuffing: This involves using credentials obtained from previous data breaches. Attackers use these known usernames and passwords across multiple sites, banking on the fact that many users reuse passwords.
3. Hybrid Attacks: Combining dictionary and brute force methods, hybrid attacks use a dictionary to guess the likely parts of the password and then brute force the remaining parts.
4. Rainbow Table Attacks: Attackers use precomputed tables containing the hash values of potential passwords. By comparing these tables to the hashed passwords, they can quickly determine the original password.
Impact of Brute Force Attacks
Brute force attacks can lead to significant security breaches, including:
- Unauthorized access to sensitive data
- Financial losses due to fraud
- Compromised personal information leading to identity theft
- Damage to the reputation of businesses
Preventing Brute Force Attacks
1. Strong Password Policies: Encourage the use of complex passwords that include a mix of letters, numbers, and special characters. Avoid common words and phrases.
2. Account Lockout Mechanisms: Implement account lockout policies after a set number of failed login attempts. This makes it harder for attackers to continuously guess passwords.
06/06/2024
🧑💻To start the morning gently here is a list of search engines for pentesters
⚠️PS: All these tools | sites must be used within a legal framework for educational, contractual purposes etc.
🔰THREAT INTELLIGENCE:
1. Pulsedive ==> https://pulsedive.com/
2. UrlScan ==> https://urlscan.io/
3. App[.]binaryedge ==> https://lnkd.in/e5tR_Gve
4. Viz[.]greynoise ==> https://viz.greynoise.io/
5. Fofa ==> https://fofa.info/
6. Zoomeye ==> https://www.zoomeye.org/
7. Leakix ==> https://leakix.net/
🔰VULNERABILITIES:
1. Vulners ==> https://vulners.com/
2. CVE Trends ==> https://cvetrends.com/ (Bonus)
3. OpenCVE ==> https://lnkd.in/e-zxMJUd (Bonus)
🔰SEARCH CERTIFICATES:
1. crt[.]sh ==> https://crt.sh/
2. ctsearch[.]entrust ==> https://lnkd.in/ewpvYcF4 (Bonus)
🔰SERVER:
1. Drunk[.]rocks ==> https://drunk.rocks/
2. Shodan ==> https://www.shodan.io/
3. Onyphe ==> https://www.onyphe.io/
4. Censys ==> https://search.censys.io/
🔰SURFACE ATTACK:
1. Binaryedge ==> https://www.binaryedge.io/
2. Fullhunt ==> https://fullhunt.io/
3. App[.]netlas ==> https://lnkd.in/eNRyRaTp
🔰SEARCH CODES:
1. Socradar ==> https://socradar.io/
2. Publicwww ==> https://publicwww.com/
3. Searchcode ==> https://searchcode.com/
4. Grep[.]app ==> https://grep.app/
🔰OSINT/RECON:
1. intelx ==> https://intelx.io/
2. DNSDumpster ==> https://dnsdumpster.com/ (Bonus)
🔰DORKS:
1. Google ==> https://www.google.com/
🔰Wi-Fi NETWORKS:
1. Wigle ==> https://wigle.net/
🔰EMAIL ADDRESS:
1. Hunter ==> https://hunter.io/
05/06/2024
Parrot 6.1 has taken off 🚀
This release includes numerous improvements and updates, making the system more performing and stable 🦜
Keep your OS updated using one of the following commands:
👉🏼 sudo parrot-upgrade
👉🏼 sudo apt update && sudo apt full-upgrade
If you want to discover more about this new version, click the link down below ⬇️
https://parrotsec.org/blog/2024-06-05-parrot-6.1-release-notes/
05/06/2024
⚠️Leaked Password
🔍Search across multiple data breaches to see if your password has been compromised.
🔗Link: leakedpassword.com