Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Lambci | 3,986 | a year ago | 20 | January 13, 2020 | 47 | mit | Shell | |||
A continuous integration system built on AWS Lambda | ||||||||||
Gitgraber | 1,696 | 14 days ago | 9 | gpl-3.0 | Python | |||||
gitGraber: monitor GitHub to search and find sensitive data in real time for different online services such as: Google, Amazon, Paypal, Github, Mailgun, Facebook, Twitter, Heroku, Stripe... | ||||||||||
Inventory Hunter | 1,100 | 5 months ago | 97 | mit | Python | |||||
⚡️ Get notified as soon as your next CPU, GPU, or game console is in stock | ||||||||||
Inquery | 1,091 | 2 months ago | 5 | other | Go | |||||
Superpowers for PostgreSQL | ||||||||||
Notify | 860 | 7 days ago | 21 | June 16, 2022 | 9 | mit | Go | |||
Notify is a Go-based assistance package that enables you to stream the output of several tools (or read from a file) and publish it to a variety of supported platforms. | ||||||||||
Action Slack Notify | 819 | 6 months ago | 31 | mit | Go | |||||
GitHub Action for sending a notification to a Slack channel | ||||||||||
Tradingview Webhook Bot | 807 | 2 months ago | mit | Python | ||||||
📊 Send TradingView alerts to Telegram, Discord, Slack, Twitter and Email. | ||||||||||
Awesome Slack | 803 | a month ago | ||||||||
A curated list of awesome Slack related things | ||||||||||
Cdk Constructs | 561 | 3 | 3 months ago | 90 | March 20, 2022 | 44 | mit | TypeScript | ||
A collection of higher-level reusable cdk constructs | ||||||||||
Slackbox | 554 | 5 years ago | JavaScript | |||||||
🎵 Spotify playlist collaboration through Slack. |
v.3.1
Domain Availability Checker
It makes a request to domain/subdomain and checks whether they are alive or not!
git clone https://github.com/unstabl3/recce.git
cd recce
chmod +x recce.py
bash install.sh
You have to configure your slack to get updates!
To do so visit here How to create slack webhook
Configure your slack_webhook in recce.py in order to recieve slack notifications(you can skip if you don't want notifications). .
slack_webhook = "PUT YOUR WEBHOOK HERE"
usage: recce_test.py [-h] [-v] [-o out-file | -c csv-file] [-t Threads]
[-f Input file | -d domain] [-s] [-u] [-l] [-r] [-F] [-S]
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose
-o out-file, --output out-file
write active domains in new file
-c csv-file, --csv csv-file
mention .csv file to write output
-t Threads, --threads Threads
number of concurrent threads
-f Input file, --file Input file
File which consist domains(sub.example.com)
-d domain, --domain domain
single domain check
-s, --server print web server
-u, --update update recce
-l, --live only print live subdomains
-r, --length print response length
-F, --follow Follow redirect
-S, --slack send slack notification`
[~] Fastest way!
cat subdomains.txt | recce -l
[~] sending data to slack!
cat subdomains.txt | recce -l -S
[~] writing data and sending to the slack
cat subdomains.txt | recce -l -S -o result.txt
[~] Follow redirect and save locally
cat subdomains.txt | recce -l -F -o result.txt
[~] Scan domains with input as file!
recce -f filename.txt
[~] Check single domain!
recce -u example.com
[~] Writing output in file!
recce -f filename.txt -o result.txt
[~] Verbose mode(to check status of live domain) and number of threads!
recce -f filename.txt -o result.txt -t 100 -v
[~] only print live subdomains(does not write output in file)!
recce -f filename.txt -l
[~] Server detection(does not work with -l)
recce -f filename.txt -t 300 -s -v
[~] print response body length!(only works with -s)
recce -f filename.txt -t 300 -s -r -v
[~] write output in csv format!
recce -f filename.txt -t 300 -s -r -v -c result.csv
# slack notification
# follows redirect
# can now take standard input
`# using pycurl rather than calling system shell
# server detection
# can only print live subdomains without writing output into the file.
# can now print response body length
# can write output in csv format.
# proper output screen`
`# multithreaded
# scan 11k domains in 3 min.`
To the Whole infosec Community :3
@Aathif for suggesting this great name! :3
Do a pull request!
Licensed under the MIT License!
This project is made for educational and ethical testing purposes only. Usage of this tool for attacking targets without prior mutual consent is illegal. Developer assume no liability and are not responsible for any misuse or damage caused by this tool.