InfoSecTube
1.71K subscribers
682 photos
44 videos
273 files
1.71K links
Subscribe to this channel if… you enjoy fun and educational videos about technology & CyberSecurity & ...
YouTube Channel:
https://youtube.com/c/InfoSecTube


Contact:
@InfoSecTube_Bot
Download Telegram
Asi.pdf
6.8 MB
#Book
#android_security
Android Security Internals

☣️@InfoSecTube
🌀 Find subdomains using RapidDNS
📡Add
this small function into your .bash_profile to quickly find subdomains using RapidDNS API:
rapiddns(){
curl -s "https://rapiddns.io/subdomain/$1?full=1" \
| grep -oP '_blank">\K[^<]*' \
| grep -v http \
| sort -u
}

We can then use it like this:
rapiddns target.com
☣️@InfoSecTube
‍‍‍
#Bug_Bounty_Tips_26
🛡BugBounty_Tips
🌀 Top 25 remote code execution (RCE) parameters
Here
’s list of top 25 parameters that could be vulnerable to local file inclusion (LFI) vulnerabilities:
?cat={payload}
?dir={payload}
?action={payload}
?board={payload}
?date={payload}
?detail={payload}
?file={payload}
?download={payload}
?path={payload}
?folder={payload}
?prefix={payload}
?include={payload}
?page={payload}
?inc={payload}
?locate={payload}
?show={payload}
?doc={payload}
?site={payload}
?type={payload}
?view={payload}
?content={payload}
?document={payload}
?layout={payload}
?mod={payload}
?conf={payload}
Take notice anytime you see any of these parameters. Chances are that you may find LFI vulnerabilities.
☣️@InfoSecTube
#Bug_Bounty_Tips_27
🛡BugBounty_Tips
🌀Mirror a web directory structure
Use the following ‘wget’ command to recursively fetch all the files (+structure) to your machine:
wget -r --no-parent target.com/dir
Now you can view the structure, search and grep in files.
How to find a directory listing on your target? A directory listing is a web server misconfiguration which we can identify using these:
1-Google Dorks
2-Shoadn Dorks
3-ffuf
4-dirsearch
Ex Shodan Dork:
Apache Directory Listings
http.title:"Index of /" http.html:".pem"

☣️@InfoSecTube
secure-coding-owasp.pdf
2.3 MB
#secure_coding #book #web_sec
Code Review Guide
secure coding OWASP
@infosectube