We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfd0d4 commit fdd15a1Copy full SHA for fdd15a1
Bug Bounty Tips/files/oneliners.md
@@ -494,5 +494,10 @@ apktool d app.apk -o uberApk;grep -Phro "(https?://)[\w\.-/]+[\"'\`]" uberApk/ |
494
xargs -P 500 -a domain -I@ sh -c 'nc -w1 -z -v @ 443 2>/dev/null && echo @' | xargs -I@ -P10 sh -c 'gospider -a -s "https://@" -d 2 | grep -Eo "(http|https)://[^/\"].*\.js+" | sed "s#\] \- #\n#g" | anew'
495
```
496
497
+### Subdomain Enumeration
498
+```sh
499
+ curl -s "https://jldc.me/anubis/subdomains/abc.com" | grep -Po "((http|https):\/\/)?(([\w.-]*)\.([\w]*)\.([A-z]))\w+"
500
+```
501
+
502
***Note :***
503
*These oneliners are collected from different sources , Credits to the respesctive authors*
0 commit comments