This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Scanner; | |
class Product { | |
public Product(int id, String name, int quantity, float price) { | |
this.id = id; | |
this.name = name; | |
this.quantity = quantity; | |
this.price = price; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inventory management system -> console based application | |
#include<stdio.h> | |
// new product | |
// int -> id | |
// string/ char arr -> name | |
// int-> quantity | |
// float -> price |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Free stuff is always exciting. But, what if it is free and awesome? Free tools and resources you're gonna love. Part 2. | |
Let's start! | |
1. Caniuse.com | |
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers. | |
Link: https://caniuse.com/ | |
2. Javascript.info | |
Modern JavaScript Tutorial: simple, but detailed explanations with examples and tasks, including: closures, document and events, object oriented programming and more. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Free stuff is always exciting. But, what if it is free and awesome? Free tools and resources you’re gonna love. | |
Let's start! | |
1. UI Garage | |
Daily UI inspiration & patterns for designers, developers to find inspiration, tools and the best resources for your project. | |
Link: https://uigarage.net/ | |
2. Remove bg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Are you really Annoyed or Bored when it comes to write Pentest Reports ? | |
Check this out: Found an Interesting way to create a Report just like that Drag and Drop. | |
Created by Penetration Tester for Penetration Testers | |
[A pentest reporting tool written in Python. Free yourself from Microsoft Word](https://github.com/blacklanternsecurity/writehat) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Recommended extentions for BurpSuite | |
JSON Beautifier | |
Param Miner | |
HTTP Request Smuggler | |
Backslash Powered Scanner | |
Reflected Parameters | |
Software Vulnerability Scanner | |
Java Deserialization Scanner | |
. Net Beautifier | |
Copy As Python-Request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redirect dorks | |
/{payload} | |
?next={payload} | |
?url={payload} | |
?target={payload} | |
?rurl={payload} | |
?dest={payload} | |
?destination={payload} | |
?redir={payload} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here’s a quick tip to find forgotten database dumps using this small but quick fuzz list: | |
/back.sql | |
/backup.sql | |
/accounts.sql | |
/backups.sql | |
/clients.sql | |
/customers.sql | |
/data.sql | |
/database.sql | |
/database.sqlite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❌❌ :RECON CHECKLIST:❌❌ | |
1. Subdomain Enumeration: subfinder-amass-altdns-sublister-assetfinder-findomain | |
2.Resolving Subdomains: HTTPX/HTTPROBE | |
3. Screenshotting: HTTPX/AQUATONE/EYEWITNESS/GOWITNESS | |
4. Port Scan: Nmap/Zenmap/Aquatone/Amass | |
5. Directory Bruteforce: FFUF/Dirsearch/Dirbuster | |
6. Crawling: waybackurls/gau | |
7. Finding endpoints from JS: relative-url-extracter | |
8. Manual Recon: Burp Suite |